kubernetes Elasticsearch k8s(检查运算符)节点集配置不起作用

iyr7buue  于 2022-11-02  发布在  Kubernetes
关注(0)|答案(1)|浏览(181)

我正在尝试使用eck-operator配置集群elasticsearch。我想添加一些设置,如cluster.max.shards.per.nodeelasticsearch.yaml中的旧版中可用的其他设置。我尝试将此设置添加到以下部分中的elasticsearch示例清单中:

nodeSets: 
     - node: default
       config: 
         cluster_max.shards.per.node: 3000

但没有成功。有可能是这样吗?我找不到任何支持和文档,如何使用配置和哪些可能的属性可用。

nwsw7zdq

nwsw7zdq1#

某些群集级别的设置只有通过群集设置API设置后才会生效,并且elasticsearch.yml中指定的值将被忽略。
cluster.max_shards_per_node问题已在#57234中修复。因为cluster.blocks.read_only不太可能通过YAML配置进行设置。
有关详细信息,请参阅此issuegit link

相关问题