We're trying to implement an ILM policy for moving indices between hot -> warm -> cold in out on-premise server.
What we have is this:
- SSD for storing hot indices
- HDD for storing warm indices > 7d
- NAS for storing cold indices > 30d
Considering that we will not be able to increase the size of the disks on demand, we want to make sure we get the ILM policies to self police in such a way that -
HOT TIER:
- Hot index moves to warm if it's age is > 7d.
- Oldest hot index moves to warm, if the total cumulative size of all hot indices is > 10TB
WARM TIER
- Warm index moves to cold if it's age is > 30d
- Oldest warm index moves to cold, if the total cumulative size of all warm indices is > 50TB
We are very specific of point 2 in both the cases in order to manage the SSD and HDD better since it cannot be expanded on a whim.
Is it possible to implement an ILM policy with the above parameters and conditions? If so, where would I begin?