java多線程使用mdc追蹤日志方式
多線程使用mdc追蹤日志
背景
多線程情況下,子線程的sl4j打印日志缺少traceId等信息,導(dǎo)致定位問題不方便
解決方案
- 打印日志時添加用戶ID、trackId等信息,缺點是每個日志都要手動添加
- 使用mdc直接拷貝父線程值
實現(xiàn)
// 新建線程時: Map<String, String> mdcContextMap = MDC.getCopyOfContextMap() // 子線程運行時: if(null != mdcContextMap){ MDC.setContextMap(mdcContextMap); } // 銷毀線程時 MDC.clear();
參考
import org.slf4j.MDC; import java.util.Map; import java.util.concurrent.*; /** * A SLF4J MDC-compatible {@link ThreadPoolExecutor}. * <p/> * In general, MDC is used to store diagnostic information (e.g. a user's session id) in per-thread variables, to facilitate * logging. However, although MDC data is passed to thread children, this doesn't work when threads are reused in a * thread pool. This is a drop-in replacement for {@link ThreadPoolExecutor} sets MDC data before each task appropriately. * <p/> * Created by jlevy. * Date: 6/14/13 */ public class MdcThreadPoolExecutor extends ThreadPoolExecutor { final private boolean useFixedContext; final private Map<String, Object> fixedContext; /** * Pool where task threads take MDC from the submitting thread. */ public static MdcThreadPoolExecutor newWithInheritedMdc(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue) { return new MdcThreadPoolExecutor(null, corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue); } /** * Pool where task threads take fixed MDC from the thread that creates the pool. */ @SuppressWarnings("unchecked") public static MdcThreadPoolExecutor newWithCurrentMdc(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue) { return new MdcThreadPoolExecutor(MDC.getCopyOfContextMap(), corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue); } /** * Pool where task threads always have a specified, fixed MDC. */ public static MdcThreadPoolExecutor newWithFixedMdc(Map<String, Object> fixedContext, int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue) { return new MdcThreadPoolExecutor(fixedContext, corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue); } private MdcThreadPoolExecutor(Map<String, Object> fixedContext, int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue) { super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue); this.fixedContext = fixedContext; useFixedContext = (fixedContext != null); } @SuppressWarnings("unchecked") private Map<String, Object> getContextForTask() { return useFixedContext ? fixedContext : MDC.getCopyOfContextMap(); } /** * All executions will have MDC injected. {@code ThreadPoolExecutor}'s submission methods ({@code submit()} etc.) * all delegate to this. */ @Override public void execute(Runnable command) { super.execute(wrap(command, getContextForTask())); } public static Runnable wrap(final Runnable runnable, final Map<String, Object> context) { return new Runnable() { @Override public void run() { Map previous = MDC.getCopyOfContextMap(); if (context == null) { MDC.clear(); } else { MDC.setContextMap(context); } try { runnable.run(); } finally { if (previous == null) { MDC.clear(); } else { MDC.setContextMap(previous); } } } }; } }
多線程日志追蹤
主要目的是記錄工作中的一些編程思想和細節(jié),以便后來查閱。
1.問題描述
由于項目中設(shè)計高并發(fā)內(nèi)容,涉及到一個線程創(chuàng)建多個子線程的情況。 那么,如何跟蹤日志,識別子線程是由哪個主線程創(chuàng)建的,屬于哪個request請求。
例如, 在現(xiàn)有項目中,一個設(shè)備信息上傳的請求(包括基本數(shù)據(jù)和異常數(shù)據(jù)兩種數(shù)據(jù)),然后主線程創(chuàng)建兩個子線程,來處理基本數(shù)據(jù)和異常數(shù)據(jù)。
簡化代碼如下:
public class mainApp { public static void main(String[] args) { Thread t = new Thread(new Runnable() { @Override public void run() { //接收到一個request System.out.println("[Thread-"+ Thread.currentThread().getId() +"]開始發(fā)起請求"); String[] data = {"異常數(shù)據(jù)","基本數(shù)據(jù)"}; //創(chuàng)建子線程1,處理異常數(shù)據(jù) MThread mThread1 = new MThread(new Runnable() { @Override public void run() { System.out.println("[Thread-"+ Thread.currentThread().getId() +"]處理了" + data[0]); } }); 創(chuàng)建子線程2,處理普通數(shù)據(jù) MThread mThread2 = new MThread(new Runnable() { @Override public void run() { System.out.println("[Thread-"+ Thread.currentThread().getId() +"]處理了" + data[1]); } }); new Thread(mThread1).start(); new Thread(mThread2).start(); } }); t.start(); } } class MThread implements Runnable { private Runnable r; public MThread(Runnable r) { this.r = r; } @Override public void run() { r.run(); } }
運行結(jié)果如下:
一個請求有三個線程,如果有多個請求,運行結(jié)果如下:
從日志中無法看出他們之間的所屬關(guān)系(判斷不出來他們是否是處理同一個request請求的)。如果某一個線程出現(xiàn)問題,我們也很難快速定位是哪個請求的處理結(jié)果。
2. 代理實現(xiàn)日志追蹤
因此,我們使用MDC來在日志中增加traceId(同一個請求的多個線程擁有同一個traceId)。
思路如下:
1. 在request進來的時候, 利用AOP為每個request創(chuàng)建一個traceId(保證每個request的traceId不同, 同一個request的traceId相同)
2. 創(chuàng)建子線程的時候, 將traceId通過動態(tài)代理的方式,傳遞到子線程中
public class mainApp { public static void main(String[] args) { Runnable runnable = new Runnable() { @Override public void run() { //AOP 生成一個traceId MDC.put("traceId", UUID.randomUUID().toString().replace("-", "")); //接收到一個request System.out.println("[Thread-"+ Thread.currentThread().getId() +"]traceId["+ MDC.get("traceId") +"]開始發(fā)起請求"); String[] data = {"異常數(shù)據(jù)","基本數(shù)據(jù)"}; MThread mThread1 = new MThread(new Runnable() { @Override public void run() { System.out.println("[Thread-"+ Thread.currentThread().getId() +"]traceId["+ MDC.get("traceId") +"]處理了" + data[0]); } }, MDC.getCopyOfContextMap()); MThread mThread2 = new MThread(new Runnable() { @Override public void run() { System.out.println("[Thread-"+ Thread.currentThread().getId() +"]traceId["+ MDC.get("traceId") +"]處理了" + data[1]); } }, MDC.getCopyOfContextMap()); new Thread(mThread1).start(); new Thread(mThread2).start(); } }; new Thread(runnable).start(); new Thread(runnable).start(); } } class MThread implements Runnable { private Runnable r; public MThread(Runnable r, Map<String, String> parentThreadMap) { LogProxy logProxy = new LogProxy(r, parentThreadMap); Runnable rProxy = (Runnable) Proxy.newProxyInstance(r.getClass().getClassLoader(), r.getClass().getInterfaces(), logProxy); this.r = rProxy; } @Override public void run() { r.run(); } } //日志代理 class LogProxy implements InvocationHandler { private Runnable r; private Map<String, String> parentThreadMap; public LogProxy(Runnable r, Map<String, String> parentThreadMap) { this.r = r; this.parentThreadMap = parentThreadMap; } @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { if (method.getName().equals("run")) { MDC.setContextMap(parentThreadMap); } return method.invoke(r, args); } }
運行結(jié)果如下:
兩個請求, 同一個請求的traceId相同,不同請求的traceId不同。 完美實現(xiàn)多線程的日志追蹤。
實際WEB項目中,只需要在logback日志配置文件中,
logging.pattern.console參數(shù)增[%X{traceId}]即可在LOGGER日志中打印traceId的信息。
以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關(guān)文章
Java畢業(yè)設(shè)計實戰(zhàn)之仿小米電子產(chǎn)品售賣商城系統(tǒng)的實現(xiàn)
這是一個使用了java+SpringBoot+Vue+MySQL+Redis+ElementUI開發(fā)的仿小米商城系統(tǒng),是一個畢業(yè)設(shè)計的實戰(zhàn)練習(xí),具有小米商城該有的所有基礎(chǔ)功能,感興趣的朋友快來看看吧2022-01-01Spring?Data?JPA?注解Entity關(guān)聯(lián)關(guān)系使用詳解
這篇文章主要為大家介紹了Spring?Data?JPA?注解Entity關(guān)聯(lián)關(guān)系使用詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2022-09-09SpringBoot調(diào)用第三方接口的幾種方式小結(jié)
在項目中調(diào)用第三方接口時,確實需要根據(jù)項目的技術(shù)棧、架構(gòu)規(guī)范以及具體的業(yè)務(wù)需求來選擇最適合的調(diào)用方式,下面我們就介紹幾種調(diào)用第三方接口的實現(xiàn)方式以及代碼示例,需要的朋友可以參考下2024-07-07Java 后端開發(fā)中Tomcat服務(wù)器運行不了的五種解決方案
tomcat是在使用Java編程語言開發(fā)服務(wù)端技術(shù)使用最廣泛的服務(wù)器之一,但經(jīng)常在開發(fā)項目的時候會出現(xiàn)運行不了的情況,這里總結(jié)出幾種能解決的辦法2021-10-10Java圖書管理系統(tǒng),課程設(shè)計必用(源碼+文檔)
本系統(tǒng)采用Java,MySQL 作為系統(tǒng)數(shù)據(jù)庫,重點開發(fā)并實現(xiàn)了系統(tǒng)各個核心功能模塊,包括采編模塊、典藏模塊、基礎(chǔ)信息模塊、流通模塊、期刊模塊、查詢模塊、評論模塊、系統(tǒng)統(tǒng)計模塊以及幫助功能模塊2021-06-06java之a(chǎn)ssert關(guān)鍵字用法案例詳解
這篇文章主要介紹了java之a(chǎn)ssert關(guān)鍵字用法案例詳解,本篇文章通過簡要的案例,講解了該項技術(shù)的了解與使用,以下就是詳細內(nèi)容,需要的朋友可以參考下2021-08-08Mybatis返回int或者Integer類型報錯的解決辦法
這篇文章主要介紹了Mybatis返回int或者Integer類型報錯的解決辦法,非常不錯,具有參考借鑒價值,需要的朋友可以參考下2016-12-12