美文网首页
017 reindex

017 reindex

作者: zhu733756 | 来源:发表于2020-04-01 19:10 被阅读0次

    POST blogs/_search

    {

      "size": 20

    }

    #避免版本冲突op_type-create,

    #wait_for_active_shards=false允许异步操作

    POST _reindex?wait_for_active_shards=false

    {

      "source": {

        "index": "blogs"

      },

      "dest": {

        "index": "blogs_fix",

        "op_type": "create"

      }

    }

    POST blogs_fix/_search

    {

      "size": 20

    }

    相关文章

      网友评论

          本文标题:017 reindex

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