I have an ILM policy with roll over functionality and below is my Index name which consists of year-month-date and roll over series.(YYYY.MM.DD-000001)
'PUT test-2020.07.26-000001
{
"aliases": {
"test_alias": {
"is_write_index": true
}
}
}'
I have bootstrapped the ILM with write alias and currently data is pushing into index(test-2020.07.26-000001)
below are my doubts:
-
if roll over condition is met on July 31st, will my index roll over to "test-2020.07.31-000002" or "test-2020.07.26-000002"
-
will the data of 8th month will be inserted into "test-2020.08.01-000001" Index ?
-
is my index naming convention correct? if not how can I reflect year,month,date changes in new rolled indexes?
Thanks for the help.