美文网首页
Executing Aggregations

Executing Aggregations

作者: wxuncheng | 来源:发表于2015-12-08 10:07 被阅读162次
curl -XPOST 'localhost:9200/bank/_search?pretty' -d '
{
  "size": 0,
  "aggs": {
    "group_by_state": {
      "terms": {
        "field": "state",
        "size": 2
      }
    }
  }
}'

相关文章

网友评论

      本文标题:Executing Aggregations

      本文链接:https://www.haomeiwen.com/subject/ljarhttx.html