gpt4 book ai didi

elasticsearch - 在 ELK 中配置 number_of_shards 和 number_of_replicas

转载 作者:行者123 更新时间:2023-12-03 00:45:13 28 4
gpt4 key购买 nike

我一直在研究 ELK Stack,但遇到了一个小问题。
我一直在阅读所有可能的文档,它非常强调 的重要性。碎片复制品 .
但是没有说每个人的数量如何配置。我读过一些网站说最好将其保留在自动状态,而其他网站则说如何在 5.8 版中配置它但不再有效。
因此,如果有人可以向我解释,我将不胜感激。

最佳答案

当您create an index ,您可以 configure both values在该索引的设置中:

PUT your-index
{
"settings": {
"index.number_of_shards": 3,
"index.number_of_replicas": 1
}
}
另请注意,您可以 update the settings创建后的索引,但您只能更新副本数而不能更新主分片数:
PUT your-index/_settings
{
"settings": {
"index.number_of_replicas": 2
}
}
就如此容易!

关于elasticsearch - 在 ELK 中配置 number_of_shards 和 number_of_replicas,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63345378/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com