ES Thread pool how to update

How to udpate the thread pool size for elasticsearch in elastic cloud4

{
    "persistent" : {
        "thread_pool.write.queue_size" : 1000
    }
}

Above Put call is resulting in a failure

{
    "error": {
        "root_cause": [
            {
                "type": "illegal_argument_exception",
                "reason": "persistent setting [thread_pool.write.queue_size], not dynamically updateable"
            }
        ],
        "type": "illegal_argument_exception",
        "reason": "persistent setting [thread_pool.write.queue_size], not dynamically updateable"
    },
    "status": 400
}

Did you try it as a dynamic setting?

How can i do it

Change persistent to dynamic.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.