public void run() {
retryAllIndexesWithShuttlsWarmToColdScriptSet();
}
private void retryAllIndexesWithShuttlsWarmToColdScriptSet() {
WarmToColdIndexCollection indexCollection = new WarmToColdIndexCollection(
service);
for (WarmToColdIndex index : indexCollection.values())
if (isWarmToColdScriptConfiguredToBeShuttlsScript(index))
ColdCopyEntryPoint.createColdBucketCopier().tryCopyingColdBuckets(
index.getName());
}