Finding Java memory leak when not all used heap is reachable from threads

后端 未结 5 852
醉话见心
醉话见心 2021-02-18 15:52

I am looking into a potential memory leak (or at least memory waste) in a largish Java based system. The JVM is running with a maximum heap size of 5 GB and 2-3GB heap usage is

相关标签:
5条回答
  • 2021-02-18 16:28

    Since the extra memory is not showing in MAT it's hard to know what to suggest. My apologies if some (or even most) of this is things you already know, I've just tried to pull together everything I could think of.

    FindBugs

    FindBugs is a static analysis tool that will scan your code looking for common anti-patterns and problems and giving you a nice report on them. It does pick up on a lot of causes of potential memory and resource leaks.

    Manual dump

    You could try using something like jmap or visualvm to take a heap dump for analysis manually and see if you get different results from letting eclipse do it:

    http://docs.oracle.com/javase/1.5.0/docs/tooldocs/share/jmap.html

    http://java.dzone.com/articles/java-heap-dump-are-you-task

    Analyzer Quirks

    The memory analyzer FAQ:

    http://wiki.eclipse.org/MemoryAnalyzer/FAQ

    says:

    Symptom: When monitoring the memory usage interactively, the used heap size is much bigger than what MAT reports.

    During the index creation, the Memory Analyzer removes unreachable objects because the various garbage collector algorithms tend to leave some garbage behind (if the object is too small, moving and re-assigning addresses is to expensive). This should, however, be no more than 3 to 4 percent. If you want to know what objects are removed, enable debug output as explained here: MemoryAnalyzer/FAQ#Enable_Debug_Output

    Another reason could be that the heap dump was not written properly. Especially older VM (1.4, 1.5) can have problems if the heap dump is written via jmap.

    Enabling debug output will allow you to see what is going on there and confirm there is nothing odd in that area.

    Some of these tips may be relevant

    http://eclipsesource.com/blogs/2013/01/21/10-tips-for-using-the-eclipse-memory-analyzer/

    0 讨论(0)
  • 2021-02-18 16:32

    Since the extra memory is not showing in MAT it's hard to know what to suggest. It isn't true. MAT show unreachable objects. Just go to de Preferences and select check box enabling this options. After MAT restart you will see these objects with details. Of course roots to GC will be not available.

    0 讨论(0)
  • 2021-02-18 16:40

    Maybe you should look for memory leaks in database connector code or maybe ORM. Because if you are using raw connection library when you don't close cursor you can get potentially memory leak. Also my second thought is also related to database connector. Because some of them (may be not yours) uses native code beneath and this is source of this leak. Due to heavy concurrent usage that makes sens for me. You can check that if you want.

    0 讨论(0)
  • 2021-02-18 16:49

    Use JProfiler and break the heap object count down by class - find which class has lots of instances and start your hunt there.

    You can also take a couple of snapshots a short time apart and compare the two heap dumps to see what objects were created during that time. This is particularly handy if you know that a certain action is causing the problem and you want to ignore all the background JVM object noise and just examine the delta.

    I have used it with great success to find a memory leak. It isn't free, but it's worth the licence fee.

    FYI: I have no affiliation with JProfiler.

    0 讨论(0)
  • 2021-02-18 16:51

    I too faced the problem with memory leaks at our site,
    Use yourkit java profiler which provide lots of information and with its ability you can have a wider image where all the memory is being utilized.
    You can find a great tutorial Find Java Memory Leaks with the above tool.

    Your question,

    "What kind of Objects are there that are not reachable from an instance of java.lang.Thread other then Objects in the Finalizer Queue and unreferenced objects pending GC?"

    There are four kinds of object,

    1. Strong reachable, objects that can be reached directly via references from live objects
    2. Weak/Soft reachable, objects that are having weak/Soft reference associated with them
    3. Pending Finalization, objects that are pending for finalization and whose reference can be reached through finalizer queue
    4. Unreachable these are objects that are unreachable from GC roots, but not yet collected

    Besides these JVM also uses Native memory whose information you can find on IBM Heap and native memory use by the JVM and Thanks for the memory and according to YourKit the JVM Memory Structure has Non-Heap Memory whose definition according to them is

    Also, the JVM has memory other than the heap, referred to as non-heap memory. It is created at the JVM startup and stores per-class structures such as runtime constant pool, field and method data, and the code for methods and constructors, as well as interned Strings.

    0 讨论(0)
提交回复
热议问题