elasticsearch 处理index 一直INITIALIZING状态

elasticsearch一个节点异常重启后有一个index恢复的过程中状态一直INITIALIZING

处理方法

PUT index_name/_settings
{
  "index": {
        "number_of_replicas": "0"
        }
}

PUT index_name/_settings
{
  "index": {
        "number_of_replicas": "1"
        }
}

猜你喜欢

转载自www.cnblogs.com/37yan/p/9222910.html
今日推荐