Courier Fetch: shards failed

后端 未结 7 636
你的背包
你的背包 2020-12-28 14:04

Why do I get these warnings after adding more data to my elasticsearch? And the warnings are different every time I browse the dashboard.

\"Courier Fetch: 30 of 60 s

7条回答
  •  失恋的感觉
    2020-12-28 14:30

    I agree with @Philip's opinion, But it's necessary to restart elasticsearch at least on Elasticsearch >=1.5.2, because you can dynamically set threadpool.search.queue_size.

    curl -XPUT http://your_es:9200/_cluster/settings
    {
        "transient":{
            "threadpool.search.queue_size":10000
        }
    }
    

提交回复
热议问题