美文网首页
es unassigned shards问题

es unassigned shards问题

作者: wwq2020 | 来源:发表于2020-06-19 17:34 被阅读0次

    es 延迟分配分片时间间隔

    index.unassigned.node_left.delayed_timeout

    node数量小于分片副本数

    number_of_replicas
    cluster.routing.allocation.enable
    解决办法: 增加node数量或者减少副本数

    分片所有副本丢失

    解决办法:
    curl -XPOST 'localhost:9200/_cluster/reroute' -d '{ "commands" :
    [ { "allocate" :
    { "index" : "indexname", "shard" : 0, "node": "nodename", "allow_primary": "true" }
    }]
    }'

    磁盘不够用

    cluster.routing.allocation.disk.watermark.low

    相关文章

      网友评论

          本文标题:es unassigned shards问题

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