Elasticsearch复制索引数据到另一个索引

POST _reindex
{
  "source": {
    "index": "旧索引名称"
  },
  "dest": {
    "index": "新索引名称"
  }
}

可用于索引重建,数据迁移等场景

posted @ 2023-07-06 13:48  BINGYANGW  阅读(62)  评论(0)    收藏  举报