Elasticsearch之_reindex

本文介绍了如何在Elasticsearch中使用_reindex API进行索引重建,包括创建新索引、自定义mapping、调整设置、删除旧索引和设置索引别名,以应对索引不可修改的问题。
摘要由CSDN通过智能技术生成

由于elasticsearch索引创建之后分片个数、mapping定义等都不支持修改,只能通过重建索引来完成,所以这里需要用到API_reindex


创建一个新的索引new_index,mapping按自己的需求去定义即可,包含节点、副本、分词器、mapping字段定义

PUT /new_index
{
  "settings": {
    "number_of_shards": 3,
    "number_of_replicas": 2,
    "analysis": {
        "analyzer": {
            "ik_smart_pinyin": {
                "type": "custom",
                "tokenizer": "ik_smart",
                "filter": ["custom_pinyin", "word_delimiter"]
            },
            "ik_max_word_pinyin": {
                "type": "custom",
                "tokenizer": "ik_max_word",
                "filter": ["custom_pinyin", "word_delimiter"]
            },
            "standard_pinyin": {
                "type": "custom&
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值