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

处理方法

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

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

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-18
  • 2022-12-23
  • 2021-12-19
  • 2021-05-25
  • 2021-10-08
  • 2022-12-23
猜你喜欢
  • 2021-11-27
  • 2022-01-01
  • 2022-12-23
  • 2022-12-23
  • 2021-07-01
  • 2022-03-05
  • 2021-06-25
相关资源
相似解决方案