mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-19 04:47:21 +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
|
* The total number of rows
|
||||||
*/
|
*/
|
||||||
@Searchable = {
|
@Searchable = {
|
||||||
"fieldType": "COUNT"
|
"fieldType": "COUNT",
|
||||||
|
"hasValuesFieldName": "hasRowCount"
|
||||||
}
|
}
|
||||||
rowCount: optional long
|
rowCount: optional long
|
||||||
|
|
||||||
@ -22,7 +23,8 @@ record DatasetProfile includes TimeseriesAspectBase {
|
|||||||
* The total number of columns (or schema fields)
|
* The total number of columns (or schema fields)
|
||||||
*/
|
*/
|
||||||
@Searchable = {
|
@Searchable = {
|
||||||
"fieldType": "COUNT"
|
"fieldType": "COUNT",
|
||||||
|
"hasValuesFieldName": "hasColumnCount"
|
||||||
}
|
}
|
||||||
columnCount: optional long
|
columnCount: optional long
|
||||||
|
|
||||||
@ -35,7 +37,8 @@ record DatasetProfile includes TimeseriesAspectBase {
|
|||||||
* Storage size in bytes
|
* Storage size in bytes
|
||||||
*/
|
*/
|
||||||
@Searchable = {
|
@Searchable = {
|
||||||
"fieldType": "COUNT"
|
"fieldType": "COUNT",
|
||||||
|
"hasValuesFieldName": "hasSizeInBytes"
|
||||||
}
|
}
|
||||||
sizeInBytes: optional long
|
sizeInBytes: optional long
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user