我可以知道我是否可以使用ILM模板作为我的自定义索引吗?如果是,它会翻转到什么值?我的索引是在logstash中创建的。我的索引是indexname-team。它会使用模板翻转吗?名称是什么?
llycmphe1#
根据您在策略中配置的条件进行翻转。翻转索引的名称将以整数作为索引名称的前缀递增。例如,如果您的索引名称是sample-team,则以下是滚动更新索引。
sample-team-000001 // This is the initial index that you have created manually sample-team-000002 // after first all other will be created automatic by policy sample-team-000003 sample-team-000004
参考:https://www.elastic.co/guide/en/elasticsearch/reference/current/set-up-lifecycle-policy.html
1条答案
按热度按时间llycmphe1#
根据您在策略中配置的条件进行翻转。翻转索引的名称将以整数作为索引名称的前缀递增。
例如,如果您的索引名称是sample-team,则以下是滚动更新索引。
参考:https://www.elastic.co/guide/en/elasticsearch/reference/current/set-up-lifecycle-policy.html