Hi All,
I was wondering if it's possible to create snapshot policies that include/exclude indices based on their phase? I wasn't able to find any documentation on this and didn't see any posts about it.
The use case I am interested in is the following:
Have two (2) S3 repositories:
- S3_Repo_A is on-prem and has a 25Gbps connection to the cluster
- S3_Repo_B is in the cloud and has a 1Gbps connection to the cluster
I would like to back up all indexes that match the pattern index-*
(can also be a data stream)
It order to meet Mean Time To Recovery (MTTR) I'd like to have three (3) snapshot policies setup.
- SLM_Policy_Hourly_Hot:
- Hourly snaphot of
index-*
WHERE index phase is hot - S3 Repo: S3_Repo_A
- Hourly snaphot of
- SLM_Policy_Daily_Warm:
- Daily snapshot of
index-*
WHERE index phase is warm - S3 Repo: S3_Repo_A
- Daily snapshot of
- SLM_Policy_Daily_Cold:
- Daily snapshot of
index-*
WHERE index phase is cold - S3 Repo: S3_Repo_B
- Daily snapshot of
Is the above currently possible?