From c1295202ffc5bdd49128840b1ce653f5f33cab37 Mon Sep 17 00:00:00 2001 From: Charles Allen Date: Mon, 5 Jan 2015 17:55:51 -0800 Subject: [PATCH] Allow background caching run after the futures are finished --- .../druid/client/CachingClusteredClient.java | 37 ++++++++++++------- 1 file changed, 24 insertions(+), 13 deletions(-) diff --git a/server/src/main/java/io/druid/client/CachingClusteredClient.java b/server/src/main/java/io/druid/client/CachingClusteredClient.java index 71eb5492d93..14da6225f9a 100644 --- a/server/src/main/java/io/druid/client/CachingClusteredClient.java +++ b/server/src/main/java/io/druid/client/CachingClusteredClient.java @@ -31,6 +31,7 @@ import com.google.common.collect.Lists; import com.google.common.collect.Maps; import com.google.common.collect.Ordering; import com.google.common.collect.Sets; +import com.google.common.util.concurrent.FutureCallback; import com.google.common.util.concurrent.Futures; import com.google.common.util.concurrent.ListenableFuture; import com.google.common.util.concurrent.ListeningExecutorService; @@ -411,7 +412,7 @@ public class CachingClusteredClient implements QueryRunner @Override public T apply(final T input) { - if(cachePopulator != null) { + if (cachePopulator != null) { // only compute cache data if populating cache cacheFutures.add( backgroundExecutorService.submit( @@ -443,21 +444,31 @@ public class CachingClusteredClient implements QueryRunner public void run() { if (cachePopulator != null) { - try { - Futures.allAsList(cacheFutures).get(); - cachePopulator.populate(cacheData); - // Help out GC by making sure all references are gone - cacheFutures.clear(); - cacheData.clear(); - } - catch (Exception e) { - log.error(e, "Error populating cache"); - throw Throwables.propagate(e); - } + Futures.addCallback( + Futures.allAsList(cacheFutures), + new FutureCallback>() + { + @Override + public void onSuccess(List objects) + { + cachePopulator.populate(cacheData); + // Help out GC by making sure all references are gone + cacheFutures.clear(); + cacheData.clear(); + } + + @Override + public void onFailure(Throwable throwable) + { + log.error(throwable, "Background caching failed"); + } + }, + backgroundExecutorService + ); } } }, - backgroundExecutorService + MoreExecutors.sameThreadExecutor() );// End withEffect } }