[elasticsearch]ES迁移笔记

Posted hhao321

tags:

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

ES在更改分词器或更改已有mapping结构后需要重新重新索引,当然复制也是一样的,相当于重新生成索引信息

//es的head插件地址:http://localhost:9200/_plugin/head/

//新建索引
PUT    /my_index_new
{//此处mapping复制的时候可以复制已有的mapping信息
  "mappings": {
    "my_type" : {
      "properties": {
        "title" : {
          "type": "string"
        }
      }
    }
  }
}
//移动数据,重新索引
_reindex
{
  "source": {
    "index": "rdx_dnax_formal"
  },
  "dest": {
    "index": "rdx_dnax_test",
    "op_type": "create"
  }
}

//elasticsearch 远程迁移数据,可以使用node.js的reindex插件

elasticsearch-reindex  -f  http://10.0.0.212:9200/rdx_dnax_formal/rdx_type  -t  http://es.dnax.iol8.com:9200/rdx_dnax_formal/rdx_type (如果报超时,可能就是reindex的配置超时时间需要设置调整)

当然可以在建索引的时候就建立镜像库方便后期迁移

 //es查找

{"query":{"bool":{"filter":{"and":[{"and":[{"term":{"zy_laiyuan":"PE-APP"}}]}]},"minimum_should_match":"100%"}},"sort":{[{"zy_hzcishu":{"order":"asc","mode":"max"}}]}}

match_phrase(短语匹配)

以上是关于[elasticsearch]ES迁移笔记的主要内容,如果未能解决你的问题,请参考以下文章

ES(ElasticSearch) 索引创建

Elasticsearch es 的 _ignored 字段

elasticsearch 配置详解

ElasticSearch数据迁移

elasticsearch集群搭建

ElasticSearch NEST笔记