ES-DDL语句
caesar_shf
这个作者很懒,什么都没留下…
展开
-
ES-更新语句
1、根据id更新 POST idx_product-fat/doc/100101/_update { "doc" : { "minPrice" : 3, "price" : 2 } } idx_product-fat 索引名称 doc type类型 10006145 id doc 文档(固定) minPrice字段名称 2、条件更新POST idx_hippo原创 2021-09-06 17:21:16 · 6436 阅读 · 0 评论 -
ES-查询索引下面文档数量
GET my_index/_count原创 2021-08-29 17:33:44 · 3294 阅读 · 0 评论 -
ES -范围+精确+排序+固定字段返回
DSL语句GET /idx_hippo_sku_statistics_index/sku_statistics_index/_search{"from" : 0,"size" : 100,"query" : {"bool" : { "must":[ { "range" : { "salePrice" : { "from" : 1.9, "to" : 2.1, "include_lower":原创 2021-08-29 17:24:22 · 434 阅读 · 0 评论 -
ES-单条件查询
DSL语句:GET /idx_shop_sku_index/sku_index/_search{"query":{ "match":{ "name":"美团" }}}查询名称是美团的:DSL语句: GET /idx_shop_sku_index/sku_index/_search{ "query": { "term": { "cityId": { "value": 120 } }.原创 2021-08-29 17:08:02 · 376 阅读 · 0 评论 -
ES-DDL添加字段
PUT test_index/_mapping/test_type{"properties": {"poolId": { "type": "long"},"productId": { "type": "long"} }}PUT test_index/_mapping/test_type 索引名称 索引中某一个类型 "properties": { 字段的集合"poolId": { .原创 2021-05-15 19:55:29 · 295 阅读 · 0 评论 -
ES-创建索引sql语句
PUT index {"mappings": {"type": { "properties": { "text": { "id": "string", "name": "string", "nickName":"string", "skuCode":"string", "dimensionValues":"string", "stock":"string", "salesNum":"string" .原创 2021-05-15 19:53:43 · 1453 阅读 · 0 评论