Elastic认证特训营 难点解读12——Shard allocation awareness 和 Forced awareness 作用和区别是什么?
Posted 铭毅天下
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Elastic认证特训营 难点解读12——Shard allocation awareness 和 Forced awareness 作用和区别是什么?相关的知识,希望对你有一定的参考价值。
分片分配过滤 分为两个层面
1 :索引层面
举例:集群冷热集群架构
https://www.elastic.co/guide/en/elasticsearch/reference/7.2/shard-allocation-filtering.html
核心要点:
1.1 第一:设置节点属性。
在elasticsearch.yml 中配置
node.attr.hotwarm_type: hot
1.2 第二:索引层面分配设置。
PUT test_001
{
"settings": {
"index.routing.allocation.require.hot_warm_type": "hot"
}
}<
以上是关于Elastic认证特训营 难点解读12——Shard allocation awareness 和 Forced awareness 作用和区别是什么?的主要内容,如果未能解决你的问题,请参考以下文章
Elastic认证特训营 难点解读04——集群问题排查实战指南
Elastic认证特训营 难点解读13——Mapping新创建后,还可以更新吗?
Elastic认证特训营 难点解读02——如何提高某个字段的评分?
Elastic认证特训营 难点解读08——聚合的概念不好理解,怎么办?