Identify open FileOutputStreams by the process

491 Views Asked by At

We have a memory leak in our Java application as the number of FileOutputStream open - closed difference is increasing with time. In our case heap is pretty stable but since FileOutputStreams are open we are facing memory leak in JVM native memory.

Could you please suggest a way by which we can identify the piece of code in the codebase that may be contributing to this leak.

3

There are 3 best solutions below

0
On BEST ANSWER

In JProfiler, you can find the allocation spots of unclosed FileOutputStreams like this:

  1. Record allocations and take a heap snapshot
  2. Select all instances of FileOutputStream and create a new object set
  3. Select the "Outgoing references" view
  4. Select the "closed" field of a FileOutputStream instance and invoke "Apply filter->By restricting the selected value", then select "false" in the value dialog.
  5. Go to the "Allocations" view of the heap walker and inspect the tree of allocation call stacks or the allocation hot spots view.

enter image description here

0
On

On Linux systems lsof will help you identify which file handles are open, and if you recognise the names that may help you track down the place in your code that is not closing resources properly.

However there is a much easier way if you just use a good IDE as they warn when resources are at risk of not being closed.

For example Eclipse flags this line with a warning that fis1 may not be closed properly:

FileInputStream fis1 = new FileInputStream(file);
    

... and warning vanishes if changed to:

try(FileInputStream fis2 = new FileInputStream(file)) {
}
0
On

YourKit profiler automatically finds all non-closed FileInputStreams:

  • Capture and open memory snapshot.

  • Select "Inspections" tab.

  • Find in the inspection tree "Other memory oddities" node. It contains "Non closed resources pending finalization".

  • Run the inspection.

Profiler is also able to find non-closed files, directory streams, streams closed in finalizer, and many other issues. More details are available at https://www.yourkit.com/docs/java/help/event_inspections.jsp