有人可以帮我在弹性搜索中获取嵌套对象的聚合计数,假设我的弹性搜索对象映射为:
{
"employe": {
"dynamic": "strict",
"properties": {
"empId":{
"type": "keyword"
},
"entities": {
"type": "nested"
}
}
}
}
实体是具有其他对象的数组类型。我想获得过滤项目的实体数量。 我尝试了一些弹性搜索查询,但它不起作用
{
"query": {
"bool": {
"filter": [
{
"terms": {
"empId": [12121,2121212]
}
}
]
}
},
"size": 0,
"aggs": {
"entities_agg": {
"sum": {
"field": "entities",
"script": {
"inline": "doc['entities'].values.size()"
}
}
}
}
}
答案 0 :(得分:2)
您无法通过doc值访问嵌套数据,您需要访问源文档,如下所示:
{
"query": {
"bool": {
"filter": [
{
"terms": {
"empId": [
12121,
2121212
]
}
}
]
}
},
"size": 0,
"aggs": {
"entities_agg": {
"sum": {
"script": {
"inline": "params._source.entities.size()"
}
}
}
}
}