ES常用命令

Posted GE12

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES常用命令相关的知识,希望对你有一定的参考价值。

http://192.168.4.15:9200/_reindex/
POST

  "source": 
    "index": "old_index",
	"size":1000   //可选,每次批量提交1000个,可以提高效率,建议每次提交5-15M的数据
  ,
  "dest": 
    "index": "en_law"
  

POST invest_2019-12-11/_update_by_query


  "query": 
    "bool": 
      "must": [
        
          "term": 
            "field": "month"
          
        
      ]
    
  ,
  "script": 
    "source": "ctx._source['revenue'] = ctx._source['revenueYear']"
  


 

以上是关于ES常用命令的主要内容,如果未能解决你的问题,请参考以下文章

ES常用命令

es集群问题排查常用命令参数解析

es集群问题排查常用命令参数解析

ES常用命令

es6常用语法和特性

ES6 常用总结——第一章(简介letconst)