java使用局部线程池为什么会造成线程泄露

一、思考 - 造成泄露,肯定是无法被GC回收,那为什么局部线程池没有被回收,我们来通过源码一探究竟

这里先给出结论:ThreadPoolExecutor -> Worker -> Thread 由于存在这样的引用关系,并且 Thread 作为 GC Root ,所以无法被回收

二、通过ThreadPoolExecutor类对源码一探究竟 不详解

ExecutorService threadPool = new   ThreadPoolExecutor( 1, 1, 300,
      TimeUnit.SECONDS, new LinkedBlockingQueue<>(1),
        Executors.defaultThreadFactory()
);

threadPool.execute(() -> {
    System.out.println("sdf");
});

1.进入threadPool.execute()方法,如下图

图1

2.重点是addWorker方法,不废话,直接进入图1红色框addWorker(command, true) 这个方法

图2

3.关键的3步已经标出来了,看图2

  • 3.1 先说说第一步w = new Worker(firstTask); 直接进去,从图3可以看到Worker内存有两个变量分别保存 一个待执行的Runnable和一个Thread。重点看图3红色框里的 this ,这个this 代表的Worker类的实例,也就是说线程start后执行的Runnable并不是调用者传进来的Runnable,而是Worker实例,那么可以猜测Worker是 implements Runnable 了,看图4
图3

图4
  • 3.2 第二步是提取出 Worker 实例的 Thread,也就是第一步getThreadFactory().newThread(this) new 出来的线程

  • 3.3 第三步就是直接执行 Worker 实例的 Thread,到这里我们很清晰的知道了,线程池里的线程最后执行的是Worker 而不是 调用者传进来的Runnable

4. 重点来了,追一下Worker的 run方法,一切将大白于天下

图5

4.1 分析图6可知,最终执行还是 (调用者)传进来的Runnable,但是有一个问题Thread 执行完Runnable后并不会stop,而是会进入阻塞,见 红色框1 进入 getTask()方法一探

图6

4.2 从图7可以看出

  • 4.2.1.若有数据 -> 则会返回Runnable 任务进入图6中的while循环中执行

  • 4.2.2.若没有数据 -> 则会阻塞(看图7红色框), 愿意的可以去看看juc中的阻塞队列的实现,就能知道阻塞的原理了,这不再此次范围内

图7

5.总结

到这里我们可以得到两个信息:
  1. 为什么线程池中的线程可以复用 --- 是因为线程池中的线程执行的是Worker的Run方法,而这里面是一个相当于 while(true)的死循环,因此线程永远不会有执行完的那一天

  2. 为什么不会被回收 --- 是因为存在GC ROOT 的引用,所以无法被回收 。 引用如下

ThreadPoolExecutor -> Worker -> Thread

由于Thread 是 活着的,因此可作为GC ROOT ,所以才会看到 局部线程池ThreadPoolExecutor没有被释放,可作为GC ROOT 的有以下,仅作参考
A garbage collection root is an object that is accessible from outside the heap. The following reasons make an object a GC root:

System Class
Class loaded by bootstrap/system class loader. For example, everything from the rt.jar like java.util.* .
JNI Local
Local variable in native code, such as user defined JNI code or JVM internal code.
JNI Global
Global variable in native code, such as user defined JNI code or JVM internal code.
Thread Block
Object referred to from a currently active thread block.
Thread
A started, but not stopped, thread.
Busy Monitor
Everything that has called wait() or notify() or that is synchronized. For example, by calling synchronized(Object) or by entering a synchronized method. Static method means class, non-static method means object.
Java Local
Local variable. For example, input parameters or locally created objects of methods that are still in the stack of a thread.
Native Stack
In or out parameters in native code, such as user defined JNI code or JVM internal code. This is often the case as many methods have native parts and the objects handled as method parameters become GC roots. For example, parameters used for file/network I/O methods or reflection.
Finalizable
An object which is in a queue awaiting its finalizer to be run.
Unfinalized
An object which has a finalize method, but has not been finalized and is not yet on the finalizer queue.
Unreachable
An object which is unreachable from any other root, but has been marked as a root by MAT to retain objects which otherwise would not be included in the analysis.
Java Stack Frame
A Java stack frame, holding local variables. Only generated when the dump is parsed with the preference set to treat Java stack frames as objects.
Unknown
An object of unknown root type. Some dumps, such as IBM Portable Heap Dump files, do not have root information. For these dumps the MAT parser marks objects which are have no inbound references or are unreachable from any other root as roots of this type. This ensures that MAT retains all the objects in the dump.

6.通过程序进行复现

6.1 执行的代码如下

public class JVMDemoTest { public static void main(String[] args) throws Exception {
        JVMDemoTest t = new JVMDemoTest(); while (true) {
            Thread.sleep(1000);
            t.test();
        }
    } private void test() { for (int i = 0; i < 10; i++) {
            Executor mExecutors = Executors.newFixedThreadPool(3); for (int j = 0; j < 3; j++) {
                mExecutors.execute(new Runnable() {
                    @Override public void run() {
                        System.out.println("execute");
                    }
                });
            }
        }
    }
}

6.2 使用jdk 自带的工具 jvisualvm 监控线程如下(堆的最低点是多次执行GC导致的),可见线程一直向上飙升

image

6.3 使用jmap -dump:format=b,file=aaaa.hprof 46008 命令 dump 堆下来分析。我使用的分析工具是MAT

使用直方图打开,可以看到 ThreadPoolExecutor对象 有 640个,Worker对象有1923个,充分的说明 线程池并没有被GC 回收

我们使用MAT提供的查看GC Root 工具查看如图11. 从图中可知 Thread 确实是GC Root 对象

image
图11

鄙人小白,若有分析不到之处,望指正

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,590评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,808评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,151评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,779评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,773评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,656评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,022评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,678评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,038评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,756评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,411评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,005评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,973评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,053评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,495评论 2 343

推荐阅读更多精彩内容