丢失字段聚合(Missing Aggregation)
{
"aggs" : {
"products_without_a_price" : {
"missing" : { "field" : "price" }
}
}
}{
...
"aggs" : {
"products_without_a_price" : {
"doc_count" : 10
}
}
}Last updated