ES基本语法

1 Query语句
1.1 Term : 单一精确查询 =
GET pps_test_pre/product/_search
{
  "query": {
    "term": {
      "productId": {
        "value": "711"
      }
    }
  }
}
1.2 Terms : 复合查询
  • 1 多条件精确查询 IN()
  • 2 排序 ORDER BY
  • 3 分页 LIMIT
GET pps_test_pre/product/_search
{
  "query": {
    "terms": {
      "productId": [
        "711",
        "710",
        "709",
        "708"
      ]
    }
  },
  "size": 10,
  "from": 0,
  "sort": [
    {
      "productId": {
        "order": "desc"
      }
    }
  ]
}
1.3 Ids : Id查询
GET pps_test_pre/product/_search
{
  "query": {
    "ids": {
      "values": [707,708,709,710]
    }
  }
}
1.4 Bool
  • 1 must : 必须都要满足 AND
  • 2 should : 满足一个即可 OR
  • 3 must_not : 必须不满足 NOT IN
GET pps_test_pre/product/_search
{
	"query": {
		"bool": {
			"must": [{
					"terms": {
						"productId": [
							"707",
							"708",
							"709"
						]
					}
				}
			],
			"must_not": [
			  {
			    "term": {
			      "dataStatus": {
			        "value": "000"
			      }
			    }
			  }
			]
		}
	}
}
1.5 nested
GET product_attribute/product_attribute/_search
"query": { 
		"nested": {  # 嵌套查询
			"path": "attribute", # 外层路径
			"query": {
				"term": {
					"attribute.vid": {    # 内层查询路径
						"value": #[ ]
					}
				}
			}
		}
	}
1.6 cardinality sum_bucket
  • 1 cardinality : 统计
  • 2 sum_bucket: 桶总数
GET product_attribute/product_attribute/_search
{
	"query": { 
		"nested": {  # 嵌套查询
			"path": "attribute",
			"query": {
				"term": {
					"attribute.vid": {
						"value": #[ ]
					}
				}
			}
		}
	},
	"aggs": { 
		"productId": {
			"terms": {  # 根据productId分组
				"field": "productId"
			},
			"aggs": {
            "bucketNum": {
               "cardinality": {  # 计数
                  "field": "productId"
               }
            }
         }
		},
		"attrValueNum": {
         "sum_bucket": { # 桶的总数
            "buckets_path": "productId>bucketNum.value" # 桶的路径
         }
      }
	},
	"size": 0
}
  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值