I have a years worth of daily indexes that I am cleaning up by reindexing. Reading the "FM" I find that there appears to be a much better way to manage indexes other then blindly creating a new index each day (I was wondering why I was running out of shards!). So I am looking to adding lifecyle options to the index template.
My first instinct is to get the new data going into the revamped index stream and then reindex the old data into the new stream while cleaning it up and getting it all consistent, but I have doubts...
My question is "How does ES work out the age of an index for moving it between hot and warm/cold"?
Does it work on index create time or does it use the time field in the index?
I am adding some cold nodes to the cluster and I want all my "old" indexes stored there but if these indexes are newly created via a reindex will this work?
suggestions as how best to proceed solicited 
Russell