mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-25 22:49:12 +00:00
This commit is contained in:
parent
33c42b746c
commit
8fafb04518
@ -896,6 +896,7 @@ public class ElasticSearchClient implements SearchClient {
|
||||
.aggregation(
|
||||
AggregationBuilders.terms("dataModels.displayName.keyword")
|
||||
.field("dataModels.displayName.keyword"))
|
||||
.aggregation(AggregationBuilders.terms("project.keyword").field("project.keyword"))
|
||||
.aggregation(
|
||||
AggregationBuilders.terms("charts.displayName.keyword")
|
||||
.field("charts.displayName.keyword"));
|
||||
|
||||
@ -910,6 +910,7 @@ public class OpenSearchClient implements SearchClient {
|
||||
.aggregation(
|
||||
AggregationBuilders.terms("dataModels.displayName.keyword")
|
||||
.field("dataModels.displayName.keyword"))
|
||||
.aggregation(AggregationBuilders.terms("project.keyword").field("project.keyword"))
|
||||
.aggregation(
|
||||
AggregationBuilders.terms("charts.displayName.keyword")
|
||||
.field("charts.displayName.keyword"));
|
||||
|
||||
@ -196,6 +196,16 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"project": {
|
||||
"type": "text",
|
||||
"fields": {
|
||||
"keyword": {
|
||||
"type": "keyword",
|
||||
"normalizer": "lowercase_normalizer",
|
||||
"ignore_above": 256
|
||||
}
|
||||
}
|
||||
},
|
||||
"domain" : {
|
||||
"properties": {
|
||||
"id": {
|
||||
|
||||
@ -222,6 +222,16 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"project": {
|
||||
"type": "text",
|
||||
"fields": {
|
||||
"keyword": {
|
||||
"type": "keyword",
|
||||
"normalizer": "lowercase_normalizer",
|
||||
"ignore_above": 256
|
||||
}
|
||||
}
|
||||
},
|
||||
"dataModels": {
|
||||
"properties": {
|
||||
"id": {
|
||||
|
||||
@ -123,6 +123,16 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"project": {
|
||||
"type": "text",
|
||||
"fields": {
|
||||
"keyword": {
|
||||
"type": "keyword",
|
||||
"normalizer": "lowercase_normalizer",
|
||||
"ignore_above": 256
|
||||
}
|
||||
}
|
||||
},
|
||||
"domain" : {
|
||||
"properties": {
|
||||
"id": {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user