ES 的计算资源主要消耗在写入和查询过程,而不同业务场景在写入和查询方面的复杂度不同、比重不同,导致计算资源相比存储资源较难评估
日志场景:日志属于典型的写多读少类场景,计算资源主要消耗在写入过程中
Metric 及 APM 等结构化数据场景
站内搜索及应用搜索等搜索场景
40.3 搭建集群自建
对热节点增加如下配置
node.attr.temperature: hot
1
对冷节点增加如下配置
node.attr.temperature: warm
1
使用如下命令可以验证节点冷热属性
GET _cat/nodeattrs?v&h=node,attr,value&s=attr:desc
node attr value
node1 temperature hot
node2 temperature hot
node3 temperature warm
node4 temperature hot
node5 temperature warm
...