mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-18 20:34:14 +00:00
feat(search): add search annotations for profile aspect (#8282)
This commit is contained in:
parent
6ebef9a0de
commit
78ae6e3d1e
@ -14,7 +14,8 @@ record DatasetProfile includes TimeseriesAspectBase {
|
||||
* The total number of rows
|
||||
*/
|
||||
@Searchable = {
|
||||
"fieldType": "COUNT"
|
||||
"fieldType": "COUNT",
|
||||
"hasValuesFieldName": "hasRowCount"
|
||||
}
|
||||
rowCount: optional long
|
||||
|
||||
@ -22,7 +23,8 @@ record DatasetProfile includes TimeseriesAspectBase {
|
||||
* The total number of columns (or schema fields)
|
||||
*/
|
||||
@Searchable = {
|
||||
"fieldType": "COUNT"
|
||||
"fieldType": "COUNT",
|
||||
"hasValuesFieldName": "hasColumnCount"
|
||||
}
|
||||
columnCount: optional long
|
||||
|
||||
@ -35,7 +37,8 @@ record DatasetProfile includes TimeseriesAspectBase {
|
||||
* Storage size in bytes
|
||||
*/
|
||||
@Searchable = {
|
||||
"fieldType": "COUNT"
|
||||
"fieldType": "COUNT",
|
||||
"hasValuesFieldName": "hasSizeInBytes"
|
||||
}
|
||||
sizeInBytes: optional long
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user