elasticsearch 索引重命名

直接复制索引到新的索引名称

POST localhost:9200/_reindex
{
  "source": {
    "index": "indexName"
  },
  "dest": {
    "index": "newIndexName"
  }
}

查询复制索引到新的索引名称

POST localhost:9200/_reindex
{
  "source": {
    "index": "indexName",
    "type": "typeName",
    "query": {
      "term": {
        "name": "shao"
      }
    }
  },
  "dest": {
    "index": "newIndexName"
  }
}

在这里插入图片描述

欢迎关注我的微信公众号,会同步更新python、java、算法等相关内容!!!
elasticsearch 索引重命名_第1张图片

你可能感兴趣的:(ElasticSearch)