Last active
December 20, 2018 11:00
-
-
Save baybatu/5bc4f7cb2959bea51534876c559fedbb to your computer and use it in GitHub Desktop.
Propogate MDC context into newly created thread pool
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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