如何使用ElasticSearch curator
删除与特定模式匹配的旧索引。像这样使用curator
将删除所有索引而不是匹配模式的索引:
curator --host <ip address> delete indices --time-unit days --older-than 45 --timestring '%Y%m%d'
假设有人想要删除45天前与sample_index_*
匹配的索引,那该怎么办呢?
答案 0 :(得分:1)
试试这个:
curator --host delete indices --time-unit days --older-than 45 --timestring'%Y%m%d'--prefix sample _
除了前缀选项,您还可以使用后缀和正则表达式