ES 重建索引

发布时间:2024年01月19日

1 复制数据

POST http://elastic:123456@127.0.0.1:9200/_reindex
{
    "source": {
        "index": "老索引名称"
    },
    "dest": {
        "index": "备份索引名称"
    }
}

2 删除老索引

DELETE http://elastic:123456@127.0.0.1:9200//aicc_spp_audio_800808618

3 重建索引

4 复制回数据

POST http://elastic:123456@127.0.0.1:9200/_reindex
{
    "source": {
        "index": "备份索引名称"
    },
    "dest": {
        "index": "新索引名称"
    }
}
文章来源:https://blog.csdn.net/qq_34814092/article/details/135695422
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。