Hi all
I have few questions related to memory leakage.
The scenario is :
A simple tango generated java program which updates dynamic attributes.
I have tested this code using for 2 days.
When I used JTangoServer-1.1.7-all.jar for executing the program, memory increased from 93 MiB to 130.8 MiB.
And when I tried to execute the same code with JTango-9.0.3.jar , memory increased from 85.4 MiB to 896.7 MiB.
I have used SystemMonitor to know memory usage by the program and attached the same.
I could not find the reason behind this memory leakage.
Please let me know if anyone know the reason behind this memory issue and solution for the same.
Hi,
We are using :
openjdk version “1.8.0_111”
OpenJDK Runtime Environment (build 1.8.0_111-8u111-b14-2ubuntu0.16.04.2-b14)
OpenJDK 64-Bit Server VM (build 25.111-b14, mixed mode).
Because JVM is clever enough (especially in the server mode) so that it does not waste CPU cycles to do GC if there is enough space on the heap. It usually runs GC @60-80%. Short relevant discussion on StackOverflow.