linux下oom排查 Arthas

package com.lm.demo.arthas.controller;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.ArrayList;

@RestController
@RequestMapping("/test")
public class TestController {
    @GetMapping("/test")
    public String test() throws InterruptedException {
        tst ();
        return "ok";
    }

    void tst () throws InterruptedException {
        long i =0;
        ArrayList  heapTests = new ArrayList<>();
        while (true){
            heapTests.add(new HeapTest());
            Thread.sleep(100);
            System.out.println(++i);
        }
    }
}


下载运行Arthas

在命令行下面执行(使用和目标进程一致的用户启动,否则可能 attach 失败):

curl -O https://arthas.aliyun.com/arthas-boot.jar
java -jar arthas-boot.jar

很明显,因为方法不可能执行完,它的局部变量heapTests是不会释放的,但又在不停的new,它后面的一个个的new肯定也不会释放,最后肯定会OOM。

用dashbaord就可以看到大致在哪一行代码有问题

linux下oom排查 Arthas_第1张图片

你可能感兴趣的:(开发工具,#,java,linux,java,服务器)