加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

多字段聚合

发布时间:2020-12-14 01:36:55 所属栏目:百科 来源:网络整理
导读: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" }, "keyw

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":"河南",

"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":"旅游"

}]}

}';

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读