Elasticsearch _reindex API不复制文档

时间:2018-01-30 23:53:47

标签: elasticsearch

根据文档(https://www.elastic.co/guide/en/elasticsearch/reference/6.0/reindex-upgrade.html),我尝试将旧的1.5弹性索引升级到6.0 我可以在6.0中创建一个新索引,然后使用来自远程的reindex(https://www.elastic.co/guide/en/elasticsearch/reference/6.0/reindex-upgrade-remote.html

从远程使用reindex

这两个实例都在docker容器中运行我只是想在实际生产之前在本地进行测试

我可以看到我的旧索引中有索引的文档。

curl -XGET 'http://localhost:9200/old_index/_search?pretty'

{
  "took" : 8,
  "timed_out" : false,
  "_shards" : {
    "total" : 5,
    "successful" : 5,
    "failed" : 0
  },
  "hits" : {
    "total" : 1,
    "max_score" : 1.0,
    "hits" : [ {
      "_index" : "old_index",
      "_type" : "item",
      "_id" : "92",
      "_score" : 1.0,
      "_source":{"user_id":3,"slug":"asdfaisjeilej","name":"lake.jpgasdad","item_type":"image","created_at":"2018-01-23T18:11:30Z","deleted_at":null,"content_length":1252171}
    }]}
}

在我的elasticsearch 6.0实例中创建一个新索引(new_index)后,稍微进行差异映射(将字符串类型更改为文本),然后使用以下命令继续从远程重新索引。 (请注意,我的其他实例在端口9400中运行)

curl -XPOST 'localhost:9400/_reindex?pretty' -H 'Content-Type: application/json' -d'
{
  "source": {
    "remote": {
      "host": "http://localhost:9200"
    },
    "index": "old_index"
  },
  "dest": {
    "index": "new_index"
  }
}

我得到以下回复

{
  "took" : 136,
  "timed_out" : false,
  "total" : 0,
  "updated" : 0,
  "created" : 0,
  "deleted" : 0,
  "batches" : 0,
  "version_conflicts" : 0,
  "noops" : 0,
  "retries" : {
    "bulk" : 0,
    "search" : 0
  },
  "throttled_millis" : 0,
  "requests_per_second" : -1.0,
  "throttled_until_millis" : 0,
  "failures" : [ ]
}

所以基本上,来自old_index的文档没有被复制到new_index,我不知道为什么会这样。我是否有一个缺失的步骤,我完全按照他们阅读的那样阅读了弹性搜索文档。

1 个答案:

答案 0 :(得分:0)

正如我提到的那样,在我在没有docker的登台环境中测试了远程重新索引之后,从Elasticsearch-2迁移到Elasticsearch-6时,我也遇到了同样的问题。 我的解决方法是创建一个旧版本的实例(不在docker上),从备份中加载它,然后将其重新索引到不在docker上运行的elasticsearch 6实例。

如果您仍然想在docker上运行elasticsearch 6,则始终可以将数据安装到容器中。

希望对您有所帮助。