-
Bug
-
Resolution: Fixed
-
P3
-
hs23, 7
-
b19
-
generic, x86
-
generic, linux_redhat_5.0
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2222418 | 8 | Bengt Rutisson | P3 | Closed | Fixed | b31 |
JDK-8018155 | 7u45 | Bengt Rutisson | P3 | Closed | Fixed | b01 |
JDK-8002431 | 7u40 | Bengt Rutisson | P3 | Resolved | Fixed | b01 |
JDK-2222721 | 7u4 | Bengt Rutisson | P3 | Closed | Fixed | b18 |
JDK-2222073 | hs24 | Bengt Rutisson | P3 | Closed | Fixed | b04 |
There is a memory leak in the full GC code for G1. This can be seen by running this simple reproducer:
public class SysGC {
public static void main(String[] args) {
while (true) {
System.gc();
}
}
}
I run it with this command line:
java -XX:+UseG1GC -Xms16m -Xmx16m -XX:+PrintGC SysGC
Watching the memory footprint for the java process shows that it is constantly using more memory.
The leak comes from SurvRateGroup::stop_adding_regions() which is called from SurvRateGroup::reset(), which in turn is called from G1CollectorPolicy::record_full_collection_end().
The problem with SurvRateGroup::stop_adding_regions() is that it does:
_surv_rate_pred[i] = new TruncatedSeq(10);
in a loop every time it is called. But there is no corresponding call to delete.
Adding a loop to call delete on the previously allocated TruncatedSeq objects is not enough to solve the problem since TruncatedSeq is itself allocating an array without freeing it. Adding a destructor to TruncatedSeq that frees the allocated array solves the issue.
With these two fixes the memory leak seems to go away. Will need to look closer at this to figure out if it is the correct solution. But the current fix confirms that this is indeed the source of the memory leak.
public class SysGC {
public static void main(String[] args) {
while (true) {
System.gc();
}
}
}
I run it with this command line:
java -XX:+UseG1GC -Xms16m -Xmx16m -XX:+PrintGC SysGC
Watching the memory footprint for the java process shows that it is constantly using more memory.
The leak comes from SurvRateGroup::stop_adding_regions() which is called from SurvRateGroup::reset(), which in turn is called from G1CollectorPolicy::record_full_collection_end().
The problem with SurvRateGroup::stop_adding_regions() is that it does:
_surv_rate_pred[i] = new TruncatedSeq(10);
in a loop every time it is called. But there is no corresponding call to delete.
Adding a loop to call delete on the previously allocated TruncatedSeq objects is not enough to solve the problem since TruncatedSeq is itself allocating an array without freeing it. Adding a destructor to TruncatedSeq that frees the allocated array solves the issue.
With these two fixes the memory leak seems to go away. Will need to look closer at this to figure out if it is the correct solution. But the current fix confirms that this is indeed the source of the memory leak.
- backported by
-
JDK-8002431 G1: Native memory leak during full GCs
-
- Resolved
-
-
JDK-2222073 G1: Native memory leak during full GCs
-
- Closed
-
-
JDK-2222418 G1: Native memory leak during full GCs
-
- Closed
-
-
JDK-2222721 G1: Native memory leak during full GCs
-
- Closed
-
-
JDK-8018155 G1: Native memory leak during full GCs
-
- Closed
-