Skip to content

Instantly share code, notes, and snippets.

@baybatu
Last active December 20, 2018 11:00
Show Gist options
  • Save baybatu/5bc4f7cb2959bea51534876c559fedbb to your computer and use it in GitHub Desktop.
Save baybatu/5bc4f7cb2959bea51534876c559fedbb to your computer and use it in GitHub Desktop.
Propogate MDC context into newly created thread pool
public class ThreadPoolTaskExecutorWithMdcPropagation extends ThreadPoolExecutor {
private static final Logger LOGGER = LoggerFactory.getLogger(ThreadPoolTaskExecutorWithMdcPropagation.class);
private final Map<String, String> parentMdcContextMap;
public ThreadPoolTaskExecutorWithMdcPropagation(int corePoolSize, int maxPoolSize, long keepAliveTime, TimeUnit keepAliveTimeUnit) {
super(corePoolSize, maxPoolSize, keepAliveTime, keepAliveTimeUnit, new LinkedBlockingQueue<>());
parentMdcContextMap = MDC.getCopyOfContextMap();
}
@Override
protected void beforeExecute(Thread workerThread, Runnable runnable) {
try {
if (parentMdcContextMap != null && !parentMdcContextMap.isEmpty()) {
MDC.setContextMap(parentMdcContextMap);
}
} catch (Exception e) {
LOGGER.error("Exception occurred while passing MDC context to thread.", e);
}
super.beforeExecute(workerThread, runnable);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment