怎么又是你

threadpool.bulk.queue_size”这个参数可以的通过API更新吗?

Elasticsearch | 作者 sterne vencel | 发布于2018年07月25日 | 阅读数:9772

curl -XPUT http://0.0.0.0:920/_cluster/settings?pretty -d'{"transient":{ "threadpool.bulk.queue_size": "1000"}}'
ES版本:5.6.4
这个参数貌似无法通过API更新吧?很多网上的资料说可以更新的
已邀请:

xiaoyanghapi - Elasticsearch 爱好者

赞同来自: sterne vencel

不能变更。

rochy - rochy_he

赞同来自:

不可以动态更新:transient setting [thread_pool.bulk.queue_size], not dynamically updateable
 
PUT _cluster/settings
{
"transient": {
"thread_pool": {
"bulk": {
"queue_size": "1000"
}
}
}
}


yayg2008

赞同来自:

直接到官网搜索即可知道,dynamically是可以动态更新的。

要回复问题请先登录注册