推荐链接:
总结——》【Java】
总结——》【Mysql】
总结——》【Redis】
总结——》【Kafka】
总结——》【Spring】
总结——》【SpringBoot】
总结——》【MyBatis、MyBatis-Plus】
总结——》【Linux】
总结——》【MongoDB】
总结——》【Elasticsearch】
一、_reindex
参考链接:Elasticsearch——》_reindex文章来源:https://www.toymoban.com/news/detail-718670.html
POST _reindex
{
"source": {
"index": "my_source_index"
},
"dest": {
"index": "my_destination_index"
}
}
GET my_destination_index/_search
二、_bulk
参考链接:Elasticsearch——》_bulk文章来源地址https://www.toymoban.com/news/detail-718670.html
POST _bulk
{"index":{"_index":"myindex","_id":"1"}}
{"field1":"value1"}
{"create":{"_index":"myindex","_id":"2"}}
{"field1":"value1"}
{"update":{"_index":"myindex","_id":"3"}}
{"doc":{"field2":"value2"},"doc_as_upsert":true}
{"delete":{"_index":"myindex","_id":"1"}}
到了这里,关于Elasticsearch——》批量修改数据的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!