Elasticsearch——》_reindex Dear 丶 2024-03-22 00:51 52阅读 0赞 > 推荐链接: > [总结——》【Java】][Java] > [总结——》【Mysql】][Mysql] > [总结——》【Redis】][Redis] > [总结——》【Kafka】][Kafka] > [总结——》【Spring】][Spring] > [总结——》【SpringBoot】][SpringBoot] > [总结——》【MyBatis、MyBatis-Plus】][MyBatis_MyBatis-Plus] > [总结——》【Linux】][Linux] > [总结——》【MongoDB】][MongoDB] > [总结——》【Elasticsearch】][Elasticsearch] #### Elasticsearch——》\_reindex #### * 一、概念 * 二、步骤 * 三、示例 * * 1、源索引 * 2、文档复制 * 3、新索引 * 四、注意 ## 一、概念 ## Elasticsearch的\_reindex API可以将一个或多个索引中的所有文档复制到新的索引或已存在的索引中。 \_reindex API支持很多功能: 1. 指定过滤条件 2. 调整分片数 3. 重新命名字段 4. 设置新索引别名 ## 二、步骤 ## 1. 在请求体中指定源索引名称或查询语句(source) 2. 在请求体中指定目标索引(destination) 3. 执行请求 ## 三、示例 ## 将索引名为“my\_source\_index”的所有文档复制到名为“my\_destination\_index”的新索引中。 ### 1、源索引 ### delete my_source_index PUT /my_source_index/_doc/1 { "name" : "小米手机", "desc" : "手机中的战斗机", "price" : 3999, "lv":"旗舰机", "type":"手机", "createtime":"2020-10-01T08:00:00Z", "tags": [ "性价比", "发烧", "不卡顿" ] } PUT /my_source_index/_doc/2 { "name" : "小米NFC手机", "desc" : "支持全功能NFC,手机中的滑翔机", "price" : 4999, "lv":"旗舰机", "type":"手机", "createtime":"2020-05-21T08:00:00Z", "tags": [ "性价比", "发烧", "公交卡" ] } GET my_source_index/_search ### 2、文档复制 ### POST _reindex { "source": { "index": "my_source_index" }, "dest": { "index": "my_destination_index" } } ### 3、新索引 ### GET my_destination_index/_search ## 四、注意 ## \_reindex操作可能会带来一些额外的性能消耗。为了确保最小化这些消耗并避免对生产环境造成影响,建议在非生产环境中先进行测试并仔细考虑实施策略。 [Java]: https://blog.csdn.net/weixin_43453386/article/details/84788317 [Mysql]: https://blog.csdn.net/weixin_43453386/article/details/88667709 [Redis]: https://blog.csdn.net/weixin_43453386/article/details/127966762 [Kafka]: https://blog.csdn.net/weixin_43453386/article/details/128189472 [Spring]: https://blog.csdn.net/weixin_43453386/article/details/124900806 [SpringBoot]: https://blog.csdn.net/weixin_43453386/article/details/84788714 [MyBatis_MyBatis-Plus]: https://blog.csdn.net/weixin_43453386/article/details/84788053 [Linux]: https://blog.csdn.net/weixin_43453386/article/details/89241912 [MongoDB]: https://blog.csdn.net/weixin_43453386/article/details/84788450 [Elasticsearch]: https://blog.csdn.net/weixin_43453386/article/details/108583782
还没有评论,来说两句吧...