Thank you
Is there a way I can configure cluster that all indices created will have "index.routing.allocation.require.data": "hot" without need of template.
so any index commands like this goes to hot nodes without need of template
POST my-index/_doc
{
"hello": "world"
}
This is my theoretical strategy to add warm nodes:
update all nodes elasticsearch.yml
node.attr.data: hot
update all indices to have setting
{ "settings": { "index.routing.allocation.require.data": "hot" }
update all templates to have setting
{ "settings": { "index.routing.allocation.require.data": "hot" }
add warm nodes
(I am looking for default config, so all indices created will have this "index.routing.allocation.require.data": "hot" without need of template )
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.