Search This Blog

Diagnose Java OutOfMemoryError

Diagnose

  • add -XX:+HeapDumpOnOutOfMemoryError to dump Java heap
  • use jmap while the process is runnin:
    • jmap -histo:live pid
    • jmap -dump pid
  • use jhat or Eclipse MAT to analyse the heap dump file

Solutions

No comments:

Post a Comment