因此,我们尝试过滤从ElasticSearch检索到的那些空桶,但没有成功。
通过聚合,我们可以找到:针对每种车辆颜色,每个时间戳,制造小时数的总和。
在最后一节,我们编写了一个脚本,发现聚合超过1000小时制造。
有效。不幸的是,我们收到的是空桶而不是那些低于1000的过滤结果。
以下是我们的查询:
{
"size": 0,
"aggs": {
"colors": {
"terms": {
"field": "color"
"min_doc_count": 1
},
"aggs": {
"timestamps": {
"terms": {
"field": "timestamp",
"min_doc_count": 1
},
"aggs": {
"sum_manufacturing": {
"sum": {
"field": "hours"
}
},
"manufacturing_bucket_filter": {
"bucket_selector": {
"buckets_path": {
"hours": "sum_manufacturing"
},
"script": {
"inline": "hours > 1000",
"lang": "expression"
}
}
}
}
}
}
}
}
}
你会注意到我们在这里和那里添加了'min_doc_count' - 但是它不会起作用。
这是一个检索到的空桶:
{
"key": "Yellow",
"doc_count": 336,
"timestamps": {
"doc_count_error_upper_bound": 0,
"sum_other_doc_count": 332,
"buckets": [
]
}
}
还有一个UN空桶:
{
"key": "Blue",
"doc_count": 336,
"timestamps": {
"doc_count_error_upper_bound": 0,
"sum_other_doc_count": 332,
"buckets": [
{
"key": 1464880946000,
"key_as_string": "2016-06-02T15:22:26.000Z",
"doc_count": 4,
"sum_manufacturing": {
"value": 1049
}
}
]
}
}
如果有一种过滤 out 空桶的方法会很棒。 谢谢,任何帮助将不胜感激。
答案 0 :(得分:0)
{
"size": 0,
"aggs": {
"colors": {
"terms": {
"field": "color"
"min_doc_count": 1
},
"aggs": {
"timestamps": {
"terms": {
"field": "timestamp",
"min_doc_count": 1
},
"aggs": {
"sum_manufacturing": {
"sum": {
"field": "hours"
}
},
"manufacturing_bucket_filter": {
"bucket_selector": {
"buckets_path": {
"hours": "sum_manufacturing"
},
"script": {
"inline": "hours > 1000",
"lang": "expression"
}
}
},
"min_bucket_selector":{
"bucket_selector": {
"buckets_path": {"count": "sum_manufacturing._bucket_count"},
"script": {"inline": "params.count != 0"}
}
}
}
}
}
}
}
}
我认为这可能会解决您的问题。