Hello,
I'm getting this error:
rejected execution of org.elasticsearch.transport.TransportService$7@4dfdde91 on EsThreadPoolExecutor[search, queue capacity = 1000, org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor@158535d6[Running, pool size = 7, active threads = 3, queued tasks = 1000, completed tasks = 20055757]]
So I'm trying to increase the queue_size for search. First I tried this through the console:
PUT _cluster/settings
{
"persistent": {
"thread_pool.search.queue_size": 2000
}
}
But then I got this message:
{
"error": {
"root_cause": [
{
"type": "illegal_argument_exception",
"reason": "persistent setting [thread_pool.search.queue_size], not dynamically updateable"
}
],
"type": "illegal_argument_exception",
"reason": "persistent setting [thread_pool.search.queue_size], not dynamically updateable"
},
"status": 400
}
I also tried doing it through the user settings on the configuration page
thread_pool.search.queue_size: 2000
But then I got the message:
Illegal user settings
What am I doing wrong?
