ES常用DSL的查询和简单统计

DSL?
英文全称Domain Specific Language,解释为领域专用语言。

DSL是针对某个特定领域而开发的语言,而我们平时接触 到的C/C++,Java,Python/Ruby,
都属于通用语言,DSL就是为了弥补这些通用语言而出现的。

说到编程离不开最基础的CURD

DSL也一样

我们先说查询,直接上实例

1.全检索

GET 索引名/_search
{
  "query": {
        {
          "match_all": {}
        }  

    }
  }

}

2.根据条件检索

Bool查询现在包括四种子句,must,filter,should,must_not

must的两个条件都必须满足,should中的两个条件至少满足一个就可

#名字叫张三的所有人

GET 索引名/_search
{
  "query": {
    "bool": {
      "must": [
        {
          "match_phrase": {
            "name": {
              "query": "张三"
            }
          }
        }
      ]

    }
  }
 

}

 

#统计江苏省的所有城市

GET 索引名/_search
{
  "aggs": {
    "2": {
      "terms": {
        "field": "city",
        "order": {
          "_count": "desc"
        },
        "size": 100
      }
    }
  },
  "size": 0
}

 

#大桶套小桶分级统计

GET 索引名/_search
{
  "aggs": {
    "2": {
      "terms": {
        "field": "city",
        "order": {
          "_count": "desc"
        },
        "size": 5
      },
      "aggs": {
        "3": {
          "terms": {
            "field": "county",
            "order": {
              "_count": "desc"
            },
            "size": 5
          },
          "aggs": {
            "4": {
              "terms": {
                "field": "garden",
                "order": {
                  "_count": "desc"
                },
                "size": 50
              }
            }
          }
        }
      }
    }
  },
  "size": 0,
  "query": {
    "bool": {
      "must": [
        {
          "match_phrase": {
            "city": {
              "query": "九江"
            }
          }
        },
        {
          "match_phrase": {
            "county": {
              "query": "建邺区"
            }
          }
        }
      ]
   

    }
  }
}

 

 

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值