動作しない理由を私はGCGCパラメータMaxTenuringThresholdが
が、これは私のVM引数であるときMaxTenuringThresholdのための動作を確認したい:
-verbose:gc -Xms20M -Xmx20M -Xmn10M -XX:+PrintGCDetails -XX:+UseSerialGC -XX:SurvivorRatio=8 -XX:MaxTenuringThreshold=15 -XX:+PrintTenuringDistribution
と、これは私のプログラムである:
public class TestTenuringThreshold {
private static final int _1MB = 1024 * 1024;
public static void main(String[] args) {
byte[] allocation1, allocation2, allocation3;
allocation1 = new byte[_1MB/4];
allocation2 = new byte[4 * _1MB];
allocation3 = new byte[4 * _1MB];
allocation3 = null;
allocation3 = new byte[4 * _1MB];
}
}
私はMaxTenuringThresholdを15に設定しているので、allocation1はfromスペースにあると思いますが、結果は
です[GC[DefNew
Desired survivor size 524288 bytes, new threshold 1 (max 15)
- age 1: 750416 bytes, 750416 total
: 5188K->732K(9216K), 0.0041173 secs] 5188K->4828K(19456K), 0.0041663 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
[GC[DefNew
Desired survivor size 524288 bytes, new threshold 15 (max 15)
- age 1: 136 bytes, 136 total
: 4913K->0K(9216K), 0.0018490 secs] 9009K->4827K(19456K), 0.0018711 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
Heap
def new generation total 9216K, used 4260K [0x00000000f9a00000, 0x00000000fa400000, 0x00000000fa400000)
eden space 8192K, 52% used [0x00000000f9a00000, 0x00000000f9e28fd0, 0x00000000fa200000)
from space 1024K, 0% used [0x00000000fa200000, 0x00000000fa200088, 0x00000000fa300000)
to space 1024K, 0% used [0x00000000fa300000, 0x00000000fa300000, 0x00000000fa400000)
tenured generation total 10240K, used 4827K [0x00000000fa400000, 0x00000000fae00000, 0x00000000fae00000)
the space 10240K, 47% used [0x00000000fa400000, 0x00000000fa8b6dd8, 0x00000000fa8b6e00, 0x00000000fae00000)
compacting perm gen total 21248K, used 2718K [0x00000000fae00000, 0x00000000fc2c0000, 0x0000000100000000)
the space 21248K, 12% used [0x00000000fae00000, 0x00000000fb0a78a0, 0x00000000fb0a7a00, 0x00000000fc2c0000)
No shared spaces configured.
ご覧のとおり、スペースは0%使用されていますが、なぜですか?私のJDKのバージョンは次のとおりです:java version "1.7.0_79"
「MaxTenuringThreshold」は最大値です。これを設定できる最大値は15です。これは、しきい値を1にすることはできません。 –
割り当て前にすでにいくつかのオブジェクトが存在すると思います。デフォルトの 'TargetSurvivorRatio = 50'と一緒に、それらを第2の生存者('希望生存者サイズ524288バイト 'として報告)に合わせることは不可能です。開始時に 'Runtime.getRuntime()。gc()'を試してください。 – yegodm
割り当ては生き残りスペースのいずれにも起こることはなく、常にeden(若い世代)の空間から始まります。私はその質問を理解しているか分からない。 –