I plan to add 3 warm nodes into my cluster. (version 7.9 and 15 hot nodes)
I modified elasticsearch.yml with these new lines:
node.attr.data: hot # on existing nodes
node.attr.data: warm # on new nodes
when I start warm nodes, the cluster does not distinguish between warm/hot attr.data and indices are spread among all nodes.
How do I configure the cluster, that only ILM specific indices are copied to warm nodes. ?
it is not clear from https://www.elastic.co/blog/implementing-hot-warm-cold-in-elasticsearch-with-index-lifecycle-management
based on
should I configure on all nodes
cluster.routing.allocation.awareness.attributes: data
it this correct approach?