Hi @Mitchell,
It seems to me like you're having some issues when trying to apply your ILM policy to your config* indices.
First of all, I want to tackle this comment:
I received an error when attempting to make an alias "config", the same name as the initial index.
The reason for this is that an index and an alias can't have the same name. You might want to Reindex your existing index config to config_1 or config-00001. Then you can delete the original config index, and create the alias.
A second comment to your tests: based on the output of GET config*/_ilm/explain, I can see these properties:
"is_auto_retryable_error" : true,
"failed_step_retry_count" : 4,
It looks like it's failing to apply the ILM policy. The logs in ES should provide the reason for the errors. My initial guess is that it's related to some issues with the aliases (i.e.: they should only point to 1 index as "is_write_index": true), but the logs will certainly help finding out ![]()