Objective: Implement Hot-Warm-Cold Architecture
At first when ingested from beats, data should be only be ingested and spread across only on Hot nodes. After 30-days logs moved to warm and then after 60 days to cold
(ELK-Stack Version: 7.8.0)
On the hot nodes, I did add the config as
cluster.routing.allocation.awareness.attributes: index_state
node.attr.index_state: hot
and on warm nodes, I added as the config as:
cluster.routing.allocation.awareness.attributes: index_state
node.attr.index_state: warm
But while observing, I seriously noticed that all newly ingested logs-shards got shared/stored on warm node as-well. As soon as I introduced the wam node into the cluster all the shards were spread across which defeats the purpose.
Can anyone please guide/help me on this issue