栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 前沿技术 > 大数据 > 大数据系统

ES笔记记录

ES笔记记录

1 更新操作

1 更新索引(indexName)下某个字段(cloumnName)的值

POST indexName/_update_by_query
{
  "query": {
    "match_all":{}
  },
  "script": {
    "source": "ctx._source['cloumnName']=1"
  }
}

2 更新索引(indexName)下某个字段(cloumnName)的值

POST my_index/_update_by_query
{
  "script": {
    "lang": "painless",
    "inline": "ctx._source.new_field_name1= '1111'"
  }
}

3 添加字段

# 给索引添加字段
PUT indexName/_mapping/indexTypeName
{
  "properties": {
    "new_field_name1": {
      "type": "keyword"
    },
    "new_field_name2": {
      "type": "keyword"
    },
    "HUMIDITY": {
      "type": "object",
      "enabled": false
    }
  }
}
2 系统配置

参数设置<最大返回记录数>

PUT /index_cat/_settings
{ "index" : { "max_result_window" : 500000}}
3 查询

根据查询条件修改字段:

POST index_cat/_update_by_query
{
  "query": {
    "bool": {
      "must": [
        {
          "match": {
            "iscat":2
          }
        }
      ]
    }
  },
  "script": {
    "source": "ctx._source['iscat']=0"
  }
}

list入参聚合案例 “catid”: [ “001”,“002” ]

GET index_cat/_search
{
  "query": {
    "bool": {
      "must": [
        {
          "bool": {
            "should": [
              {
                "terms": {
                  "catid": [
                    "001","002"
                  ]
                }
              }
            ]
          }
        }
      ]
    }
  },
  "size": 0,
  "aggs": {
    "general_agg_key": {
      "composite": {
        "sources": [
          {
            "catid": {
              "terms": {
                "field": "catid"
              }
            }
          },
          {
            "is_cat": {
              "terms": {
                "field": "is_cat"
              }
            }
          }
        ],
        "size": 1000000
      }
    }
  }
}

查询所有

GET index_cat/_search
{
  "query": {
    "match_all": {}
  }
}
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/719636.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号