码迷,mamicode.com
首页 > 其他好文 > 详细

多字段聚合

时间:2017-05-17 15:10:12      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:多字段聚合

curl -XPOST localhost:9200/photo -d ‘{

    "photo": {

      "properties": {

        "id": {

          "type": "String"

        },

        "title": {

          "type": "String"

        },

        "category":{

          "type": "String"

        },

        "uploader_name": {

          "type": "String"

        },

        "uploader_id": {

          "type": "String"

        },

        "keyword": {

          "properties":{

            "categoryId":{

              "type": "String"

            },

            "content":{

               "type": "String"

            }

          }

        }

      }

    }

}‘




curl -XPOST localhost:9200/photo/photo/1 -d ‘{

  "id":"1",

  "title":"北京天坛风景",

  "uploader_name":"felayman",

  "uploader_id":"1",

  "keyword":[

    {

      "categoryId":"1",

      "content":"北京"

    },

    {

      "categoryId":"2",

      "content":"天坛"

    },

    {

      "categoryId":"3",

      "content":"秋天"

    },

    {

      "categoryId":"4",

      "content":"旅游"

    }

    ]

}‘



curl -XPOST localhost:9200/photo/photo/2 -d ‘{

  "id":"2",

  "title":"河南",

  "uploader_name":"felayman",

  "uploader_id":"1",

  "keyword":[

    {

      "categoryId":"1",

      "content":"北京"

    },

    {

      "categoryId":"4",

      "content":"旅游"

    }

    ]

}‘



curl -XGET ‘localhost:9200/photo/photo/_search?pretty‘ -d ‘{

   "aggregations": {

    "agg": {

      "terms": {

        "field": "keyword.categoryId"

      }

    }

  }

}‘


curl -XPOST ‘localhost:9200/photo/photo/2/_update‘ -d ‘{

    "doc": {"keyword" : [{

      "categoryId":"2",

      "content":"北京"

    },

    {

      "categoryId":"3",

      "content":"旅游"

    }]}

}‘;


多字段聚合

标签:多字段聚合

原文地址:http://12597095.blog.51cto.com/12587095/1926589

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!