博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
多字段聚合
阅读量:6569 次
发布时间:2019-06-24

本文共 1199 字,大约阅读时间需要 3 分钟。

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

    }]}

本文转自whk66668888 51CTO博客,原文链接:http://blog.51cto.com/12597095/1926589

转载地址:http://jtvjo.baihongyu.com/

你可能感兴趣的文章
Python 处理EXCEL的CSV文档分列求SUM
查看>>
Activity Window View的关系
查看>>
poj 1182 食物链 并查集的又一个用法
查看>>
(转)用javamail发送带附件的邮件
查看>>
联想笔记本如何关闭功能键,快捷键,如Fn+F1与F1切换
查看>>
蓝桥杯 算法训练 操作格子(线段树,点更新)
查看>>
泛型实现中没有正确lock引用类型的一个隐藏bug分析
查看>>
win7 64系统安装oracle客户端使用PL/SQL Developer工具
查看>>
silverlight中Combox绑定数据以及动态绑定默认选定项的用法
查看>>
浅谈算法和数据结构: 十 平衡查找树之B树
查看>>
【Algorithm】插入排序
查看>>
WCF寄宿到Windows Service
查看>>
Ajax.ActionLink()方法的使用
查看>>
csdn 泄露用户密码害人不浅啊。
查看>>
ThinkPadT440 Ubuntu14.04 RTL8192EE 链接无线网
查看>>
OpenCV Windows7 VC6.0安装以及HelloWorld
查看>>
苹果开发人员账号注冊流程
查看>>
微铺子点单系统具体介绍 - 争做国内最专业的微信商店平台,微信外卖订餐系统!...
查看>>
ExecuteScalar
查看>>
hdu1213 How Many Tables
查看>>