美文网首页
Elasticsearch reindex

Elasticsearch reindex

作者: disilin | 来源:发表于2020-10-24 10:23 被阅读0次

    upgrade reindex

    POST /_reindex

    {

      "source": {

        "remote": {

          "host": "http://127.0.0.1:9201"

        },

        "index": "template*"

      },

      "dest": {

        "index": "template"

      },

      "script": {

        "lang": "painless",

        "source": "ctx._index = 'template' + (ctx._index.substring('template'.length(), ctx._index.length())) + ''"

      }

    }

    相关文章

      网友评论

          本文标题:Elasticsearch reindex

          本文链接:https://www.haomeiwen.com/subject/glsimktx.html