Since I often get: org.elasticsearch.common.util.concurrent.EsRejectedExecutionException: rejected execution (queue capacity 1000) on org.elasticsearch.search.action.SearchServiceTransportAction$23@644df44e
and warnings in kibana, I would like to increase the queue size. I am reading the documentation https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-threadpool.html since it is referred to everywhere I read about this. But that documentation does not really tell me where to configure this and how. Is it in the configuration file? And is multiline syntax ok in the configuration-file, like:
threadpool:
index:
type: fixed
size: 30
queue_size: 1000
?
Thanks.