Skip to content

Instantly share code, notes, and snippets.

@keybounce
Created February 2, 2014 08:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keybounce/8764857 to your computer and use it in GitHub Desktop.
Save keybounce/8764857 to your computer and use it in GitHub Desktop.
Garbage collection for http://youtu.be/vT35cTBrESs - taint fighting, tail end (level prep)
{Heap before GC invocations=0 (full 0):
par new generation total 142016K, used 113664K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 0K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 12685K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:34.675+0800: 12.320: [GC2014-01-25T23:53:34.675+0800: 12.320: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 18357200 bytes, 18357200 total
: 113664K->18032K(142016K), 0.0249740 secs] 113664K->18032K(233792K), 0.0250700 secs] [Times: user=0.04 sys=0.01, real=0.03 secs]
Heap after GC invocations=1 (full 0):
par new generation total 142016K, used 18032K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 63% used [0x00000007b8ab0000, 0x00000007b9c4c2a0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 0K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 12685K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=1 (full 0):
par new generation total 142016K, used 131696K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 63% used [0x00000007b8ab0000, 0x00000007b9c4c2a0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 0K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 14525K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:36.575+0800: 14.220: [GC2014-01-25T23:53:36.575+0800: 14.220: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 16346472 bytes, 16346472 total
: 131696K->21769K(142016K), 0.0651340 secs] 131696K->32636K(233792K), 0.0651970 secs] [Times: user=0.11 sys=0.02, real=0.07 secs]
Heap after GC invocations=2 (full 0):
par new generation total 142016K, used 21769K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b84426a0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 10866K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 14525K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=2 (full 0):
par new generation total 142016K, used 135433K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b84426a0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 10866K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 15409K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:37.481+0800: 15.126: [GC2014-01-25T23:53:37.481+0800: 15.126: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 13132336 bytes, 13132336 total
: 135433K->21311K(142016K), 0.0260330 secs] 146300K->41868K(233792K), 0.0261240 secs] [Times: user=0.05 sys=0.01, real=0.02 secs]
Heap after GC invocations=3 (full 0):
par new generation total 142016K, used 21311K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 75% used [0x00000007b8ab0000, 0x00000007b9f7fcf0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 20556K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 15409K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=3 (full 0):
par new generation total 142016K, used 134975K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 75% used [0x00000007b8ab0000, 0x00000007b9f7fcf0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 20556K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 16597K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:38.319+0800: 15.963: [GC2014-01-25T23:53:38.319+0800: 15.963: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 5327816 bytes, 5327816 total
- age 2: 12520424 bytes, 17848240 total
: 134975K->18862K(142016K), 0.0141150 secs] 155532K->39419K(233792K), 0.0141810 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=4 (full 0):
par new generation total 142016K, used 18862K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 66% used [0x00000007b6f00000, 0x00000007b816bad8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 20556K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 16597K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=4 (full 0):
par new generation total 142016K, used 132526K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 66% used [0x00000007b6f00000, 0x00000007b816bad8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 20556K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 17605K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:38.698+0800: 16.343: [GC2014-01-25T23:53:38.698+0800: 16.343: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3164632 bytes, 3164632 total
- age 2: 3276168 bytes, 6440800 total
: 132526K->11523K(142016K), 0.0225560 secs] 153083K->44249K(233792K), 0.0226310 secs] [Times: user=0.08 sys=0.00, real=0.03 secs]
Heap after GC invocations=5 (full 0):
par new generation total 142016K, used 11523K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 40% used [0x00000007b8ab0000, 0x00000007b95f0cb0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 32725K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 17605K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=5 (full 0):
par new generation total 142016K, used 125187K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 40% used [0x00000007b8ab0000, 0x00000007b95f0cb0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 32725K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 18719K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:39.354+0800: 16.999: [GC2014-01-25T23:53:39.354+0800: 16.999: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4506552 bytes, 4506552 total
- age 2: 2372376 bytes, 6878928 total
- age 3: 3042816 bytes, 9921744 total
: 125187K->11844K(142016K), 0.0134030 secs] 157913K->44569K(233792K), 0.0134980 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=6 (full 0):
par new generation total 142016K, used 11844K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 41% used [0x00000007b6f00000, 0x00000007b7a91028, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 32725K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 18719K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=6 (full 0):
par new generation total 142016K, used 125508K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 41% used [0x00000007b6f00000, 0x00000007b7a91028, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 32725K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 20492K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:40.292+0800: 17.937: [GC2014-01-25T23:53:40.292+0800: 17.937: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2645048 bytes, 2645048 total
- age 2: 3601232 bytes, 6246280 total
- age 3: 2372376 bytes, 8618656 total
- age 4: 3042352 bytes, 11661008 total
: 125508K->16489K(142016K), 0.0146020 secs] 158233K->49215K(233792K), 0.0146700 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=7 (full 0):
par new generation total 142016K, used 16489K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 58% used [0x00000007b8ab0000, 0x00000007b9aca7f0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 32725K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 20492K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=7 (full 0):
par new generation total 142016K, used 130153K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 58% used [0x00000007b8ab0000, 0x00000007b9aca7f0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 32725K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 21562K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:41.058+0800: 18.702: [GC2014-01-25T23:53:41.058+0800: 18.702: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3866344 bytes, 3866344 total
- age 2: 1460584 bytes, 5326928 total
- age 3: 3601232 bytes, 8928160 total
- age 4: 2360040 bytes, 11288200 total
- age 5: 3042352 bytes, 14330552 total
: 130153K->20601K(142016K), 0.0201290 secs] 162879K->53327K(233792K), 0.0202250 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=8 (full 0):
par new generation total 142016K, used 20601K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 72% used [0x00000007b6f00000, 0x00000007b831e6c0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 32725K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 21562K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=8 (full 0):
par new generation total 142016K, used 134265K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 72% used [0x00000007b6f00000, 0x00000007b831e6c0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 32725K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23047K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:42.264+0800: 19.909: [GC2014-01-25T23:53:42.264+0800: 19.909: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 10764120 bytes, 10764120 total
- age 2: 2730872 bytes, 13494992 total
- age 3: 1431488 bytes, 14926480 total
- age 4: 3577864 bytes, 18504344 total
- age 5: 2356944 bytes, 20861288 total
- age 6: 3035520 bytes, 23896808 total
: 134265K->28352K(142016K), 0.0251010 secs] 166991K->61936K(233792K), 0.0251670 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
Heap after GC invocations=9 (full 0):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 33584K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23047K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=9 (full 0):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 33584K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23078K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:43.553+0800: 21.198: [GC2014-01-25T23:53:43.553+0800: 21.198: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 10347392 bytes, 10347392 total
- age 2: 5321272 bytes, 15668664 total
- age 3: 2651480 bytes, 18320144 total
: 142016K->28352K(142016K), 0.0482550 secs] 175600K->82449K(233792K), 0.0483460 secs] [Times: user=0.12 sys=0.01, real=0.05 secs]
Heap after GC invocations=10 (full 0):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 54097K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23078K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:53:43.601+0800: 21.246: [GC [1 CMS-initial-mark: 54097K(91776K)] 82452K(233792K), 0.0078680 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-01-25T23:53:43.609+0800: 21.254: [CMS-concurrent-mark-start]
2014-01-25T23:53:43.657+0800: 21.302: [CMS-concurrent-mark: 0.033/0.048 secs] [Times: user=0.15 sys=0.01, real=0.05 secs]
2014-01-25T23:53:43.658+0800: 21.302: [GC[YG occupancy: 36949 K (142016 K)]2014-01-25T23:53:43.658+0800: 21.302: [Rescan (parallel) , 0.0062470 secs]2014-01-25T23:53:43.664+0800: 21.309: [weak refs processing, 0.0001010 secs]2014-01-25T23:53:43.664+0800: 21.309: [scrub string table, 0.0003580 secs] [1 CMS-remark: 54097K(91776K)] 91047K(233792K), 0.0067870 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:53:43.665+0800: 21.309: [CMS-concurrent-sweep-start]
2014-01-25T23:53:43.678+0800: 21.323: [CMS-concurrent-sweep: 0.013/0.013 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-25T23:53:43.678+0800: 21.323: [CMS-concurrent-reset-start]
2014-01-25T23:53:43.685+0800: 21.330: [CMS-concurrent-reset: 0.007/0.007 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
{Heap before GC invocations=10 (full 1):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 52114K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23144K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:44.329+0800: 21.974: [GC2014-01-25T23:53:44.329+0800: 21.974: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 6371704 bytes, 6371704 total
- age 2: 9140496 bytes, 15512200 total
: 142016K->28352K(142016K), 0.0361780 secs] 194130K->96766K(233792K), 0.0362440 secs] [Times: user=0.05 sys=0.01, real=0.04 secs]
Heap after GC invocations=11 (full 1):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 68414K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23144K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:53:44.366+0800: 22.011: [GC [1 CMS-initial-mark: 68414K(91776K)] 98959K(233792K), 0.0053590 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:53:44.371+0800: 22.016: [CMS-concurrent-mark-start]
2014-01-25T23:53:44.416+0800: 22.061: [CMS-concurrent-mark: 0.040/0.045 secs] [Times: user=0.18 sys=0.00, real=0.04 secs]
2014-01-25T23:53:44.416+0800: 22.061: [GC[YG occupancy: 34933 K (142016 K)]2014-01-25T23:53:44.416+0800: 22.061: [Rescan (parallel) , 0.0053050 secs]2014-01-25T23:53:44.422+0800: 22.067: [weak refs processing, 0.0000810 secs]2014-01-25T23:53:44.422+0800: 22.067: [scrub string table, 0.0003480 secs] [1 CMS-remark: 68414K(91776K)] 103347K(233792K), 0.0058140 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:53:44.422+0800: 22.067: [CMS-concurrent-sweep-start]
2014-01-25T23:53:44.440+0800: 22.085: [CMS-concurrent-sweep: 0.018/0.018 secs] [Times: user=0.06 sys=0.01, real=0.02 secs]
2014-01-25T23:53:44.440+0800: 22.085: [CMS-concurrent-reset-start]
2014-01-25T23:53:44.443+0800: 22.088: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=11 (full 2):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 58728K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23177K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:45.067+0800: 22.711: [GC2014-01-25T23:53:45.067+0800: 22.711: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 19360880 bytes, 19360880 total
- age 2: 1668880 bytes, 21029760 total
: 142016K->21990K(142016K), 0.0239970 secs] 200744K->89660K(233792K), 0.0240730 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
Heap after GC invocations=12 (full 2):
par new generation total 142016K, used 21990K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b6f00000, 0x00000007b84799b8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 67669K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23177K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:53:45.091+0800: 22.736: [GC [1 CMS-initial-mark: 67669K(91776K)] 91885K(233792K), 0.0055980 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-01-25T23:53:45.097+0800: 22.741: [CMS-concurrent-mark-start]
2014-01-25T23:53:45.136+0800: 22.781: [CMS-concurrent-mark: 0.039/0.040 secs] [Times: user=0.17 sys=0.01, real=0.04 secs]
2014-01-25T23:53:45.137+0800: 22.781: [GC[YG occupancy: 28665 K (142016 K)]2014-01-25T23:53:45.137+0800: 22.781: [Rescan (parallel) , 0.0042260 secs]2014-01-25T23:53:45.141+0800: 22.786: [weak refs processing, 0.0013410 secs]2014-01-25T23:53:45.142+0800: 22.787: [scrub string table, 0.0003390 secs] [1 CMS-remark: 67669K(91776K)] 96335K(233792K), 0.0060150 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:53:45.143+0800: 22.787: [CMS-concurrent-sweep-start]
2014-01-25T23:53:45.161+0800: 22.806: [CMS-concurrent-sweep: 0.019/0.019 secs] [Times: user=0.06 sys=0.00, real=0.02 secs]
2014-01-25T23:53:45.161+0800: 22.806: [CMS-concurrent-reset-start]
2014-01-25T23:53:45.164+0800: 22.809: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=12 (full 3):
par new generation total 142016K, used 135654K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b6f00000, 0x00000007b84799b8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 58757K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23180K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:45.859+0800: 23.504: [GC2014-01-25T23:53:45.859+0800: 23.504: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 18994896 bytes, 18994896 total
: 135654K->21550K(142016K), 0.0223040 secs] 194411K->86061K(233792K), 0.0223790 secs] [Times: user=0.04 sys=0.00, real=0.03 secs]
Heap after GC invocations=13 (full 3):
par new generation total 142016K, used 21550K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b8ab0000, 0x00000007b9fbbac8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 64510K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23180K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:53:45.882+0800: 23.526: [GC [1 CMS-initial-mark: 64510K(91776K)] 88316K(233792K), 0.0046590 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-01-25T23:53:45.886+0800: 23.531: [CMS-concurrent-mark-start]
2014-01-25T23:53:45.929+0800: 23.574: [CMS-concurrent-mark: 0.039/0.043 secs] [Times: user=0.13 sys=0.01, real=0.04 secs]
2014-01-25T23:53:45.929+0800: 23.574: [GC[YG occupancy: 32941 K (142016 K)]2014-01-25T23:53:45.929+0800: 23.574: [Rescan (parallel) , 0.0056680 secs]2014-01-25T23:53:45.935+0800: 23.580: [weak refs processing, 0.0002180 secs]2014-01-25T23:53:45.935+0800: 23.580: [scrub string table, 0.0003320 secs] [1 CMS-remark: 64510K(91776K)] 97452K(233792K), 0.0063030 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:53:45.936+0800: 23.580: [CMS-concurrent-sweep-start]
2014-01-25T23:53:45.954+0800: 23.599: [CMS-concurrent-sweep: 0.019/0.019 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
2014-01-25T23:53:45.955+0800: 23.599: [CMS-concurrent-reset-start]
2014-01-25T23:53:45.957+0800: 23.601: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=13 (full 4):
par new generation total 142016K, used 135214K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b8ab0000, 0x00000007b9fbbac8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 59669K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23542K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:47.001+0800: 24.646: [GC2014-01-25T23:53:47.001+0800: 24.646: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 15005464 bytes, 15005464 total
: 135214K->16566K(142016K), 0.0241750 secs] 194883K->78883K(233792K), 0.0245450 secs] [Times: user=0.07 sys=0.00, real=0.02 secs]
Heap after GC invocations=14 (full 4):
par new generation total 142016K, used 16566K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 58% used [0x00000007b6f00000, 0x00000007b7f2d8d0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 62317K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23542K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=14 (full 4):
par new generation total 142016K, used 130230K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 58% used [0x00000007b6f00000, 0x00000007b7f2d8d0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 62317K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23784K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:47.571+0800: 25.215: [GC2014-01-25T23:53:47.571+0800: 25.216: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3205192 bytes, 3205192 total
: 130230K->3564K(142016K), 0.0114030 secs] 192547K->68694K(233792K), 0.0115030 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=15 (full 4):
par new generation total 142016K, used 3564K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 12% used [0x00000007b8ab0000, 0x00000007b8e2b398, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 65129K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23784K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=15 (full 4):
par new generation total 142016K, used 117228K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 12% used [0x00000007b8ab0000, 0x00000007b8e2b398, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 65129K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 24509K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:48.135+0800: 25.780: [GC2014-01-25T23:53:48.135+0800: 25.780: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 6108376 bytes, 6108376 total
- age 2: 2693992 bytes, 8802368 total
: 117228K->10055K(142016K), 0.0078350 secs] 182358K->75185K(233792K), 0.0079040 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=16 (full 4):
par new generation total 142016K, used 10055K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 35% used [0x00000007b6f00000, 0x00000007b78d1cb0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 65129K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 24509K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=16 (full 4):
par new generation total 142016K, used 123719K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 35% used [0x00000007b6f00000, 0x00000007b78d1cb0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 65129K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 25425K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:48.461+0800: 26.106: [GC2014-01-25T23:53:48.461+0800: 26.106: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 6067744 bytes, 6067744 total
- age 2: 3209480 bytes, 9277224 total
- age 3: 2369056 bytes, 11646280 total
: 123719K->12403K(142016K), 0.0091450 secs] 188849K->77533K(233792K), 0.0092450 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=17 (full 4):
par new generation total 142016K, used 12403K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 43% used [0x00000007b8ab0000, 0x00000007b96ccfa0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 65129K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 25425K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=17 (full 4):
par new generation total 142016K, used 126067K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 43% used [0x00000007b8ab0000, 0x00000007b96ccfa0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 65129K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 26386K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:48.880+0800: 26.524: [GC2014-01-25T23:53:48.880+0800: 26.524: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 5819336 bytes, 5819336 total
- age 2: 3070960 bytes, 8890296 total
- age 3: 3208072 bytes, 12098368 total
- age 4: 2367712 bytes, 14466080 total
: 126067K->17910K(142016K), 0.0108940 secs] 191197K->83040K(233792K), 0.0109610 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=18 (full 4):
par new generation total 142016K, used 17910K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 63% used [0x00000007b6f00000, 0x00000007b807daa8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 65129K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 26386K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=18 (full 4):
par new generation total 142016K, used 131574K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 63% used [0x00000007b6f00000, 0x00000007b807daa8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 65129K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 27276K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:49.302+0800: 26.947: [GC2014-01-25T23:53:49.303+0800: 26.947: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 6390656 bytes, 6390656 total
- age 2: 3040840 bytes, 9431496 total
- age 3: 3067440 bytes, 12498936 total
- age 4: 3206464 bytes, 15705400 total
- age 5: 2366704 bytes, 18072104 total
: 131574K->23849K(142016K), 0.0145680 secs] 196704K->88979K(233792K), 0.0146400 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
Heap after GC invocations=19 (full 4):
par new generation total 142016K, used 23849K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 84% used [0x00000007b8ab0000, 0x00000007ba1fa678, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 65129K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 27276K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=19 (full 4):
par new generation total 142016K, used 137513K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 84% used [0x00000007b8ab0000, 0x00000007ba1fa678, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 65129K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 27912K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:49.882+0800: 27.527: [GC2014-01-25T23:53:49.882+0800: 27.527: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 6955944 bytes, 6955944 total
- age 2: 3449352 bytes, 10405296 total
- age 3: 3030752 bytes, 13436048 total
- age 4: 3067440 bytes, 16503488 total
: 137513K->23602K(142016K), 0.0179190 secs] 202643K->94168K(233792K), 0.0179850 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=20 (full 4):
par new generation total 142016K, used 23602K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 83% used [0x00000007b6f00000, 0x00000007b860c848, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 70566K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 27912K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=20 (full 4):
par new generation total 142016K, used 137266K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 83% used [0x00000007b6f00000, 0x00000007b860c848, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 70566K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 28797K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:50.141+0800: 27.786: [GC2014-01-25T23:53:50.141+0800: 27.786: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 5380632 bytes, 5380632 total
- age 2: 3722040 bytes, 9102672 total
- age 3: 3448992 bytes, 12551664 total
- age 4: 3030752 bytes, 15582416 total
: 137266K->15632K(142016K), 0.0127480 secs] 207832K->89199K(233792K), 0.0128140 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=21 (full 4):
par new generation total 142016K, used 15632K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 55% used [0x00000007b8ab0000, 0x00000007b99f40e0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 73567K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 28797K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=21 (full 4):
par new generation total 142016K, used 129296K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 55% used [0x00000007b8ab0000, 0x00000007b99f40e0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 73567K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 29540K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:50.473+0800: 28.118: [GC2014-01-25T23:53:50.473+0800: 28.118: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 6866112 bytes, 6866112 total
- age 2: 2893072 bytes, 9759184 total
- age 3: 3721176 bytes, 13480360 total
- age 4: 3448752 bytes, 16929112 total
: 129296K->22649K(142016K), 0.0149690 secs] 202863K->99182K(233792K), 0.0150550 secs] [Times: user=0.03 sys=0.01, real=0.01 secs]
Heap after GC invocations=22 (full 4):
par new generation total 142016K, used 22649K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 79% used [0x00000007b6f00000, 0x00000007b851e520, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 76533K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 29540K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:53:50.489+0800: 28.134: [GC [1 CMS-initial-mark: 76533K(91776K)] 101454K(233792K), 0.0048770 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
2014-01-25T23:53:50.494+0800: 28.139: [CMS-concurrent-mark-start]
2014-01-25T23:53:50.603+0800: 28.247: [CMS-concurrent-mark: 0.054/0.109 secs] [Times: user=0.35 sys=0.01, real=0.11 secs]
2014-01-25T23:53:50.603+0800: 28.248: [GC[YG occupancy: 61280 K (142016 K)]2014-01-25T23:53:50.603+0800: 28.248: [Rescan (parallel) , 0.0225550 secs]2014-01-25T23:53:50.626+0800: 28.270: [weak refs processing, 0.0000990 secs]2014-01-25T23:53:50.626+0800: 28.270: [scrub string table, 0.0004110 secs] [1 CMS-remark: 76533K(91776K)] 137813K(233792K), 0.0231380 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
2014-01-25T23:53:50.626+0800: 28.271: [CMS-concurrent-sweep-start]
2014-01-25T23:53:50.650+0800: 28.295: [CMS-concurrent-sweep: 0.024/0.024 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
2014-01-25T23:53:50.650+0800: 28.295: [CMS-concurrent-reset-start]
2014-01-25T23:53:50.653+0800: 28.297: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=22 (full 5):
par new generation total 142016K, used 136313K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 79% used [0x00000007b6f00000, 0x00000007b851e520, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 93680K, used 74004K [0x00000007ba660000, 0x00000007c01dc000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 30477K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:50.795+0800: 28.440: [GC2014-01-25T23:53:50.795+0800: 28.440: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 5611248 bytes, 5611248 total
- age 2: 3549416 bytes, 9160664 total
- age 3: 2891048 bytes, 12051712 total
- age 4: 3721392 bytes, 15773104 total
: 136313K->22086K(142016K), 0.0176440 secs] 210317K->99466K(235696K), 0.0177440 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=23 (full 5):
par new generation total 142016K, used 22086K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b8ab0000, 0x00000007ba041aa8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 93680K, used 77380K [0x00000007ba660000, 0x00000007c01dc000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 30477K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:53:50.813+0800: 28.458: [GC [1 CMS-initial-mark: 77380K(93680K)] 101755K(235696K), 0.0054280 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-01-25T23:53:50.819+0800: 28.464: [CMS-concurrent-mark-start]
2014-01-25T23:53:50.868+0800: 28.512: [CMS-concurrent-mark: 0.047/0.049 secs] [Times: user=0.12 sys=0.00, real=0.05 secs]
2014-01-25T23:53:50.868+0800: 28.513: [GC[YG occupancy: 35815 K (142016 K)]2014-01-25T23:53:50.868+0800: 28.513: [Rescan (parallel) , 0.0099660 secs]2014-01-25T23:53:50.878+0800: 28.523: [weak refs processing, 0.0000990 secs]2014-01-25T23:53:50.878+0800: 28.523: [scrub string table, 0.0005750 secs] [1 CMS-remark: 77380K(93680K)] 113195K(235696K), 0.0107260 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-25T23:53:50.879+0800: 28.523: [CMS-concurrent-sweep-start]
2014-01-25T23:53:50.898+0800: 28.543: [CMS-concurrent-sweep: 0.020/0.020 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
2014-01-25T23:53:50.898+0800: 28.543: [CMS-concurrent-reset-start]
2014-01-25T23:53:50.901+0800: 28.545: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
{Heap before GC invocations=23 (full 6):
par new generation total 142016K, used 135750K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b8ab0000, 0x00000007ba041aa8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 97600K, used 77101K [0x00000007ba660000, 0x00000007c05b0000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 31404K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:51.157+0800: 28.802: [GC2014-01-25T23:53:51.157+0800: 28.802: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 9014872 bytes, 9014872 total
- age 2: 2398832 bytes, 11413704 total
- age 3: 3549200 bytes, 14962904 total
- age 4: 2868624 bytes, 17831528 total
: 135750K->21570K(142016K), 0.0138010 secs] 212852K->102309K(239616K), 0.0138800 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=24 (full 6):
par new generation total 142016K, used 21570K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b8410ab8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 97600K, used 80739K [0x00000007ba660000, 0x00000007c05b0000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 31404K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:53:51.171+0800: 28.816: [GC [1 CMS-initial-mark: 80739K(97600K)] 105709K(239616K), 0.0052610 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-01-25T23:53:51.177+0800: 28.821: [CMS-concurrent-mark-start]
2014-01-25T23:53:51.285+0800: 28.929: [CMS-concurrent-mark: 0.059/0.108 secs] [Times: user=0.22 sys=0.00, real=0.11 secs]
2014-01-25T23:53:51.285+0800: 28.929: [GC[YG occupancy: 69792 K (142016 K)]2014-01-25T23:53:51.285+0800: 28.929: [Rescan (parallel) , 0.0356840 secs]2014-01-25T23:53:51.320+0800: 28.965: [weak refs processing, 0.0000700 secs]2014-01-25T23:53:51.321+0800: 28.965: [scrub string table, 0.0003900 secs] [1 CMS-remark: 80739K(97600K)] 150531K(239616K), 0.0362140 secs] [Times: user=0.07 sys=0.00, real=0.04 secs]
2014-01-25T23:53:51.321+0800: 28.966: [CMS-concurrent-sweep-start]
2014-01-25T23:53:51.347+0800: 28.992: [CMS-concurrent-sweep: 0.026/0.026 secs] [Times: user=0.05 sys=0.01, real=0.02 secs]
2014-01-25T23:53:51.347+0800: 28.992: [CMS-concurrent-reset-start]
2014-01-25T23:53:51.349+0800: 28.994: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=24 (full 7):
par new generation total 142016K, used 135234K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b8410ab8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 101948K, used 80537K [0x00000007ba660000, 0x00000007c09ef000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 32324K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:51.640+0800: 29.284: [GC2014-01-25T23:53:51.640+0800: 29.284: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3645664 bytes, 3645664 total
- age 2: 8366056 bytes, 12011720 total
- age 3: 2397856 bytes, 14409576 total
: 135234K->23761K(142016K), 0.0185120 secs] 215772K->110583K(243964K), 0.0185930 secs] [Times: user=0.03 sys=0.01, real=0.01 secs]
Heap after GC invocations=25 (full 7):
par new generation total 142016K, used 23761K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 83% used [0x00000007b8ab0000, 0x00000007ba1e46e8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 101948K, used 86821K [0x00000007ba660000, 0x00000007c09ef000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 32324K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:53:51.659+0800: 29.303: [GC [1 CMS-initial-mark: 86821K(101948K)] 113584K(243964K), 0.0060130 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:53:51.665+0800: 29.309: [CMS-concurrent-mark-start]
2014-01-25T23:53:51.751+0800: 29.396: [CMS-concurrent-mark: 0.066/0.086 secs] [Times: user=0.37 sys=0.00, real=0.09 secs]
2014-01-25T23:53:51.751+0800: 29.396: [GC[YG occupancy: 37992 K (142016 K)]2014-01-25T23:53:51.751+0800: 29.396: [Rescan (parallel) , 0.0102710 secs]2014-01-25T23:53:51.761+0800: 29.406: [weak refs processing, 0.0000910 secs]2014-01-25T23:53:51.762+0800: 29.406: [scrub string table, 0.0005390 secs] [1 CMS-remark: 86821K(101948K)] 124813K(243964K), 0.0110190 secs] [Times: user=0.04 sys=0.01, real=0.01 secs]
2014-01-25T23:53:51.762+0800: 29.407: [CMS-concurrent-sweep-start]
2014-01-25T23:53:51.790+0800: 29.434: [CMS-concurrent-sweep: 0.027/0.027 secs] [Times: user=0.10 sys=0.00, real=0.03 secs]
2014-01-25T23:53:51.790+0800: 29.434: [CMS-concurrent-reset-start]
2014-01-25T23:53:51.792+0800: 29.437: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=25 (full 8):
par new generation total 142016K, used 137425K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 83% used [0x00000007b8ab0000, 0x00000007ba1e46e8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 109800K, used 86740K [0x00000007ba660000, 0x00000007c119a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 33484K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:52.345+0800: 29.990: [GC2014-01-25T23:53:52.345+0800: 29.990: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 2910176 bytes, 2910176 total
- age 2: 2221136 bytes, 5131312 total
- age 3: 8361280 bytes, 13492592 total
- age 4: 2397744 bytes, 15890336 total
: 137425K->19084K(142016K), 0.0155810 secs] 224166K->105825K(251816K), 0.0157250 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=26 (full 8):
par new generation total 142016K, used 19084K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 67% used [0x00000007b6f00000, 0x00000007b81a3208, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 109800K, used 86740K [0x00000007ba660000, 0x00000007c119a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 33484K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=26 (full 8):
par new generation total 142016K, used 132748K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 67% used [0x00000007b6f00000, 0x00000007b81a3208, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 109800K, used 86740K [0x00000007ba660000, 0x00000007c119a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 34888K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:52.636+0800: 30.281: [GC2014-01-25T23:53:52.636+0800: 30.281: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 3913160 bytes, 3913160 total
- age 2: 1942184 bytes, 5855344 total
- age 3: 2212408 bytes, 8067752 total
- age 4: 8361136 bytes, 16428888 total
: 132748K->24185K(142016K), 0.0156510 secs] 219489K->113274K(251816K), 0.0157190 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=27 (full 8):
par new generation total 142016K, used 24185K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 85% used [0x00000007b8ab0000, 0x00000007ba24e6a0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 109800K, used 89089K [0x00000007ba660000, 0x00000007c119a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 34888K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=27 (full 8):
par new generation total 142016K, used 137849K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 85% used [0x00000007b8ab0000, 0x00000007ba24e6a0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 109800K, used 89089K [0x00000007ba660000, 0x00000007c119a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 35701K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:52.840+0800: 30.485: [GC2014-01-25T23:53:52.840+0800: 30.485: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3176888 bytes, 3176888 total
- age 2: 2317304 bytes, 5494192 total
- age 3: 1933584 bytes, 7427776 total
- age 4: 2212408 bytes, 9640184 total
: 137849K->10371K(142016K), 0.0192470 secs] 226938K->107611K(251816K), 0.0193550 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=28 (full 8):
par new generation total 142016K, used 10371K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 36% used [0x00000007b6f00000, 0x00000007b7920c98, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 109800K, used 97240K [0x00000007ba660000, 0x00000007c119a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 35701K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:53:52.860+0800: 30.505: [GC [1 CMS-initial-mark: 97240K(109800K)] 110067K(251816K), 0.0067360 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-01-25T23:53:52.867+0800: 30.512: [CMS-concurrent-mark-start]
2014-01-25T23:53:53.102+0800: 30.747: [CMS-concurrent-mark: 0.071/0.235 secs] [Times: user=0.44 sys=0.02, real=0.24 secs]
2014-01-25T23:53:53.102+0800: 30.747: [GC[YG occupancy: 111669 K (142016 K)]2014-01-25T23:53:53.102+0800: 30.747: [Rescan (parallel) , 0.0680680 secs]2014-01-25T23:53:53.170+0800: 30.815: [weak refs processing, 0.0000790 secs]2014-01-25T23:53:53.170+0800: 30.815: [scrub string table, 0.0004890 secs] [1 CMS-remark: 97240K(109800K)] 208909K(251816K), 0.0687080 secs] [Times: user=0.15 sys=0.00, real=0.07 secs]
2014-01-25T23:53:53.171+0800: 30.816: [CMS-concurrent-sweep-start]
2014-01-25T23:53:53.193+0800: 30.838: [CMS-concurrent-sweep: 0.022/0.022 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
2014-01-25T23:53:53.193+0800: 30.838: [CMS-concurrent-reset-start]
2014-01-25T23:53:53.196+0800: 30.840: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=28 (full 9):
par new generation total 142016K, used 124035K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 36% used [0x00000007b6f00000, 0x00000007b7920c98, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 122812K, used 97020K [0x00000007ba660000, 0x00000007c1e4f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 36790K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:53.206+0800: 30.851: [GC2014-01-25T23:53:53.206+0800: 30.851: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3347520 bytes, 3347520 total
- age 2: 2138488 bytes, 5486008 total
- age 3: 2311976 bytes, 7797984 total
- age 4: 1933584 bytes, 9731568 total
- age 5: 2209728 bytes, 11941296 total
: 124035K->17021K(142016K), 0.0125150 secs] 221055K->114042K(264828K), 0.0125830 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=29 (full 9):
par new generation total 142016K, used 17021K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 60% used [0x00000007b8ab0000, 0x00000007b9b4f6d0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 122812K, used 97020K [0x00000007ba660000, 0x00000007c1e4f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 36790K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=29 (full 9):
par new generation total 142016K, used 130685K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 60% used [0x00000007b8ab0000, 0x00000007b9b4f6d0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 122812K, used 97020K [0x00000007ba660000, 0x00000007c1e4f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 38551K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:53.738+0800: 31.383: [GC2014-01-25T23:53:53.738+0800: 31.383: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 5315752 bytes, 5315752 total
- age 2: 2124736 bytes, 7440488 total
- age 3: 2135200 bytes, 9575688 total
- age 4: 2308712 bytes, 11884400 total
- age 5: 1932536 bytes, 13816936 total
- age 6: 2201704 bytes, 16018640 total
: 130685K->21920K(142016K), 0.0162900 secs] 227706K->118941K(264828K), 0.0163810 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=30 (full 9):
par new generation total 142016K, used 21920K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b6f00000, 0x00000007b84683c8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 122812K, used 97020K [0x00000007ba660000, 0x00000007c1e4f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 38551K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=30 (full 9):
par new generation total 142016K, used 135584K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b6f00000, 0x00000007b84683c8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 122812K, used 97020K [0x00000007ba660000, 0x00000007c1e4f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 40113K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:56.069+0800: 33.714: [GC2014-01-25T23:53:56.069+0800: 33.714: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 4390160 bytes, 4390160 total
- age 2: 3000208 bytes, 7390368 total
- age 3: 2124584 bytes, 9514952 total
- age 4: 2134968 bytes, 11649920 total
- age 5: 2306216 bytes, 13956136 total
- age 6: 1928160 bytes, 15884296 total
: 135584K->26786K(142016K), 0.0224960 secs] 232605K->125962K(264828K), 0.0225750 secs] [Times: user=0.04 sys=0.01, real=0.03 secs]
Heap after GC invocations=31 (full 9):
par new generation total 142016K, used 26786K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 94% used [0x00000007b8ab0000, 0x00000007ba4d8a88, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 122812K, used 99175K [0x00000007ba660000, 0x00000007c1e4f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 40113K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=31 (full 9):
par new generation total 142016K, used 140450K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 94% used [0x00000007b8ab0000, 0x00000007ba4d8a88, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 122812K, used 99175K [0x00000007ba660000, 0x00000007c1e4f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 41372K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:56.386+0800: 34.030: [GC2014-01-25T23:53:56.386+0800: 34.031: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 4119568 bytes, 4119568 total
- age 2: 2535248 bytes, 6654816 total
- age 3: 2948216 bytes, 9603032 total
- age 4: 2124584 bytes, 11727616 total
- age 5: 2134328 bytes, 13861944 total
- age 6: 2305784 bytes, 16167728 total
: 140450K->18004K(142016K), 0.0193650 secs] 239626K->119072K(264828K), 0.0194490 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=32 (full 9):
par new generation total 142016K, used 18004K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 63% used [0x00000007b6f00000, 0x00000007b80950d0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 122812K, used 101067K [0x00000007ba660000, 0x00000007c1e4f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 41372K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:53:56.405+0800: 34.050: [GC [1 CMS-initial-mark: 101067K(122812K)] 121336K(264828K), 0.0093010 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:53:56.415+0800: 34.060: [CMS-concurrent-mark-start]
2014-01-25T23:53:56.533+0800: 34.178: [CMS-concurrent-mark: 0.067/0.118 secs] [Times: user=0.33 sys=0.01, real=0.12 secs]
2014-01-25T23:53:56.533+0800: 34.178: [GC[YG occupancy: 43524 K (142016 K)]2014-01-25T23:53:56.534+0800: 34.178: [Rescan (parallel) , 0.0168630 secs]2014-01-25T23:53:56.550+0800: 34.195: [weak refs processing, 0.0000850 secs]2014-01-25T23:53:56.550+0800: 34.195: [scrub string table, 0.0005620 secs] [1 CMS-remark: 101067K(122812K)] 144592K(264828K), 0.0175790 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
2014-01-25T23:53:56.551+0800: 34.196: [CMS-concurrent-sweep-start]
2014-01-25T23:53:56.575+0800: 34.220: [CMS-concurrent-sweep: 0.024/0.024 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
2014-01-25T23:53:56.575+0800: 34.220: [CMS-concurrent-reset-start]
2014-01-25T23:53:56.578+0800: 34.222: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=32 (full 10):
par new generation total 142016K, used 131668K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 63% used [0x00000007b6f00000, 0x00000007b80950d0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 127744K, used 100915K [0x00000007ba660000, 0x00000007c2320000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 42736K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:56.851+0800: 34.496: [GC2014-01-25T23:53:56.851+0800: 34.496: [ParNew
Desired survivor size 14516224 bytes, new threshold 5 (max 15)
- age 1: 4557400 bytes, 4557400 total
- age 2: 2651096 bytes, 7208496 total
- age 3: 2524160 bytes, 9732656 total
- age 4: 2944568 bytes, 12677224 total
- age 5: 2124408 bytes, 14801632 total
- age 6: 2133832 bytes, 16935464 total
: 131668K->21167K(142016K), 0.0213680 secs] 232583K->124347K(269760K), 0.0214330 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=33 (full 10):
par new generation total 142016K, used 21167K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 74% used [0x00000007b8ab0000, 0x00000007b9f5bd68, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 127744K, used 103179K [0x00000007ba660000, 0x00000007c2320000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 42736K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=33 (full 10):
par new generation total 142016K, used 134831K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 74% used [0x00000007b8ab0000, 0x00000007b9f5bd68, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 127744K, used 103179K [0x00000007ba660000, 0x00000007c2320000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 43713K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:57.354+0800: 34.999: [GC2014-01-25T23:53:57.355+0800: 34.999: [ParNew
Desired survivor size 14516224 bytes, new threshold 5 (max 15)
- age 1: 4232016 bytes, 4232016 total
- age 2: 2586824 bytes, 6818840 total
- age 3: 2650760 bytes, 9469600 total
- age 4: 2522512 bytes, 11992112 total
- age 5: 2941440 bytes, 14933552 total
: 134831K->22585K(142016K), 0.0246420 secs] 238011K->129967K(269760K), 0.0247390 secs] [Times: user=0.07 sys=0.00, real=0.02 secs]
Heap after GC invocations=34 (full 10):
par new generation total 142016K, used 22585K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 79% used [0x00000007b6f00000, 0x00000007b850e510, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 127744K, used 107382K [0x00000007ba660000, 0x00000007c2320000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 43713K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:53:57.379+0800: 35.024: [GC [1 CMS-initial-mark: 107382K(127744K)] 132224K(269760K), 0.0082850 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-25T23:53:57.388+0800: 35.033: [CMS-concurrent-mark-start]
2014-01-25T23:53:57.483+0800: 35.128: [CMS-concurrent-mark: 0.077/0.095 secs] [Times: user=0.32 sys=0.01, real=0.10 secs]
2014-01-25T23:53:57.483+0800: 35.128: [GC[YG occupancy: 49962 K (142016 K)]2014-01-25T23:53:57.483+0800: 35.128: [Rescan (parallel) , 0.0173980 secs]2014-01-25T23:53:57.500+0800: 35.145: [weak refs processing, 0.0000770 secs]2014-01-25T23:53:57.501+0800: 35.145: [scrub string table, 0.0007070 secs] [1 CMS-remark: 107382K(127744K)] 157344K(269760K), 0.0182540 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
2014-01-25T23:53:57.501+0800: 35.146: [CMS-concurrent-sweep-start]
2014-01-25T23:53:57.526+0800: 35.171: [CMS-concurrent-sweep: 0.025/0.025 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
2014-01-25T23:53:57.527+0800: 35.171: [CMS-concurrent-reset-start]
2014-01-25T23:53:57.529+0800: 35.174: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=34 (full 11):
par new generation total 142016K, used 136249K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 79% used [0x00000007b6f00000, 0x00000007b850e510, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 135908K, used 107366K [0x00000007ba660000, 0x00000007c2b19000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 44949K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:58.021+0800: 35.666: [GC2014-01-25T23:53:58.021+0800: 35.666: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 7519624 bytes, 7519624 total
- age 2: 2790416 bytes, 10310040 total
- age 3: 2506936 bytes, 12816976 total
- age 4: 2613952 bytes, 15430928 total
- age 5: 2521976 bytes, 17952904 total
: 136249K->23789K(142016K), 0.0198350 secs] 243615K->134033K(277924K), 0.0199310 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=35 (full 11):
par new generation total 142016K, used 23789K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 83% used [0x00000007b8ab0000, 0x00000007ba1eb660, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 135908K, used 110244K [0x00000007ba660000, 0x00000007c2b19000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 44949K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=35 (full 11):
par new generation total 142016K, used 137453K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 83% used [0x00000007b8ab0000, 0x00000007ba1eb660, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 135908K, used 110244K [0x00000007ba660000, 0x00000007c2b19000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 46558K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:58.344+0800: 35.989: [GC2014-01-25T23:53:58.344+0800: 35.989: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 6592176 bytes, 6592176 total
- age 2: 4019920 bytes, 10612096 total
- age 3: 2790416 bytes, 13402512 total
- age 4: 2506912 bytes, 15909424 total
: 137453K->17171K(142016K), 0.0220530 secs] 247697K->132456K(277924K), 0.0221310 secs] [Times: user=0.04 sys=0.01, real=0.02 secs]
Heap after GC invocations=36 (full 11):
par new generation total 142016K, used 17171K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 60% used [0x00000007b6f00000, 0x00000007b7fc4fe8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 135908K, used 115284K [0x00000007ba660000, 0x00000007c2b19000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 46558K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:53:58.366+0800: 36.011: [GC [1 CMS-initial-mark: 115284K(135908K)] 134734K(277924K), 0.0057350 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
2014-01-25T23:53:58.372+0800: 36.017: [CMS-concurrent-mark-start]
2014-01-25T23:53:58.573+0800: 36.218: [CMS-concurrent-mark: 0.078/0.201 secs] [Times: user=0.40 sys=0.01, real=0.20 secs]
2014-01-25T23:53:58.573+0800: 36.218: [GC[YG occupancy: 94532 K (142016 K)]2014-01-25T23:53:58.573+0800: 36.218: [Rescan (parallel) , 0.0428540 secs]2014-01-25T23:53:58.616+0800: 36.261: [weak refs processing, 0.0001050 secs]2014-01-25T23:53:58.616+0800: 36.261: [scrub string table, 0.0007390 secs] [1 CMS-remark: 115284K(135908K)] 209816K(277924K), 0.0437730 secs] [Times: user=0.08 sys=0.00, real=0.04 secs]
2014-01-25T23:53:58.617+0800: 36.262: [CMS-concurrent-sweep-start]
2014-01-25T23:53:58.644+0800: 36.289: [CMS-concurrent-sweep: 0.027/0.027 secs] [Times: user=0.07 sys=0.00, real=0.03 secs]
2014-01-25T23:53:58.645+0800: 36.289: [CMS-concurrent-reset-start]
2014-01-25T23:53:58.647+0800: 36.292: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=36 (full 12):
par new generation total 142016K, used 130835K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 60% used [0x00000007b6f00000, 0x00000007b7fc4fe8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 145916K, used 115271K [0x00000007ba660000, 0x00000007c34df000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 48085K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:58.746+0800: 36.391: [GC2014-01-25T23:53:58.746+0800: 36.391: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 5122360 bytes, 5122360 total
- age 2: 3393192 bytes, 8515552 total
- age 3: 4017976 bytes, 12533528 total
- age 4: 2790336 bytes, 15323864 total
: 130835K->21416K(142016K), 0.0156200 secs] 246107K->139145K(287932K), 0.0156880 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=37 (full 12):
par new generation total 142016K, used 21416K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 75% used [0x00000007b8ab0000, 0x00000007b9f9a2b8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 145916K, used 117729K [0x00000007ba660000, 0x00000007c34df000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 48085K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=37 (full 12):
par new generation total 142016K, used 135080K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 75% used [0x00000007b8ab0000, 0x00000007b9f9a2b8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 145916K, used 117729K [0x00000007ba660000, 0x00000007c34df000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 49258K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:59.128+0800: 36.773: [GC2014-01-25T23:53:59.128+0800: 36.773: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4180048 bytes, 4180048 total
- age 2: 2720208 bytes, 6900256 total
- age 3: 3393192 bytes, 10293448 total
- age 4: 4015816 bytes, 14309264 total
: 135080K->20958K(142016K), 0.0177740 secs] 252809K->141427K(287932K), 0.0178420 secs] [Times: user=0.05 sys=0.01, real=0.02 secs]
Heap after GC invocations=38 (full 12):
par new generation total 142016K, used 20958K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 73% used [0x00000007b6f00000, 0x00000007b8377808, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 145916K, used 120469K [0x00000007ba660000, 0x00000007c34df000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 49258K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:53:59.146+0800: 36.791: [GC [1 CMS-initial-mark: 120469K(145916K)] 143701K(287932K), 0.0055110 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:53:59.152+0800: 36.797: [CMS-concurrent-mark-start]
2014-01-25T23:53:59.366+0800: 37.010: [CMS-concurrent-mark: 0.094/0.214 secs] [Times: user=0.67 sys=0.02, real=0.21 secs]
2014-01-25T23:53:59.366+0800: 37.011: [GC[YG occupancy: 100474 K (142016 K)]2014-01-25T23:53:59.366+0800: 37.011: [Rescan (parallel) , 0.0583340 secs]2014-01-25T23:53:59.424+0800: 37.069: [weak refs processing, 0.0000900 secs]2014-01-25T23:53:59.424+0800: 37.069: [scrub string table, 0.0007100 secs] [1 CMS-remark: 120469K(145916K)] 220943K(287932K), 0.0592130 secs] [Times: user=0.13 sys=0.00, real=0.06 secs]
2014-01-25T23:53:59.425+0800: 37.070: [CMS-concurrent-sweep-start]
2014-01-25T23:53:59.457+0800: 37.102: [CMS-concurrent-sweep: 0.032/0.032 secs] [Times: user=0.09 sys=0.00, real=0.03 secs]
2014-01-25T23:53:59.457+0800: 37.102: [CMS-concurrent-reset-start]
2014-01-25T23:53:59.460+0800: 37.105: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
{Heap before GC invocations=38 (full 13):
par new generation total 142016K, used 134622K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 73% used [0x00000007b6f00000, 0x00000007b8377808, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 152440K, used 120426K [0x00000007ba660000, 0x00000007c3b3e000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 50572K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:53:59.561+0800: 37.206: [GC2014-01-25T23:53:59.561+0800: 37.206: [ParNew
Desired survivor size 14516224 bytes, new threshold 5 (max 15)
- age 1: 3518128 bytes, 3518128 total
- age 2: 2482760 bytes, 6000888 total
- age 3: 2720160 bytes, 8721048 total
- age 4: 3393192 bytes, 12114240 total
- age 5: 4004280 bytes, 16118520 total
: 134622K->19876K(142016K), 0.0131940 secs] 255048K->140303K(294456K), 0.0132670 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
Heap after GC invocations=39 (full 13):
par new generation total 142016K, used 19876K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 70% used [0x00000007b8ab0000, 0x00000007b9e19200, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 152440K, used 120426K [0x00000007ba660000, 0x00000007c3b3e000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 50572K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=39 (full 13):
par new generation total 142016K, used 133540K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 70% used [0x00000007b8ab0000, 0x00000007b9e19200, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 152440K, used 120426K [0x00000007ba660000, 0x00000007c3b3e000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 51911K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:00.011+0800: 37.656: [GC2014-01-25T23:54:00.011+0800: 37.656: [ParNew
Desired survivor size 14516224 bytes, new threshold 5 (max 15)
- age 1: 3958008 bytes, 3958008 total
- age 2: 2329152 bytes, 6287160 total
- age 3: 2481728 bytes, 8768888 total
- age 4: 2720056 bytes, 11488944 total
- age 5: 3393192 bytes, 14882136 total
: 133540K->15243K(142016K), 0.0191410 secs] 253967K->139591K(294456K), 0.0192100 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=40 (full 13):
par new generation total 142016K, used 15243K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 53% used [0x00000007b6f00000, 0x00000007b7de2e90, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 152440K, used 124347K [0x00000007ba660000, 0x00000007c3b3e000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 51911K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=40 (full 13):
par new generation total 142016K, used 128907K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 53% used [0x00000007b6f00000, 0x00000007b7de2e90, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 152440K, used 124347K [0x00000007ba660000, 0x00000007c3b3e000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 53103K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:00.284+0800: 37.929: [GC2014-01-25T23:54:00.284+0800: 37.929: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2762800 bytes, 2762800 total
- age 2: 2664560 bytes, 5427360 total
- age 3: 2327880 bytes, 7755240 total
- age 4: 2480144 bytes, 10235384 total
- age 5: 2720000 bytes, 12955384 total
: 128907K->14790K(142016K), 0.0152100 secs] 253255K->142458K(294456K), 0.0152950 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
Heap after GC invocations=41 (full 13):
par new generation total 142016K, used 14790K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 52% used [0x00000007b8ab0000, 0x00000007b9921908, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 152440K, used 127668K [0x00000007ba660000, 0x00000007c3b3e000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 53103K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:00.300+0800: 37.944: [GC [1 CMS-initial-mark: 127668K(152440K)] 142460K(294456K), 0.0068460 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-01-25T23:54:00.307+0800: 37.951: [CMS-concurrent-mark-start]
2014-01-25T23:54:00.431+0800: 38.075: [CMS-concurrent-mark: 0.088/0.124 secs] [Times: user=0.38 sys=0.02, real=0.13 secs]
2014-01-25T23:54:00.431+0800: 38.076: [GC[YG occupancy: 58250 K (142016 K)]2014-01-25T23:54:00.431+0800: 38.076: [Rescan (parallel) , 0.0290020 secs]2014-01-25T23:54:00.460+0800: 38.105: [weak refs processing, 0.0000970 secs]2014-01-25T23:54:00.460+0800: 38.105: [scrub string table, 0.0007190 secs] [1 CMS-remark: 127668K(152440K)] 185918K(294456K), 0.0298950 secs] [Times: user=0.07 sys=0.00, real=0.03 secs]
2014-01-25T23:54:00.461+0800: 38.106: [CMS-concurrent-sweep-start]
2014-01-25T23:54:00.491+0800: 38.136: [CMS-concurrent-sweep: 0.030/0.030 secs] [Times: user=0.06 sys=0.00, real=0.03 secs]
2014-01-25T23:54:00.491+0800: 38.136: [CMS-concurrent-reset-start]
2014-01-25T23:54:00.494+0800: 38.138: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=41 (full 14):
par new generation total 142016K, used 128454K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 52% used [0x00000007b8ab0000, 0x00000007b9921908, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 161412K, used 127514K [0x00000007ba660000, 0x00000007c4401000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 54231K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:00.716+0800: 38.360: [GC2014-01-25T23:54:00.716+0800: 38.360: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 3932680 bytes, 3932680 total
- age 2: 1498280 bytes, 5430960 total
- age 3: 2655832 bytes, 8086792 total
- age 4: 2325320 bytes, 10412112 total
- age 5: 2478456 bytes, 12890568 total
- age 6: 2719960 bytes, 15610528 total
: 128454K->19586K(142016K), 0.0146530 secs] 255969K->147101K(303428K), 0.0147260 secs] [Times: user=0.03 sys=0.01, real=0.02 secs]
Heap after GC invocations=42 (full 14):
par new generation total 142016K, used 19586K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 69% used [0x00000007b6f00000, 0x00000007b82208c0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 161412K, used 127514K [0x00000007ba660000, 0x00000007c4401000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 54231K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=42 (full 14):
par new generation total 142016K, used 133250K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 69% used [0x00000007b6f00000, 0x00000007b82208c0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 161412K, used 127514K [0x00000007ba660000, 0x00000007c4401000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 55615K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:01.220+0800: 38.865: [GC2014-01-25T23:54:01.220+0800: 38.865: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 4808776 bytes, 4808776 total
- age 2: 2130840 bytes, 6939616 total
- age 3: 1498280 bytes, 8437896 total
- age 4: 2655360 bytes, 11093256 total
- age 5: 2325280 bytes, 13418536 total
- age 6: 2478376 bytes, 15896912 total
: 133250K->21739K(142016K), 0.0171700 secs] 260765K->151918K(303428K), 0.0172430 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=43 (full 14):
par new generation total 142016K, used 21739K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b8ab0000, 0x00000007b9fead70, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 161412K, used 130178K [0x00000007ba660000, 0x00000007c4401000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 55615K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=43 (full 14):
par new generation total 142016K, used 135403K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b8ab0000, 0x00000007b9fead70, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 161412K, used 130178K [0x00000007ba660000, 0x00000007c4401000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 56870K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:01.561+0800: 39.206: [GC2014-01-25T23:54:01.561+0800: 39.206: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3142056 bytes, 3142056 total
- age 2: 2566216 bytes, 5708272 total
- age 3: 2130768 bytes, 7839040 total
- age 4: 1498280 bytes, 9337320 total
- age 5: 2654784 bytes, 11992104 total
- age 6: 2324200 bytes, 14316304 total
: 135403K->14642K(142016K), 0.0177720 secs] 265582K->147248K(303428K), 0.0178630 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
Heap after GC invocations=44 (full 14):
par new generation total 142016K, used 14642K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 51% used [0x00000007b6f00000, 0x00000007b7d4c880, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 161412K, used 132605K [0x00000007ba660000, 0x00000007c4401000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 56870K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:01.579+0800: 39.224: [GC [1 CMS-initial-mark: 132605K(161412K)] 149536K(303428K), 0.0081370 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:54:01.587+0800: 39.232: [CMS-concurrent-mark-start]
2014-01-25T23:54:01.755+0800: 39.400: [CMS-concurrent-mark: 0.093/0.168 secs] [Times: user=0.30 sys=0.01, real=0.17 secs]
2014-01-25T23:54:01.755+0800: 39.400: [GC[YG occupancy: 55837 K (142016 K)]2014-01-25T23:54:01.755+0800: 39.400: [Rescan (parallel) , 0.0262190 secs]2014-01-25T23:54:01.782+0800: 39.426: [weak refs processing, 0.0000820 secs]2014-01-25T23:54:01.782+0800: 39.427: [scrub string table, 0.0007650 secs] [1 CMS-remark: 132605K(161412K)] 188443K(303428K), 0.0271330 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
2014-01-25T23:54:01.783+0800: 39.427: [CMS-concurrent-sweep-start]
2014-01-25T23:54:01.817+0800: 39.462: [CMS-concurrent-sweep: 0.034/0.034 secs] [Times: user=0.07 sys=0.00, real=0.03 secs]
2014-01-25T23:54:01.817+0800: 39.462: [CMS-concurrent-reset-start]
2014-01-25T23:54:01.819+0800: 39.464: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=44 (full 15):
par new generation total 142016K, used 128306K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 51% used [0x00000007b6f00000, 0x00000007b7d4c880, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 167772K, used 132536K [0x00000007ba660000, 0x00000007c4a37000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 58237K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:01.990+0800: 39.635: [GC2014-01-25T23:54:01.990+0800: 39.635: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 4245160 bytes, 4245160 total
- age 2: 1896160 bytes, 6141320 total
- age 3: 2565792 bytes, 8707112 total
- age 4: 2130712 bytes, 10837824 total
- age 5: 1498144 bytes, 12335968 total
- age 6: 2654784 bytes, 14990752 total
- age 7: 2324160 bytes, 17314912 total
: 128306K->21183K(142016K), 0.0151920 secs] 260842K->153720K(309788K), 0.0152550 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=45 (full 15):
par new generation total 142016K, used 21183K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 74% used [0x00000007b8ab0000, 0x00000007b9f5fed8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 167772K, used 132536K [0x00000007ba660000, 0x00000007c4a37000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 58237K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=45 (full 15):
par new generation total 142016K, used 134847K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 74% used [0x00000007b8ab0000, 0x00000007b9f5fed8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 167772K, used 132536K [0x00000007ba660000, 0x00000007c4a37000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 59384K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:02.370+0800: 40.014: [GC2014-01-25T23:54:02.370+0800: 40.014: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3933264 bytes, 3933264 total
- age 2: 2252192 bytes, 6185456 total
- age 3: 1894648 bytes, 8080104 total
- age 4: 2565016 bytes, 10645120 total
- age 5: 2130712 bytes, 12775832 total
- age 6: 1498104 bytes, 14273936 total
: 134847K->23507K(142016K), 0.0265520 secs] 267384K->160934K(309788K), 0.0266480 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=46 (full 15):
par new generation total 142016K, used 23507K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 82% used [0x00000007b6f00000, 0x00000007b85f4c40, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 167772K, used 137427K [0x00000007ba660000, 0x00000007c4a37000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 59384K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=46 (full 15):
par new generation total 142016K, used 137171K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 82% used [0x00000007b6f00000, 0x00000007b85f4c40, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 167772K, used 137427K [0x00000007ba660000, 0x00000007c4a37000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 60090K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:03.266+0800: 40.911: [GC2014-01-25T23:54:03.266+0800: 40.911: [ParNew
Desired survivor size 14516224 bytes, new threshold 5 (max 15)
- age 1: 6354040 bytes, 6354040 total
- age 2: 2292120 bytes, 8646160 total
- age 3: 2247152 bytes, 10893312 total
- age 4: 1894632 bytes, 12787944 total
- age 5: 2562328 bytes, 15350272 total
- age 6: 2130568 bytes, 17480840 total
- age 7: 1498104 bytes, 18978944 total
: 137171K->25956K(142016K), 0.0186750 secs] 274598K->163384K(309788K), 0.0187440 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=47 (full 15):
par new generation total 142016K, used 25956K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 91% used [0x00000007b8ab0000, 0x00000007ba409318, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 167772K, used 137427K [0x00000007ba660000, 0x00000007c4a37000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 60090K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=47 (full 15):
par new generation total 142016K, used 139620K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 91% used [0x00000007b8ab0000, 0x00000007ba409318, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 167772K, used 137427K [0x00000007ba660000, 0x00000007c4a37000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 60137K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:03.799+0800: 41.443: [GC2014-01-25T23:54:03.799+0800: 41.443: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 8883040 bytes, 8883040 total
- age 2: 5108712 bytes, 13991752 total
- age 3: 2262576 bytes, 16254328 total
- age 4: 2247152 bytes, 18501480 total
- age 5: 1894632 bytes, 20396112 total
: 139620K->24767K(142016K), 0.0271140 secs] 277048K->168261K(309788K), 0.0272040 secs] [Times: user=0.04 sys=0.00, real=0.03 secs]
Heap after GC invocations=48 (full 15):
par new generation total 142016K, used 24767K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 87% used [0x00000007b6f00000, 0x00000007b872fcc8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 167772K, used 143494K [0x00000007ba660000, 0x00000007c4a37000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 60137K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:03.826+0800: 41.471: [GC [1 CMS-initial-mark: 143494K(167772K)] 170449K(309788K), 0.0095610 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:54:03.836+0800: 41.480: [CMS-concurrent-mark-start]
2014-01-25T23:54:03.943+0800: 41.588: [CMS-concurrent-mark: 0.096/0.107 secs] [Times: user=0.40 sys=0.02, real=0.11 secs]
2014-01-25T23:54:03.943+0800: 41.588: [GC[YG occupancy: 48897 K (142016 K)]2014-01-25T23:54:03.943+0800: 41.588: [Rescan (parallel) , 0.0081490 secs]2014-01-25T23:54:03.951+0800: 41.596: [weak refs processing, 0.0000950 secs]2014-01-25T23:54:03.951+0800: 41.596: [scrub string table, 0.0008390 secs] [1 CMS-remark: 143494K(167772K)] 192391K(309788K), 0.0091770 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-25T23:54:03.952+0800: 41.597: [CMS-concurrent-sweep-start]
2014-01-25T23:54:03.989+0800: 41.634: [CMS-concurrent-sweep: 0.037/0.037 secs] [Times: user=0.07 sys=0.00, real=0.03 secs]
2014-01-25T23:54:03.989+0800: 41.634: [CMS-concurrent-reset-start]
2014-01-25T23:54:03.992+0800: 41.637: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
{Heap before GC invocations=48 (full 16):
par new generation total 142016K, used 138431K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 87% used [0x00000007b6f00000, 0x00000007b872fcc8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 181148K, used 143105K [0x00000007ba660000, 0x00000007c5747000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 60280K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:04.589+0800: 42.233: [GC2014-01-25T23:54:04.589+0800: 42.233: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 6810896 bytes, 6810896 total
- age 2: 4867352 bytes, 11678248 total
- age 3: 4016408 bytes, 15694656 total
: 138431K->28352K(142016K), 0.0279140 secs] 281536K->178362K(323164K), 0.0279830 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
Heap after GC invocations=49 (full 16):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 181148K, used 150010K [0x00000007ba660000, 0x00000007c5747000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 60280K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:04.617+0800: 42.262: [GC [1 CMS-initial-mark: 150010K(181148K)] 180598K(323164K), 0.0073040 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:54:04.624+0800: 42.269: [CMS-concurrent-mark-start]
2014-01-25T23:54:04.723+0800: 42.368: [CMS-concurrent-mark: 0.095/0.099 secs] [Times: user=0.29 sys=0.02, real=0.10 secs]
2014-01-25T23:54:04.723+0800: 42.368: [GC[YG occupancy: 52819 K (142016 K)]2014-01-25T23:54:04.723+0800: 42.368: [Rescan (parallel) , 0.0079420 secs]2014-01-25T23:54:04.731+0800: 42.376: [weak refs processing, 0.0001150 secs]2014-01-25T23:54:04.731+0800: 42.376: [scrub string table, 0.0010320 secs] [1 CMS-remark: 150010K(181148K)] 202830K(323164K), 0.0091850 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-25T23:54:04.732+0800: 42.377: [CMS-concurrent-sweep-start]
2014-01-25T23:54:04.767+0800: 42.412: [CMS-concurrent-sweep: 0.035/0.035 secs] [Times: user=0.07 sys=0.01, real=0.03 secs]
2014-01-25T23:54:04.767+0800: 42.412: [CMS-concurrent-reset-start]
2014-01-25T23:54:04.770+0800: 42.415: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
{Heap before GC invocations=49 (full 17):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 189860K, used 149988K [0x00000007ba660000, 0x00000007c5fc9000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 60284K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:05.065+0800: 42.710: [GC2014-01-25T23:54:05.065+0800: 42.710: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 8959808 bytes, 8959808 total
- age 2: 5454624 bytes, 14414432 total
- age 3: 3232384 bytes, 17646816 total
: 142016K->20788K(142016K), 0.0220160 secs] 292004K->174701K(331876K), 0.0220890 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=50 (full 17):
par new generation total 142016K, used 20788K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 73% used [0x00000007b6f00000, 0x00000007b834d298, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 189860K, used 153912K [0x00000007ba660000, 0x00000007c5fc9000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 60284K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=50 (full 17):
par new generation total 142016K, used 134452K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 73% used [0x00000007b6f00000, 0x00000007b834d298, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 189860K, used 153912K [0x00000007ba660000, 0x00000007c5fc9000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 60286K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:05.425+0800: 43.070: [GC2014-01-25T23:54:05.425+0800: 43.070: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 5498984 bytes, 5498984 total
- age 2: 7292264 bytes, 12791248 total
- age 3: 4039976 bytes, 16831224 total
: 134452K->22271K(142016K), 0.0209490 secs] 288365K->179339K(331876K), 0.0210590 secs] [Times: user=0.06 sys=0.01, real=0.02 secs]
Heap after GC invocations=51 (full 17):
par new generation total 142016K, used 22271K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 78% used [0x00000007b8ab0000, 0x00000007ba06fdc0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 189860K, used 157067K [0x00000007ba660000, 0x00000007c5fc9000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 60286K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:05.446+0800: 43.091: [GC [1 CMS-initial-mark: 157067K(189860K)] 181542K(331876K), 0.0072710 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:54:05.454+0800: 43.098: [CMS-concurrent-mark-start]
2014-01-25T23:54:05.570+0800: 43.215: [CMS-concurrent-mark: 0.114/0.117 secs] [Times: user=0.51 sys=0.02, real=0.12 secs]
2014-01-25T23:54:05.571+0800: 43.215: [GC[YG occupancy: 31097 K (142016 K)]2014-01-25T23:54:05.571+0800: 43.215: [Rescan (parallel) , 0.0051920 secs]2014-01-25T23:54:05.576+0800: 43.221: [weak refs processing, 0.0002960 secs]2014-01-25T23:54:05.576+0800: 43.221: [scrub string table, 0.0011010 secs] [1 CMS-remark: 157067K(189860K)] 188165K(331876K), 0.0066800 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-01-25T23:54:05.577+0800: 43.222: [CMS-concurrent-sweep-start]
2014-01-25T23:54:05.616+0800: 43.260: [CMS-concurrent-sweep: 0.038/0.038 secs] [Times: user=0.08 sys=0.01, real=0.04 secs]
2014-01-25T23:54:05.616+0800: 43.261: [CMS-concurrent-reset-start]
2014-01-25T23:54:05.618+0800: 43.263: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=51 (full 18):
par new generation total 142016K, used 135935K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 78% used [0x00000007b8ab0000, 0x00000007ba06fdc0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 197988K, used 156408K [0x00000007ba660000, 0x00000007c67b9000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 61306K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:06.351+0800: 43.996: [GC2014-01-25T23:54:06.351+0800: 43.996: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 5061712 bytes, 5061712 total
- age 2: 1318408 bytes, 6380120 total
- age 3: 4458840 bytes, 10838960 total
: 135935K->16687K(142016K), 0.0180710 secs] 292343K->176345K(340004K), 0.0181510 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=52 (full 18):
par new generation total 142016K, used 16687K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 58% used [0x00000007b6f00000, 0x00000007b7f4bf98, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 197988K, used 159657K [0x00000007ba660000, 0x00000007c67b9000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 61306K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=52 (full 18):
par new generation total 142016K, used 130351K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 58% used [0x00000007b6f00000, 0x00000007b7f4bf98, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 197988K, used 159657K [0x00000007ba660000, 0x00000007c67b9000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 62336K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:06.655+0800: 44.300: [GC2014-01-25T23:54:06.656+0800: 44.300: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3515952 bytes, 3515952 total
- age 2: 3054624 bytes, 6570576 total
- age 3: 344560 bytes, 6915136 total
- age 4: 4458448 bytes, 11373584 total
: 130351K->14599K(142016K), 0.0103730 secs] 290009K->174257K(340004K), 0.0104680 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=53 (full 18):
par new generation total 142016K, used 14599K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 51% used [0x00000007b8ab0000, 0x00000007b98f1cf8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 197988K, used 159657K [0x00000007ba660000, 0x00000007c67b9000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 62336K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=53 (full 18):
par new generation total 142016K, used 128263K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 51% used [0x00000007b8ab0000, 0x00000007b98f1cf8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 197988K, used 159657K [0x00000007ba660000, 0x00000007c67b9000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 63462K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:06.952+0800: 44.597: [GC2014-01-25T23:54:06.953+0800: 44.597: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3366912 bytes, 3366912 total
- age 2: 1859696 bytes, 5226608 total
- age 3: 2966280 bytes, 8192888 total
- age 4: 344560 bytes, 8537448 total
- age 5: 4458448 bytes, 12995896 total
: 128263K->14431K(142016K), 0.0102400 secs] 287921K->174089K(340004K), 0.0103160 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=54 (full 18):
par new generation total 142016K, used 14431K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 50% used [0x00000007b6f00000, 0x00000007b7d17dd0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 197988K, used 159657K [0x00000007ba660000, 0x00000007c67b9000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 63462K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=54 (full 18):
par new generation total 142016K, used 128095K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 50% used [0x00000007b6f00000, 0x00000007b7d17dd0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 197988K, used 159657K [0x00000007ba660000, 0x00000007c67b9000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 63824K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:07.412+0800: 45.056: [GC2014-01-25T23:54:07.412+0800: 45.057: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 3793712 bytes, 3793712 total
- age 2: 1853312 bytes, 5647024 total
- age 3: 1858952 bytes, 7505976 total
- age 4: 2966248 bytes, 10472224 total
- age 5: 344560 bytes, 10816784 total
- age 6: 4458448 bytes, 15275232 total
: 128095K->22047K(142016K), 0.0151580 secs] 287753K->181705K(340004K), 0.0152250 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=55 (full 18):
par new generation total 142016K, used 22047K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b8ab0000, 0x00000007ba037fa0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 197988K, used 159657K [0x00000007ba660000, 0x00000007c67b9000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 63824K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=55 (full 18):
par new generation total 142016K, used 135711K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b8ab0000, 0x00000007ba037fa0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 197988K, used 159657K [0x00000007ba660000, 0x00000007c67b9000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 64955K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:07.817+0800: 45.461: [GC2014-01-25T23:54:07.817+0800: 45.461: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3939000 bytes, 3939000 total
- age 2: 2987088 bytes, 6926088 total
- age 3: 1852488 bytes, 8778576 total
- age 4: 1858928 bytes, 10637504 total
- age 5: 2964064 bytes, 13601568 total
- age 6: 344560 bytes, 13946128 total
: 135711K->20930K(142016K), 0.0175280 secs] 295369K->184942K(340004K), 0.0176070 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=56 (full 18):
par new generation total 142016K, used 20930K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 73% used [0x00000007b6f00000, 0x00000007b8370a60, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 197988K, used 164011K [0x00000007ba660000, 0x00000007c67b9000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 64955K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:07.835+0800: 45.479: [GC [1 CMS-initial-mark: 164011K(197988K)] 187128K(340004K), 0.0112100 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:54:07.846+0800: 45.491: [CMS-concurrent-mark-start]
2014-01-25T23:54:08.109+0800: 45.753: [CMS-concurrent-mark: 0.114/0.263 secs] [Times: user=0.50 sys=0.02, real=0.26 secs]
2014-01-25T23:54:08.109+0800: 45.754: [GC[YG occupancy: 102408 K (142016 K)]2014-01-25T23:54:08.109+0800: 45.754: [Rescan (parallel) , 0.0487860 secs]2014-01-25T23:54:08.158+0800: 45.803: [weak refs processing, 0.0001250 secs]2014-01-25T23:54:08.158+0800: 45.803: [scrub string table, 0.0009580 secs] [1 CMS-remark: 164011K(197988K)] 266420K(340004K), 0.0499670 secs] [Times: user=0.10 sys=0.00, real=0.05 secs]
2014-01-25T23:54:08.159+0800: 45.804: [CMS-concurrent-sweep-start]
2014-01-25T23:54:08.195+0800: 45.840: [CMS-concurrent-sweep: 0.036/0.036 secs] [Times: user=0.07 sys=0.00, real=0.04 secs]
2014-01-25T23:54:08.195+0800: 45.840: [CMS-concurrent-reset-start]
2014-01-25T23:54:08.198+0800: 45.843: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=56 (full 19):
par new generation total 142016K, used 134594K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 73% used [0x00000007b6f00000, 0x00000007b8370a60, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 207276K, used 163746K [0x00000007ba660000, 0x00000007c70cb000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 66129K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:08.247+0800: 45.891: [GC2014-01-25T23:54:08.247+0800: 45.891: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 3119432 bytes, 3119432 total
- age 2: 2685048 bytes, 5804480 total
- age 3: 2985648 bytes, 8790128 total
- age 4: 1852096 bytes, 10642224 total
- age 5: 1858928 bytes, 12501152 total
- age 6: 2963920 bytes, 15465072 total
- age 7: 344560 bytes, 15809632 total
: 134594K->26808K(142016K), 0.0162990 secs] 298341K->190555K(349292K), 0.0163670 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=57 (full 19):
par new generation total 142016K, used 26808K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 94% used [0x00000007b8ab0000, 0x00000007ba4de208, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 207276K, used 163746K [0x00000007ba660000, 0x00000007c70cb000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 66129K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=57 (full 19):
par new generation total 142016K, used 140472K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 94% used [0x00000007b8ab0000, 0x00000007ba4de208, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 207276K, used 163746K [0x00000007ba660000, 0x00000007c70cb000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 67267K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:08.616+0800: 46.260: [GC2014-01-25T23:54:08.616+0800: 46.260: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 3985320 bytes, 3985320 total
- age 2: 1875560 bytes, 5860880 total
- age 3: 2583248 bytes, 8444128 total
- age 4: 2985648 bytes, 11429776 total
- age 5: 1851864 bytes, 13281640 total
- age 6: 1858928 bytes, 15140568 total
: 140472K->18284K(142016K), 0.0245860 secs] 304219K->185272K(349292K), 0.0246700 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
Heap after GC invocations=58 (full 19):
par new generation total 142016K, used 18284K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 64% used [0x00000007b6f00000, 0x00000007b80db320, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 207276K, used 166988K [0x00000007ba660000, 0x00000007c70cb000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 67267K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=58 (full 19):
par new generation total 142016K, used 131948K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 64% used [0x00000007b6f00000, 0x00000007b80db320, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 207276K, used 166988K [0x00000007ba660000, 0x00000007c70cb000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 68435K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:08.939+0800: 46.584: [GC2014-01-25T23:54:08.940+0800: 46.584: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 3557760 bytes, 3557760 total
- age 2: 2504528 bytes, 6062288 total
- age 3: 1875560 bytes, 7937848 total
- age 4: 2583032 bytes, 10520880 total
- age 5: 2985648 bytes, 13506528 total
- age 6: 1851352 bytes, 15357880 total
: 131948K->25781K(142016K), 0.0192960 secs] 298936K->194589K(349292K), 0.0194020 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=59 (full 19):
par new generation total 142016K, used 25781K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 90% used [0x00000007b8ab0000, 0x00000007ba3dd5e8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 207276K, used 168808K [0x00000007ba660000, 0x00000007c70cb000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 68435K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=59 (full 19):
par new generation total 142016K, used 139445K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 90% used [0x00000007b8ab0000, 0x00000007ba3dd5e8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 207276K, used 168808K [0x00000007ba660000, 0x00000007c70cb000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 69375K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:09.346+0800: 46.991: [GC2014-01-25T23:54:09.346+0800: 46.991: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 2450272 bytes, 2450272 total
- age 2: 2223896 bytes, 4674168 total
- age 3: 2501680 bytes, 7175848 total
- age 4: 1874944 bytes, 9050792 total
- age 5: 2581120 bytes, 11631912 total
- age 6: 2985616 bytes, 14617528 total
: 139445K->17332K(142016K), 0.0233390 secs] 308253K->187953K(349292K), 0.0234460 secs] [Times: user=0.06 sys=0.00, real=0.03 secs]
Heap after GC invocations=60 (full 19):
par new generation total 142016K, used 17332K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 61% used [0x00000007b6f00000, 0x00000007b7fed028, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 207276K, used 170621K [0x00000007ba660000, 0x00000007c70cb000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 69375K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:09.370+0800: 47.015: [GC [1 CMS-initial-mark: 170621K(207276K)] 190300K(349292K), 0.0144210 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-01-25T23:54:09.384+0800: 47.029: [CMS-concurrent-mark-start]
2014-01-25T23:54:09.606+0800: 47.251: [CMS-concurrent-mark: 0.121/0.222 secs] [Times: user=0.51 sys=0.03, real=0.22 secs]
2014-01-25T23:54:09.607+0800: 47.251: [GC[YG occupancy: 95058 K (142016 K)]2014-01-25T23:54:09.607+0800: 47.251: [Rescan (parallel) , 0.0425360 secs]2014-01-25T23:54:09.649+0800: 47.294: [weak refs processing, 0.0000910 secs]2014-01-25T23:54:09.649+0800: 47.294: [scrub string table, 0.0009820 secs] [1 CMS-remark: 170621K(207276K)] 265680K(349292K), 0.0437060 secs] [Times: user=0.08 sys=0.00, real=0.05 secs]
2014-01-25T23:54:09.650+0800: 47.295: [CMS-concurrent-sweep-start]
2014-01-25T23:54:09.706+0800: 47.351: [CMS-concurrent-sweep: 0.054/0.056 secs] [Times: user=0.22 sys=0.01, real=0.05 secs]
2014-01-25T23:54:09.707+0800: 47.351: [CMS-concurrent-reset-start]
2014-01-25T23:54:09.710+0800: 47.354: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
{Heap before GC invocations=60 (full 20):
par new generation total 142016K, used 130996K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 61% used [0x00000007b6f00000, 0x00000007b7fed028, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 215760K, used 170448K [0x00000007ba660000, 0x00000007c7914000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 70265K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:09.951+0800: 47.596: [GC2014-01-25T23:54:09.951+0800: 47.596: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3526328 bytes, 3526328 total
- age 2: 1442064 bytes, 4968392 total
- age 3: 2220856 bytes, 7189248 total
- age 4: 2501056 bytes, 9690304 total
- age 5: 1874056 bytes, 11564360 total
- age 6: 2580784 bytes, 14145144 total
: 130996K->18898K(142016K), 0.0258870 secs] 301444K->192278K(357776K), 0.0259850 secs] [Times: user=0.06 sys=0.00, real=0.02 secs]
Heap after GC invocations=61 (full 20):
par new generation total 142016K, used 18898K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 66% used [0x00000007b8ab0000, 0x00000007b9d24808, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 215760K, used 173380K [0x00000007ba660000, 0x00000007c7914000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 70265K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=61 (full 20):
par new generation total 142016K, used 132562K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 66% used [0x00000007b8ab0000, 0x00000007b9d24808, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 215760K, used 173380K [0x00000007ba660000, 0x00000007c7914000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 70838K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:10.325+0800: 47.970: [GC2014-01-25T23:54:10.325+0800: 47.970: [ParNew
Desired survivor size 14516224 bytes, new threshold 7 (max 15)
- age 1: 2984952 bytes, 2984952 total
- age 2: 2699816 bytes, 5684768 total
- age 3: 1423928 bytes, 7108696 total
- age 4: 2220856 bytes, 9329552 total
- age 5: 2501016 bytes, 11830568 total
- age 6: 1873704 bytes, 13704272 total
- age 7: 2580672 bytes, 16284944 total
: 132562K->20344K(142016K), 0.0355750 secs] 305942K->234684K(357776K), 0.0356550 secs] [Times: user=0.05 sys=0.02, real=0.04 secs]
Heap after GC invocations=62 (full 20):
par new generation total 142016K, used 20344K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 71% used [0x00000007b6f00000, 0x00000007b82de050, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 215760K, used 214340K [0x00000007ba660000, 0x00000007c7914000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 70838K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:10.361+0800: 48.005: [GC [1 CMS-initial-mark: 214340K(215760K)] 236542K(357776K), 0.0129920 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:54:10.374+0800: 48.019: [CMS-concurrent-mark-start]
2014-01-25T23:54:10.807+0800: 48.452: [CMS-concurrent-mark: 0.142/0.434 secs] [Times: user=0.83 sys=0.03, real=0.43 secs]
2014-01-25T23:54:10.807+0800: 48.452: [GC[YG occupancy: 129557 K (142016 K)]2014-01-25T23:54:10.808+0800: 48.452: [Rescan (parallel) , 0.0673500 secs]2014-01-25T23:54:10.875+0800: 48.520: [weak refs processing, 0.0001040 secs]2014-01-25T23:54:10.875+0800: 48.520: [scrub string table, 0.0010010 secs] [1 CMS-remark: 214340K(215760K)] 343897K(357776K), 0.0685460 secs] [Times: user=0.13 sys=0.00, real=0.07 secs]
2014-01-25T23:54:10.876+0800: 48.521: [CMS-concurrent-sweep-start]
{Heap before GC invocations=62 (full 21):
par new generation total 142016K, used 134008K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 71% used [0x00000007b6f00000, 0x00000007b82de050, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 215760K, used 214331K [0x00000007ba660000, 0x00000007c7914000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 71847K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:10.910+0800: 48.555: [GC2014-01-25T23:54:10.910+0800: 48.555: [ParNew
Desired survivor size 14516224 bytes, new threshold 7 (max 15)
- age 1: 3440984 bytes, 3440984 total
- age 2: 1859352 bytes, 5300336 total
- age 3: 2667160 bytes, 7967496 total
- age 4: 1416528 bytes, 9384024 total
- age 5: 2220856 bytes, 11604880 total
- age 6: 2497984 bytes, 14102864 total
- age 7: 1873704 bytes, 15976568 total
: 134008K->22888K(142016K), 0.0270140 secs] 348340K->239748K(360792K), 0.0270930 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=63 (full 21):
par new generation total 142016K, used 22888K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 80% used [0x00000007b8ab0000, 0x00000007ba10a118, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 218776K, used 216860K [0x00000007ba660000, 0x00000007c7c06000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 71847K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:10.958+0800: 48.603: [CMS-concurrent-sweep: 0.054/0.082 secs] [Times: user=0.16 sys=0.00, real=0.08 secs]
2014-01-25T23:54:10.959+0800: 48.603: [CMS-concurrent-reset-start]
2014-01-25T23:54:10.962+0800: 48.607: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:54:11.288+0800: 48.932: [GC [1 CMS-initial-mark: 216781K(274408K)] 338158K(416424K), 0.0861830 secs] [Times: user=0.08 sys=0.00, real=0.09 secs]
2014-01-25T23:54:11.374+0800: 49.019: [CMS-concurrent-mark-start]
{Heap before GC invocations=63 (full 22):
par new generation total 142016K, used 136552K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 80% used [0x00000007b8ab0000, 0x00000007ba10a118, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 274408K, used 216781K [0x00000007ba660000, 0x00000007cb25a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 73241K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:11.430+0800: 49.074: [GC2014-01-25T23:54:11.430+0800: 49.074: [ParNew
Desired survivor size 14516224 bytes, new threshold 7 (max 15)
- age 1: 3052048 bytes, 3052048 total
- age 2: 2134448 bytes, 5186496 total
- age 3: 1818368 bytes, 7004864 total
- age 4: 2630144 bytes, 9635008 total
- age 5: 1415056 bytes, 11050064 total
- age 6: 2220696 bytes, 13270760 total
- age 7: 2497296 bytes, 15768056 total
: 136552K->22540K(142016K), 0.0247800 secs] 353333K->241160K(416424K), 0.0248810 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=64 (full 22):
par new generation total 142016K, used 22540K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 79% used [0x00000007b6f00000, 0x00000007b85031a0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 274408K, used 218620K [0x00000007ba660000, 0x00000007cb25a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 73241K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:11.637+0800: 49.282: [CMS-concurrent-mark: 0.135/0.263 secs] [Times: user=0.59 sys=0.02, real=0.26 secs]
2014-01-25T23:54:11.637+0800: 49.282: [GC[YG occupancy: 61348 K (142016 K)]2014-01-25T23:54:11.637+0800: 49.282: [Rescan (parallel) , 0.0253430 secs]2014-01-25T23:54:11.663+0800: 49.308: [weak refs processing, 0.0001050 secs]2014-01-25T23:54:11.663+0800: 49.308: [scrub string table, 0.0012190 secs] [1 CMS-remark: 218620K(274408K)] 279969K(416424K), 0.0267630 secs] [Times: user=0.06 sys=0.00, real=0.03 secs]
2014-01-25T23:54:11.664+0800: 49.309: [CMS-concurrent-sweep-start]
2014-01-25T23:54:11.706+0800: 49.351: [CMS-concurrent-sweep: 0.041/0.042 secs] [Times: user=0.08 sys=0.00, real=0.04 secs]
2014-01-25T23:54:11.706+0800: 49.351: [CMS-concurrent-reset-start]
2014-01-25T23:54:11.709+0800: 49.354: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.01, real=0.00 secs]
{Heap before GC invocations=64 (full 22):
par new generation total 142016K, used 136204K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 79% used [0x00000007b6f00000, 0x00000007b85031a0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 276624K, used 218531K [0x00000007ba660000, 0x00000007cb484000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 74410K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:12.021+0800: 49.665: [GC2014-01-25T23:54:12.021+0800: 49.665: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 8759400 bytes, 8759400 total
- age 2: 1936232 bytes, 10695632 total
- age 3: 2130312 bytes, 12825944 total
- age 4: 1808624 bytes, 14634568 total
- age 5: 2629072 bytes, 17263640 total
- age 6: 1407760 bytes, 18671400 total
- age 7: 2220360 bytes, 20891760 total
: 136204K->28352K(142016K), 0.0264940 secs] 354735K->250406K(418640K), 0.0265700 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=65 (full 22):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 276624K, used 222054K [0x00000007ba660000, 0x00000007cb484000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 74410K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=65 (full 22):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 276624K, used 222054K [0x00000007ba660000, 0x00000007cb484000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 75512K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:12.513+0800: 50.158: [GC2014-01-25T23:54:12.513+0800: 50.158: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 4141992 bytes, 4141992 total
- age 2: 8677904 bytes, 12819896 total
- age 3: 1935912 bytes, 14755808 total
- age 4: 2130312 bytes, 16886120 total
: 142016K->20117K(142016K), 0.0679500 secs] 364070K->250070K(418640K), 0.0680430 secs] [Times: user=0.16 sys=0.03, real=0.07 secs]
Heap after GC invocations=66 (full 22):
par new generation total 142016K, used 20117K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 70% used [0x00000007b6f00000, 0x00000007b82a5560, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 276624K, used 229953K [0x00000007ba660000, 0x00000007cb484000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 75512K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:12.582+0800: 50.226: [GC [1 CMS-initial-mark: 229953K(276624K)] 252268K(418640K), 0.0140870 secs] [Times: user=0.03 sys=0.01, real=0.01 secs]
2014-01-25T23:54:12.596+0800: 50.241: [CMS-concurrent-mark-start]
2014-01-25T23:54:12.793+0800: 50.438: [CMS-concurrent-mark: 0.133/0.197 secs] [Times: user=0.48 sys=0.01, real=0.20 secs]
2014-01-25T23:54:12.793+0800: 50.438: [GC[YG occupancy: 45845 K (142016 K)]2014-01-25T23:54:12.793+0800: 50.438: [Rescan (parallel) , 0.0173230 secs]2014-01-25T23:54:12.810+0800: 50.455: [weak refs processing, 0.0001030 secs]2014-01-25T23:54:12.811+0800: 50.455: [scrub string table, 0.0010090 secs] [1 CMS-remark: 229953K(276624K)] 275798K(418640K), 0.0185240 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
2014-01-25T23:54:12.812+0800: 50.456: [CMS-concurrent-sweep-start]
2014-01-25T23:54:12.860+0800: 50.505: [CMS-concurrent-sweep: 0.048/0.048 secs] [Times: user=0.05 sys=0.00, real=0.05 secs]
2014-01-25T23:54:12.860+0800: 50.505: [CMS-concurrent-reset-start]
2014-01-25T23:54:12.863+0800: 50.507: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=66 (full 23):
par new generation total 142016K, used 133781K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 70% used [0x00000007b6f00000, 0x00000007b82a5560, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 289556K, used 228749K [0x00000007ba660000, 0x00000007cc125000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 76329K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:13.776+0800: 51.421: [GC2014-01-25T23:54:13.777+0800: 51.421: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2421376 bytes, 2421376 total
- age 2: 3011672 bytes, 5433048 total
- age 3: 8673440 bytes, 14106488 total
: 133781K->17012K(142016K), 0.0244010 secs] 362530K->249755K(431572K), 0.0244850 secs] [Times: user=0.04 sys=0.01, real=0.03 secs]
Heap after GC invocations=67 (full 23):
par new generation total 142016K, used 17012K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 60% used [0x00000007b8ab0000, 0x00000007b9b4d0c0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 289556K, used 232742K [0x00000007ba660000, 0x00000007cc125000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 76329K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=67 (full 23):
par new generation total 142016K, used 130676K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 60% used [0x00000007b8ab0000, 0x00000007b9b4d0c0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 289556K, used 232742K [0x00000007ba660000, 0x00000007cc125000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 77166K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:14.438+0800: 52.083: [GC2014-01-25T23:54:14.438+0800: 52.083: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 4099408 bytes, 4099408 total
- age 2: 1751624 bytes, 5851032 total
- age 3: 2984832 bytes, 8835864 total
- age 4: 8657616 bytes, 17493480 total
: 130676K->26441K(142016K), 0.0252680 secs] 363419K->259184K(431572K), 0.0253380 secs] [Times: user=0.07 sys=0.00, real=0.03 secs]
Heap after GC invocations=68 (full 23):
par new generation total 142016K, used 26441K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 93% used [0x00000007b6f00000, 0x00000007b88d24e8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 289556K, used 232742K [0x00000007ba660000, 0x00000007cc125000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 77166K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=68 (full 23):
par new generation total 142016K, used 140105K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 93% used [0x00000007b6f00000, 0x00000007b88d24e8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 289556K, used 232742K [0x00000007ba660000, 0x00000007cc125000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 77967K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:15.060+0800: 52.705: [GC2014-01-25T23:54:15.060+0800: 52.705: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 7197728 bytes, 7197728 total
- age 2: 3399880 bytes, 10597608 total
- age 3: 1751248 bytes, 12348856 total
- age 4: 2984792 bytes, 15333648 total
: 140105K->22311K(142016K), 0.0307410 secs] 372848K->263529K(431572K), 0.0308400 secs] [Times: user=0.06 sys=0.01, real=0.03 secs]
Heap after GC invocations=69 (full 23):
par new generation total 142016K, used 22311K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 78% used [0x00000007b8ab0000, 0x00000007ba079f28, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 289556K, used 241217K [0x00000007ba660000, 0x00000007cc125000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 77967K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:15.091+0800: 52.736: [GC [1 CMS-initial-mark: 241217K(289556K)] 265665K(431572K), 0.0161600 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-25T23:54:15.107+0800: 52.752: [CMS-concurrent-mark-start]
2014-01-25T23:54:15.282+0800: 52.927: [CMS-concurrent-mark: 0.158/0.175 secs] [Times: user=0.75 sys=0.02, real=0.18 secs]
2014-01-25T23:54:15.282+0800: 52.927: [GC[YG occupancy: 26710 K (142016 K)]2014-01-25T23:54:15.282+0800: 52.927: [Rescan (parallel) , 0.0117420 secs]2014-01-25T23:54:15.294+0800: 52.939: [weak refs processing, 0.0001440 secs]2014-01-25T23:54:15.294+0800: 52.939: [scrub string table, 0.0015430 secs] [1 CMS-remark: 241217K(289556K)] 267928K(431572K), 0.0135240 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-01-25T23:54:15.296+0800: 52.941: [CMS-concurrent-sweep-start]
2014-01-25T23:54:15.350+0800: 52.994: [CMS-concurrent-sweep: 0.053/0.054 secs] [Times: user=0.15 sys=0.01, real=0.06 secs]
2014-01-25T23:54:15.350+0800: 52.994: [CMS-concurrent-reset-start]
2014-01-25T23:54:15.353+0800: 52.997: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=69 (full 24):
par new generation total 142016K, used 135975K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 78% used [0x00000007b8ab0000, 0x00000007ba079f28, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 304992K, used 240943K [0x00000007ba660000, 0x00000007cd038000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 78891K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:16.221+0800: 53.866: [GC2014-01-25T23:54:16.221+0800: 53.866: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2767176 bytes, 2767176 total
- age 2: 5685000 bytes, 8452176 total
- age 3: 3399048 bytes, 11851224 total
- age 4: 1748872 bytes, 13600096 total
: 135975K->21510K(142016K), 0.0282430 secs] 376918K->265378K(447008K), 0.0283150 secs] [Times: user=0.05 sys=0.01, real=0.02 secs]
Heap after GC invocations=70 (full 24):
par new generation total 142016K, used 21510K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 75% used [0x00000007b6f00000, 0x00000007b84019e0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 304992K, used 243868K [0x00000007ba660000, 0x00000007cd038000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 78891K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=70 (full 24):
par new generation total 142016K, used 135174K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 75% used [0x00000007b6f00000, 0x00000007b84019e0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 304992K, used 243868K [0x00000007ba660000, 0x00000007cd038000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 78905K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:16.643+0800: 54.288: [GC2014-01-25T23:54:16.643+0800: 54.288: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 4918344 bytes, 4918344 total
- age 2: 1836376 bytes, 6754720 total
- age 3: 5682704 bytes, 12437424 total
- age 4: 3396952 bytes, 15834376 total
- age 5: 1748840 bytes, 17583216 total
: 135174K->26040K(142016K), 0.0264770 secs] 379042K->269909K(447008K), 0.0265800 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
Heap after GC invocations=71 (full 24):
par new generation total 142016K, used 26040K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 91% used [0x00000007b8ab0000, 0x00000007ba41e320, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 304992K, used 243868K [0x00000007ba660000, 0x00000007cd038000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 78905K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=71 (full 24):
par new generation total 142016K, used 139658K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6ef4640, 0x00000007b6f00000)
from space 28352K, 91% used [0x00000007b8ab0000, 0x00000007ba41e320, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 304992K, used 243868K [0x00000007ba660000, 0x00000007cd038000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 78907K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:17.108+0800: 54.753: [GC2014-01-25T23:54:17.108+0800: 54.753: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 9488784 bytes, 9488784 total
- age 2: 4248344 bytes, 13737128 total
- age 3: 1836376 bytes, 15573504 total
- age 4: 5676576 bytes, 21250080 total
: 139658K->21731K(142016K), 0.0424400 secs] 383526K->270675K(447008K), 0.0425200 secs] [Times: user=0.08 sys=0.00, real=0.05 secs]
Heap after GC invocations=72 (full 24):
par new generation total 142016K, used 21731K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b8438f48, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 304992K, used 248943K [0x00000007ba660000, 0x00000007cd038000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 78907K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=72 (full 24):
par new generation total 142016K, used 135395K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b8438f48, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 304992K, used 248943K [0x00000007ba660000, 0x00000007cd038000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 78910K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:17.495+0800: 55.140: [GC2014-01-25T23:54:17.495+0800: 55.140: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 9709888 bytes, 9709888 total
- age 2: 3544808 bytes, 13254696 total
- age 3: 3515792 bytes, 16770488 total
: 135395K->24809K(142016K), 0.0341600 secs] 384339K->281116K(447008K), 0.0342550 secs] [Times: user=0.08 sys=0.01, real=0.04 secs]
Heap after GC invocations=73 (full 24):
par new generation total 142016K, used 24809K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 87% used [0x00000007b8ab0000, 0x00000007ba2ea628, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 304992K, used 256306K [0x00000007ba660000, 0x00000007cd038000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 78910K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:17.530+0800: 55.175: [GC [1 CMS-initial-mark: 256306K(304992K)] 281124K(447008K), 0.0100090 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:54:17.540+0800: 55.185: [CMS-concurrent-mark-start]
2014-01-25T23:54:17.690+0800: 55.335: [CMS-concurrent-mark: 0.146/0.150 secs] [Times: user=0.52 sys=0.04, real=0.15 secs]
2014-01-25T23:54:17.690+0800: 55.335: [GC[YG occupancy: 82886 K (142016 K)]2014-01-25T23:54:17.690+0800: 55.335: [Rescan (parallel) , 0.0162130 secs]2014-01-25T23:54:17.706+0800: 55.351: [weak refs processing, 0.0002190 secs]2014-01-25T23:54:17.706+0800: 55.351: [scrub string table, 0.0010850 secs] [1 CMS-remark: 256306K(304992K)] 339193K(447008K), 0.0176070 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-01-25T23:54:17.708+0800: 55.353: [CMS-concurrent-sweep-start]
2014-01-25T23:54:17.767+0800: 55.412: [CMS-concurrent-sweep: 0.059/0.059 secs] [Times: user=0.19 sys=0.01, real=0.06 secs]
2014-01-25T23:54:17.767+0800: 55.412: [CMS-concurrent-reset-start]
2014-01-25T23:54:17.770+0800: 55.415: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
{Heap before GC invocations=73 (full 25):
par new generation total 142016K, used 138473K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 87% used [0x00000007b8ab0000, 0x00000007ba2ea628, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 314904K, used 248771K [0x00000007ba660000, 0x00000007cd9e6000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 79012K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:18.510+0800: 56.155: [GC2014-01-25T23:54:18.511+0800: 56.155: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 6814192 bytes, 6814192 total
- age 2: 5809248 bytes, 12623440 total
- age 3: 365648 bytes, 12989088 total
: 138473K->16611K(142016K), 0.0246880 secs] 387244K->268231K(456920K), 0.0247570 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=74 (full 25):
par new generation total 142016K, used 16611K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 58% used [0x00000007b6f00000, 0x00000007b7f38f68, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 314904K, used 251619K [0x00000007ba660000, 0x00000007cd9e6000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 79012K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=74 (full 25):
par new generation total 142016K, used 130275K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 58% used [0x00000007b6f00000, 0x00000007b7f38f68, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 314904K, used 251619K [0x00000007ba660000, 0x00000007cd9e6000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 79015K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:18.835+0800: 56.479: [GC2014-01-25T23:54:18.835+0800: 56.480: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 9122208 bytes, 9122208 total
- age 2: 5041840 bytes, 14164048 total
- age 3: 4637040 bytes, 18801088 total
- age 4: 365008 bytes, 19166096 total
: 130275K->25147K(142016K), 0.0178680 secs] 381895K->276766K(456920K), 0.0181920 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=75 (full 25):
par new generation total 142016K, used 25147K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 88% used [0x00000007b8ab0000, 0x00000007ba33ec00, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 314904K, used 251619K [0x00000007ba660000, 0x00000007cd9e6000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 79015K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=75 (full 25):
par new generation total 142016K, used 138811K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 88% used [0x00000007b8ab0000, 0x00000007ba33ec00, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 314904K, used 251619K [0x00000007ba660000, 0x00000007cd9e6000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 79017K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:19.137+0800: 56.782: [GC2014-01-25T23:54:19.137+0800: 56.782: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 8902960 bytes, 8902960 total
- age 2: 7266096 bytes, 16169056 total
- age 3: 3792552 bytes, 19961608 total
: 138811K->25844K(142016K), 0.0228280 secs] 390430K->282348K(456920K), 0.0229100 secs] [Times: user=0.04 sys=0.00, real=0.03 secs]
Heap after GC invocations=76 (full 25):
par new generation total 142016K, used 25844K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 91% used [0x00000007b6f00000, 0x00000007b883d1f8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 314904K, used 256504K [0x00000007ba660000, 0x00000007cd9e6000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 79017K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=76 (full 25):
par new generation total 142016K, used 123396K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 85% used [0x00000007b0000000, 0x00000007b5f43e90, 0x00000007b6f00000)
from space 28352K, 91% used [0x00000007b6f00000, 0x00000007b883d1f8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 314904K, used 256504K [0x00000007ba660000, 0x00000007cd9e6000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 79306K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:19.825+0800: 57.470: [GC2014-01-25T23:54:19.825+0800: 57.470: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4137144 bytes, 4137144 total
- age 2: 5051016 bytes, 9188160 total
: 123396K->18412K(142016K), 0.0221300 secs] 379900K->281286K(456920K), 0.0222280 secs] [Times: user=0.04 sys=0.01, real=0.02 secs]
Heap after GC invocations=77 (full 25):
par new generation total 142016K, used 18412K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 64% used [0x00000007b8ab0000, 0x00000007b9cab280, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 314904K, used 262874K [0x00000007ba660000, 0x00000007cd9e6000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 79306K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:19.850+0800: 57.494: [GC [1 CMS-initial-mark: 262874K(314904K)] 297674K(456920K), 0.0070990 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-01-25T23:54:19.857+0800: 57.501: [CMS-concurrent-mark-start]
2014-01-25T23:54:20.035+0800: 57.679: [CMS-concurrent-mark: 0.156/0.178 secs] [Times: user=0.40 sys=0.03, real=0.18 secs]
2014-01-25T23:54:20.035+0800: 57.679: [GC[YG occupancy: 113516 K (142016 K)]2014-01-25T23:54:20.035+0800: 57.680: [Rescan (parallel) , 0.0074740 secs]2014-01-25T23:54:20.042+0800: 57.687: [weak refs processing, 0.0001090 secs]2014-01-25T23:54:20.042+0800: 57.687: [scrub string table, 0.0010440 secs] [1 CMS-remark: 262874K(314904K)] 376390K(456920K), 0.0087100 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:54:20.044+0800: 57.688: [CMS-concurrent-sweep-start]
2014-01-25T23:54:20.105+0800: 57.750: [CMS-concurrent-sweep: 0.061/0.061 secs] [Times: user=0.10 sys=0.00, real=0.06 secs]
{Heap before GC invocations=77 (full 26):
par new generation total 142016K, used 130235K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 98% used [0x00000007b0000000, 0x00000007b6d33980, 0x00000007b6f00000)
from space 28352K, 64% used [0x00000007b8ab0000, 0x00000007b9cab280, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 314904K, used 255170K [0x00000007ba660000, 0x00000007cd9e6000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 79457K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:20.125+0800: 57.770: [GC2014-01-25T23:54:20.125+0800: 57.770: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 655608 bytes, 655608 total
- age 2: 3234976 bytes, 3890584 total
- age 3: 2974616 bytes, 6865200 total
: 130235K->10504K(142016K), 0.0080990 secs] 385405K->265674K(456920K), 0.0081770 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
Heap after GC invocations=78 (full 26):
par new generation total 142016K, used 10504K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 37% used [0x00000007b6f00000, 0x00000007b7942360, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 314904K, used 255170K [0x00000007ba660000, 0x00000007cd9e6000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 79457K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:20.133+0800: 57.778: [CMS-concurrent-reset-start]
2014-01-25T23:54:20.140+0800: 57.785: [CMS-concurrent-reset: 0.007/0.007 secs] [Times: user=0.02 sys=0.01, real=0.01 secs]
{Heap before GC invocations=78 (full 26):
par new generation total 142016K, used 119652K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 96% used [0x00000007b0000000, 0x00000007b6a96de0, 0x00000007b6f00000)
from space 28352K, 37% used [0x00000007b6f00000, 0x00000007b7942360, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 323004K, used 255170K [0x00000007ba660000, 0x00000007ce1cf000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80093K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:38.175+0800: 75.820: [GC2014-01-25T23:54:38.175+0800: 75.820: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1493688 bytes, 1493688 total
- age 2: 148328 bytes, 1642016 total
- age 3: 2595616 bytes, 4237632 total
- age 4: 2974504 bytes, 7212136 total
: 119652K->9415K(142016K), 0.0094480 secs] 374822K->264585K(465020K), 0.0095430 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=79 (full 26):
par new generation total 142016K, used 9415K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 33% used [0x00000007b8ab0000, 0x00000007b93e1c88, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 323004K, used 255170K [0x00000007ba660000, 0x00000007ce1cf000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80093K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:38.185+0800: 75.830: [GC [1 CMS-initial-mark: 255170K(323004K)] 264592K(465020K), 0.0059080 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
2014-01-25T23:54:38.191+0800: 75.836: [CMS-concurrent-mark-start]
2014-01-25T23:54:38.320+0800: 75.965: [CMS-concurrent-mark: 0.129/0.129 secs] [Times: user=0.25 sys=0.00, real=0.13 secs]
2014-01-25T23:54:38.320+0800: 75.965: [GC[YG occupancy: 9422 K (142016 K)]2014-01-25T23:54:38.320+0800: 75.965: [Rescan (parallel) , 0.0045680 secs]2014-01-25T23:54:38.325+0800: 75.969: [weak refs processing, 0.0003230 secs]2014-01-25T23:54:38.325+0800: 75.970: [class unloading, 0.0040270 secs]2014-01-25T23:54:38.329+0800: 75.974: [scrub symbol table, 0.0146610 secs]2014-01-25T23:54:38.344+0800: 75.988: [scrub string table, 0.0010400 secs] [1 CMS-remark: 255170K(323004K)] 264592K(465020K), 0.0265080 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
2014-01-25T23:54:38.347+0800: 75.991: [CMS-concurrent-sweep-start]
2014-01-25T23:54:38.412+0800: 76.057: [CMS-concurrent-sweep: 0.066/0.066 secs] [Times: user=0.07 sys=0.00, real=0.07 secs]
2014-01-25T23:54:38.412+0800: 76.057: [CMS-concurrent-reset-start]
{Heap before GC invocations=79 (full 27):
par new generation total 142016K, used 9491K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0013120, 0x00000007b6f00000)
from space 28352K, 33% used [0x00000007b8ab0000, 0x00000007b93e1c88, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 323004K, used 255113K [0x00000007ba660000, 0x00000007ce1cf000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80054K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:38.413+0800: 76.057: [GC2014-01-25T23:54:38.413+0800: 76.057: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 2: 986304 bytes, 986304 total
- age 3: 130400 bytes, 1116704 total
- age 4: 2559688 bytes, 3676392 total
- age 5: 2974504 bytes, 6650896 total
: 9491K->9588K(142016K), 0.0074750 secs] 264604K->264702K(465020K), 0.0075410 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=80 (full 27):
par new generation total 142016K, used 9588K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 33% used [0x00000007b6f00000, 0x00000007b785d310, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 323004K, used 255113K [0x00000007ba660000, 0x00000007ce1cf000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80054K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:38.422+0800: 76.067: [CMS-concurrent-reset: 0.002/0.010 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-25T23:54:38.423+0800: 76.067: [GC [1 CMS-initial-mark: 255113K(323004K)] 264763K(465020K), 0.0058860 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-01-25T23:54:38.429+0800: 76.073: [CMS-concurrent-mark-start]
2014-01-25T23:54:38.565+0800: 76.210: [CMS-concurrent-mark: 0.136/0.136 secs] [Times: user=0.28 sys=0.00, real=0.14 secs]
2014-01-25T23:54:38.565+0800: 76.210: [GC[YG occupancy: 9657 K (142016 K)]2014-01-25T23:54:38.565+0800: 76.210: [Rescan (parallel) , 0.0041050 secs]2014-01-25T23:54:38.569+0800: 76.214: [weak refs processing, 0.0001520 secs]2014-01-25T23:54:38.570+0800: 76.214: [class unloading, 0.0056180 secs]2014-01-25T23:54:38.575+0800: 76.220: [scrub symbol table, 0.0128460 secs]2014-01-25T23:54:38.588+0800: 76.233: [scrub string table, 0.0010620 secs] [1 CMS-remark: 255113K(323004K)] 264770K(465020K), 0.0256940 secs] [Times: user=0.03 sys=0.00, real=0.03 secs]
2014-01-25T23:54:38.591+0800: 76.236: [CMS-concurrent-sweep-start]
2014-01-25T23:54:38.658+0800: 76.303: [CMS-concurrent-sweep: 0.067/0.067 secs] [Times: user=0.07 sys=0.00, real=0.06 secs]
2014-01-25T23:54:38.658+0800: 76.303: [CMS-concurrent-reset-start]
2014-01-25T23:54:38.660+0800: 76.305: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
{Heap before GC invocations=80 (full 28):
par new generation total 142016K, used 123252K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 33% used [0x00000007b6f00000, 0x00000007b785d310, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 323004K, used 254771K [0x00000007ba660000, 0x00000007ce1cf000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 81193K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:39.484+0800: 77.129: [GC2014-01-25T23:54:39.484+0800: 77.129: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 6103976 bytes, 6103976 total
- age 3: 983056 bytes, 7087032 total
- age 4: 98760 bytes, 7185792 total
- age 5: 2559688 bytes, 9745480 total
- age 6: 2974504 bytes, 12719984 total
: 123252K->17155K(142016K), 0.0162980 secs] 378024K->271926K(465020K), 0.0163800 secs] [Times: user=0.03 sys=0.01, real=0.02 secs]
Heap after GC invocations=81 (full 28):
par new generation total 142016K, used 17155K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 60% used [0x00000007b8ab0000, 0x00000007b9b70c40, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 323004K, used 254771K [0x00000007ba660000, 0x00000007ce1cf000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 81193K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=81 (full 28):
par new generation total 142016K, used 130575K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6ec31e8, 0x00000007b6f00000)
from space 28352K, 60% used [0x00000007b8ab0000, 0x00000007b9b70c40, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 323004K, used 254771K [0x00000007ba660000, 0x00000007ce1cf000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 81893K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:41.301+0800: 78.945: [GC2014-01-25T23:54:41.301+0800: 78.945: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 10369960 bytes, 10369960 total
- age 2: 4191656 bytes, 14561616 total
- age 4: 983056 bytes, 15544672 total
- age 5: 98736 bytes, 15643408 total
- age 6: 2559648 bytes, 18203056 total
- age 7: 2974504 bytes, 21177560 total
: 130575K->25521K(142016K), 0.0196880 secs] 385347K->280293K(465020K), 0.0197820 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=82 (full 28):
par new generation total 142016K, used 25521K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 90% used [0x00000007b6f00000, 0x00000007b87ec790, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 323004K, used 254771K [0x00000007ba660000, 0x00000007ce1cf000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 81893K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=82 (full 28):
par new generation total 142016K, used 139185K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 90% used [0x00000007b6f00000, 0x00000007b87ec790, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 323004K, used 254771K [0x00000007ba660000, 0x00000007ce1cf000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 82127K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:43.281+0800: 80.925: [GC2014-01-25T23:54:43.281+0800: 80.926: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 21194616 bytes, 21194616 total
- age 2: 7836008 bytes, 29030624 total
: 139185K->28352K(142016K), 0.0517690 secs] 393957K->297982K(465020K), 0.0518410 secs] [Times: user=0.10 sys=0.01, real=0.05 secs]
Heap after GC invocations=83 (full 28):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 323004K, used 269630K [0x00000007ba660000, 0x00000007ce1cf000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 82127K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:43.333+0800: 80.978: [GC [1 CMS-initial-mark: 269630K(323004K)] 298391K(465020K), 0.0160920 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:54:43.349+0800: 80.994: [CMS-concurrent-mark-start]
2014-01-25T23:54:43.493+0800: 81.138: [CMS-concurrent-mark: 0.141/0.144 secs] [Times: user=0.47 sys=0.00, real=0.15 secs]
2014-01-25T23:54:43.494+0800: 81.139: [GC[YG occupancy: 36583 K (142016 K)]2014-01-25T23:54:43.494+0800: 81.139: [Rescan (parallel) , 0.0092790 secs]2014-01-25T23:54:43.504+0800: 81.148: [weak refs processing, 0.0001620 secs]2014-01-25T23:54:43.504+0800: 81.149: [scrub string table, 0.0015090 secs] [1 CMS-remark: 269630K(323004K)] 306213K(465020K), 0.0110380 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-01-25T23:54:43.506+0800: 81.150: [CMS-concurrent-sweep-start]
2014-01-25T23:54:43.561+0800: 81.206: [CMS-concurrent-sweep: 0.056/0.056 secs] [Times: user=0.14 sys=0.00, real=0.06 secs]
2014-01-25T23:54:43.561+0800: 81.206: [CMS-concurrent-reset-start]
2014-01-25T23:54:43.564+0800: 81.208: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=83 (full 29):
par new generation total 142016K, used 141715K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6eb4c70, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 340976K, used 269369K [0x00000007ba660000, 0x00000007cf35c000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 82164K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:45.615+0800: 83.260: [GC2014-01-25T23:54:45.616+0800: 83.260: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 26062376 bytes, 26062376 total
: 141715K->28352K(142016K), 0.0774880 secs] 411084K->327730K(482992K), 0.0775660 secs] [Times: user=0.14 sys=0.01, real=0.08 secs]
Heap after GC invocations=84 (full 29):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 340976K, used 299378K [0x00000007ba660000, 0x00000007cf35c000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 82164K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:45.693+0800: 83.338: [GC [1 CMS-initial-mark: 299378K(340976K)] 328136K(482992K), 0.0170150 secs] [Times: user=0.01 sys=0.00, real=0.02 secs]
2014-01-25T23:54:45.710+0800: 83.355: [CMS-concurrent-mark-start]
2014-01-25T23:54:45.888+0800: 83.533: [CMS-concurrent-mark: 0.175/0.178 secs] [Times: user=0.58 sys=0.00, real=0.17 secs]
2014-01-25T23:54:45.889+0800: 83.533: [GC[YG occupancy: 36682 K (142016 K)]2014-01-25T23:54:45.889+0800: 83.533: [Rescan (parallel) , 0.0091020 secs]2014-01-25T23:54:45.898+0800: 83.542: [weak refs processing, 0.0001210 secs]2014-01-25T23:54:45.898+0800: 83.543: [scrub string table, 0.0010630 secs] [1 CMS-remark: 299378K(340976K)] 336061K(482992K), 0.0103580 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-25T23:54:45.899+0800: 83.544: [CMS-concurrent-sweep-start]
2014-01-25T23:54:45.970+0800: 83.615: [CMS-concurrent-sweep: 0.071/0.071 secs] [Times: user=0.15 sys=0.00, real=0.08 secs]
2014-01-25T23:54:45.971+0800: 83.615: [CMS-concurrent-reset-start]
2014-01-25T23:54:45.973+0800: 83.618: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=84 (full 30):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 378836K, used 299278K [0x00000007ba660000, 0x00000007d1855000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 82219K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:47.843+0800: 85.487: [GC2014-01-25T23:54:47.843+0800: 85.488: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 20349840 bytes, 20349840 total
: 142016K->28352K(142016K), 0.1024590 secs] 441294K->357380K(520852K), 0.1025680 secs] [Times: user=0.17 sys=0.03, real=0.10 secs]
Heap after GC invocations=85 (full 30):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 378836K, used 329028K [0x00000007ba660000, 0x00000007d1855000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 82219K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:47.946+0800: 85.591: [GC [1 CMS-initial-mark: 329028K(378836K)] 357785K(520852K), 0.0142390 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
2014-01-25T23:54:47.960+0800: 85.605: [CMS-concurrent-mark-start]
2014-01-25T23:54:48.175+0800: 85.819: [CMS-concurrent-mark: 0.207/0.215 secs] [Times: user=0.86 sys=0.01, real=0.21 secs]
2014-01-25T23:54:48.176+0800: 85.820: [GC[YG occupancy: 38284 K (142016 K)]2014-01-25T23:54:48.176+0800: 85.820: [Rescan (parallel) , 0.0117270 secs]2014-01-25T23:54:48.187+0800: 85.832: [weak refs processing, 0.0001280 secs]2014-01-25T23:54:48.188+0800: 85.832: [scrub string table, 0.0013110 secs] [1 CMS-remark: 329028K(378836K)] 367312K(520852K), 0.0132700 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-01-25T23:54:48.189+0800: 85.834: [CMS-concurrent-sweep-start]
2014-01-25T23:54:48.271+0800: 85.916: [CMS-concurrent-sweep: 0.082/0.082 secs] [Times: user=0.18 sys=0.00, real=0.09 secs]
2014-01-25T23:54:48.271+0800: 85.916: [CMS-concurrent-reset-start]
2014-01-25T23:54:48.274+0800: 85.918: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=85 (full 31):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 416468K, used 329008K [0x00000007ba660000, 0x00000007d3d15000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 82644K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:50.785+0800: 88.430: [GC2014-01-25T23:54:50.785+0800: 88.430: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 15840752 bytes, 15840752 total
: 142016K->21665K(142016K), 0.0712420 secs] 471024K->370339K(558484K), 0.0713520 secs] [Times: user=0.11 sys=0.01, real=0.07 secs]
Heap after GC invocations=86 (full 31):
par new generation total 142016K, used 21665K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b8428510, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 416468K, used 348674K [0x00000007ba660000, 0x00000007d3d15000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 82644K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:50.857+0800: 88.502: [GC [1 CMS-initial-mark: 348674K(416468K)] 372709K(558484K), 0.0120030 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-25T23:54:50.869+0800: 88.514: [CMS-concurrent-mark-start]
2014-01-25T23:54:51.242+0800: 88.887: [CMS-concurrent-mark: 0.294/0.373 secs] [Times: user=1.34 sys=0.06, real=0.38 secs]
2014-01-25T23:54:51.245+0800: 88.889: [GC[YG occupancy: 67551 K (142016 K)]2014-01-25T23:54:51.245+0800: 88.889: [Rescan (parallel) , 0.0358460 secs]2014-01-25T23:54:51.281+0800: 88.925: [weak refs processing, 0.0001260 secs]2014-01-25T23:54:51.281+0800: 88.925: [scrub string table, 0.0010800 secs] [1 CMS-remark: 348674K(416468K)] 416225K(558484K), 0.0371340 secs] [Times: user=0.07 sys=0.00, real=0.04 secs]
2014-01-25T23:54:51.282+0800: 88.927: [CMS-concurrent-sweep-start]
2014-01-25T23:54:51.380+0800: 89.024: [CMS-concurrent-sweep: 0.097/0.098 secs] [Times: user=0.33 sys=0.00, real=0.10 secs]
2014-01-25T23:54:51.380+0800: 89.025: [CMS-concurrent-reset-start]
2014-01-25T23:54:51.382+0800: 89.027: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=86 (full 32):
par new generation total 142016K, used 112612K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 80% used [0x00000007b0000000, 0x00000007b58d0c90, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b8428510, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 440636K, used 348101K [0x00000007ba660000, 0x00000007d54af000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 83152K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:51.679+0800: 89.323: [GC2014-01-25T23:54:51.679+0800: 89.323: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 8408696 bytes, 8408696 total
: 112612K->16659K(142016K), 0.0509570 secs] 460713K->379667K(582652K), 0.0510330 secs] [Times: user=0.08 sys=0.01, real=0.06 secs]
Heap after GC invocations=87 (full 32):
par new generation total 142016K, used 16659K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 58% used [0x00000007b8ab0000, 0x00000007b9af4eb0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 440636K, used 363007K [0x00000007ba660000, 0x00000007d54af000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 83152K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:51.730+0800: 89.374: [GC [1 CMS-initial-mark: 363007K(440636K)] 379667K(582652K), 0.0078620 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-01-25T23:54:51.738+0800: 89.382: [CMS-concurrent-mark-start]
2014-01-25T23:54:51.991+0800: 89.635: [CMS-concurrent-mark: 0.242/0.253 secs] [Times: user=1.10 sys=0.02, real=0.26 secs]
2014-01-25T23:54:51.991+0800: 89.636: [GC[YG occupancy: 26103 K (142016 K)]2014-01-25T23:54:51.991+0800: 89.636: [Rescan (parallel) , 0.0064060 secs]2014-01-25T23:54:51.998+0800: 89.642: [weak refs processing, 0.0001230 secs]2014-01-25T23:54:51.998+0800: 89.642: [class unloading, 0.0055820 secs]2014-01-25T23:54:52.003+0800: 89.648: [scrub symbol table, 0.0141500 secs]2014-01-25T23:54:52.017+0800: 89.662: [scrub string table, 0.0011010 secs] [1 CMS-remark: 363007K(440636K)] 389111K(582652K), 0.0300160 secs] [Times: user=0.04 sys=0.00, real=0.03 secs]
2014-01-25T23:54:52.021+0800: 89.666: [CMS-concurrent-sweep-start]
2014-01-25T23:54:52.121+0800: 89.766: [CMS-concurrent-sweep: 0.100/0.100 secs] [Times: user=0.20 sys=0.00, real=0.10 secs]
2014-01-25T23:54:52.121+0800: 89.766: [CMS-concurrent-reset-start]
2014-01-25T23:54:52.124+0800: 89.768: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=87 (full 33):
par new generation total 142016K, used 130205K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6ee2738, 0x00000007b6f00000)
from space 28352K, 58% used [0x00000007b8ab0000, 0x00000007b9af4eb0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 459360K, used 362893K [0x00000007ba660000, 0x00000007d66f8000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 83312K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:52.484+0800: 90.129: [GC2014-01-25T23:54:52.485+0800: 90.129: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 15776456 bytes, 15776456 total
- age 2: 7198344 bytes, 22974800 total
: 130205K->26876K(142016K), 0.0271980 secs] 493098K->397962K(601376K), 0.0273040 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
Heap after GC invocations=88 (full 33):
par new generation total 142016K, used 26876K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 94% used [0x00000007b6f00000, 0x00000007b893f200, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 459360K, used 371085K [0x00000007ba660000, 0x00000007d66f8000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 83312K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=88 (full 33):
par new generation total 142016K, used 140540K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 94% used [0x00000007b6f00000, 0x00000007b893f200, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 459360K, used 371085K [0x00000007ba660000, 0x00000007d66f8000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 83322K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:52.810+0800: 90.454: [GC2014-01-25T23:54:52.810+0800: 90.454: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 14698576 bytes, 14698576 total
: 140540K->20228K(142016K), 0.0486160 secs] 511626K->404848K(601376K), 0.0487050 secs] [Times: user=0.08 sys=0.01, real=0.04 secs]
Heap after GC invocations=89 (full 33):
par new generation total 142016K, used 20228K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 71% used [0x00000007b8ab0000, 0x00000007b9e71250, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 459360K, used 384620K [0x00000007ba660000, 0x00000007d66f8000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 83322K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:52.859+0800: 90.504: [GC [1 CMS-initial-mark: 384620K(459360K)] 405856K(601376K), 0.0120840 secs] [Times: user=0.01 sys=0.00, real=0.02 secs]
2014-01-25T23:54:52.871+0800: 90.516: [CMS-concurrent-mark-start]
2014-01-25T23:54:53.095+0800: 90.740: [CMS-concurrent-mark: 0.220/0.224 secs] [Times: user=0.73 sys=0.00, real=0.22 secs]
2014-01-25T23:54:53.095+0800: 90.740: [GC[YG occupancy: 62575 K (142016 K)]2014-01-25T23:54:53.095+0800: 90.740: [Rescan (parallel) , 0.0117540 secs]2014-01-25T23:54:53.107+0800: 90.752: [weak refs processing, 0.0001630 secs]2014-01-25T23:54:53.107+0800: 90.752: [scrub string table, 0.0013260 secs] [1 CMS-remark: 384620K(459360K)] 447195K(601376K), 0.0133360 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-25T23:54:53.108+0800: 90.753: [CMS-concurrent-sweep-start]
2014-01-25T23:54:53.209+0800: 90.854: [CMS-concurrent-sweep: 0.099/0.100 secs] [Times: user=0.27 sys=0.01, real=0.10 secs]
2014-01-25T23:54:53.209+0800: 90.854: [CMS-concurrent-reset-start]
2014-01-25T23:54:53.212+0800: 90.857: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
{Heap before GC invocations=89 (full 34):
par new generation total 142016K, used 133892K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 71% used [0x00000007b8ab0000, 0x00000007b9e71250, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 484204K, used 382520K [0x00000007ba660000, 0x00000007d7f3b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 83406K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:53.578+0800: 91.222: [GC2014-01-25T23:54:53.578+0800: 91.222: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 14248392 bytes, 14248392 total
: 133892K->16733K(142016K), 0.0194340 secs] 516413K->404906K(626220K), 0.0195360 secs] [Times: user=0.04 sys=0.01, real=0.02 secs]
Heap after GC invocations=90 (full 34):
par new generation total 142016K, used 16733K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 59% used [0x00000007b6f00000, 0x00000007b7f57790, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 484204K, used 388172K [0x00000007ba660000, 0x00000007d7f3b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 83406K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=90 (full 34):
par new generation total 142016K, used 130397K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 59% used [0x00000007b6f00000, 0x00000007b7f57790, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 484204K, used 388172K [0x00000007ba660000, 0x00000007d7f3b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 83528K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:54.801+0800: 92.446: [GC2014-01-25T23:54:54.801+0800: 92.446: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 11862328 bytes, 11862328 total
- age 2: 13028768 bytes, 24891096 total
: 130397K->28352K(142016K), 0.0233390 secs] 518570K->416748K(626220K), 0.0234070 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=91 (full 34):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 484204K, used 388396K [0x00000007ba660000, 0x00000007d7f3b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 83528K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=91 (full 34):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 484204K, used 388396K [0x00000007ba660000, 0x00000007d7f3b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 83584K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:57.120+0800: 94.765: [GC2014-01-25T23:54:57.120+0800: 94.765: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 16744720 bytes, 16744720 total
- age 2: 10787896 bytes, 27532616 total
: 142016K->28352K(142016K), 0.0637830 secs] 530412K->435355K(626220K), 0.0638620 secs] [Times: user=0.11 sys=0.01, real=0.06 secs]
Heap after GC invocations=92 (full 34):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 484204K, used 407003K [0x00000007ba660000, 0x00000007d7f3b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 83584K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:57.185+0800: 94.829: [GC [1 CMS-initial-mark: 407003K(484204K)] 435762K(626220K), 0.0176720 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
2014-01-25T23:54:57.202+0800: 94.847: [CMS-concurrent-mark-start]
2014-01-25T23:54:57.428+0800: 95.073: [CMS-concurrent-mark: 0.222/0.226 secs] [Times: user=0.73 sys=0.01, real=0.22 secs]
2014-01-25T23:54:57.428+0800: 95.073: [GC[YG occupancy: 41297 K (142016 K)]2014-01-25T23:54:57.428+0800: 95.073: [Rescan (parallel) , 0.0122130 secs]2014-01-25T23:54:57.441+0800: 95.085: [weak refs processing, 0.0001360 secs]2014-01-25T23:54:57.441+0800: 95.086: [scrub string table, 0.0010670 secs] [1 CMS-remark: 407003K(484204K)] 448300K(626220K), 0.0134980 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
2014-01-25T23:54:57.442+0800: 95.087: [CMS-concurrent-sweep-start]
2014-01-25T23:54:57.537+0800: 95.181: [CMS-concurrent-sweep: 0.095/0.095 secs] [Times: user=0.24 sys=0.00, real=0.09 secs]
2014-01-25T23:54:57.537+0800: 95.182: [CMS-concurrent-reset-start]
2014-01-25T23:54:57.540+0800: 95.185: [CMS-concurrent-reset: 0.004/0.004 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
{Heap before GC invocations=92 (full 35):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 504372K, used 398453K [0x00000007ba660000, 0x00000007d92ed000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 84284K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:54:58.778+0800: 96.423: [GC2014-01-25T23:54:58.778+0800: 96.423: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 14052472 bytes, 14052472 total
: 142016K->23830K(142016K), 0.0761620 secs] 540469K->449465K(646388K), 0.0762400 secs] [Times: user=0.12 sys=0.01, real=0.08 secs]
Heap after GC invocations=93 (full 35):
par new generation total 142016K, used 23830K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 84% used [0x00000007b8ab0000, 0x00000007ba1f5af8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 504372K, used 425635K [0x00000007ba660000, 0x00000007d92ed000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 84284K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:54:58.854+0800: 96.499: [GC [1 CMS-initial-mark: 425635K(504372K)] 449465K(646388K), 0.0151910 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
2014-01-25T23:54:58.870+0800: 96.514: [CMS-concurrent-mark-start]
2014-01-25T23:54:59.210+0800: 96.855: [CMS-concurrent-mark: 0.284/0.340 secs] [Times: user=1.32 sys=0.03, real=0.34 secs]
2014-01-25T23:54:59.211+0800: 96.855: [GC[YG occupancy: 58663 K (142016 K)]2014-01-25T23:54:59.211+0800: 96.855: [Rescan (parallel) , 0.0267110 secs]2014-01-25T23:54:59.237+0800: 96.882: [weak refs processing, 0.0001950 secs]2014-01-25T23:54:59.237+0800: 96.882: [scrub string table, 0.0015460 secs] [1 CMS-remark: 425635K(504372K)] 484298K(646388K), 0.0285470 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
2014-01-25T23:54:59.239+0800: 96.884: [CMS-concurrent-sweep-start]
2014-01-25T23:54:59.357+0800: 97.002: [CMS-concurrent-sweep: 0.118/0.118 secs] [Times: user=0.42 sys=0.01, real=0.12 secs]
2014-01-25T23:54:59.358+0800: 97.002: [CMS-concurrent-reset-start]
2014-01-25T23:54:59.361+0800: 97.006: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
{Heap before GC invocations=93 (full 36):
par new generation total 142016K, used 137494K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 84% used [0x00000007b8ab0000, 0x00000007ba1f5b10, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 538660K, used 425539K [0x00000007ba660000, 0x00000007db469000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 84566K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:01.240+0800: 98.884: [GC2014-01-25T23:55:01.240+0800: 98.884: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 4504320 bytes, 4504320 total
- age 2: 13637392 bytes, 18141712 total
: 137494K->27614K(142016K), 0.0252150 secs] 563034K->453154K(680676K), 0.0252810 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=94 (full 36):
par new generation total 142016K, used 27614K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 97% used [0x00000007b6f00000, 0x00000007b89f7b30, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 538660K, used 425539K [0x00000007ba660000, 0x00000007db469000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 84566K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=94 (full 36):
par new generation total 142016K, used 141278K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 97% used [0x00000007b6f00000, 0x00000007b89f7b30, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 538660K, used 425539K [0x00000007ba660000, 0x00000007db469000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85107K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:02.405+0800: 100.049: [GC2014-01-25T23:55:02.405+0800: 100.049: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 16525184 bytes, 16525184 total
- age 2: 555504 bytes, 17080688 total
: 141278K->24277K(142016K), 1.1339380 secs] 566818K->463195K(680676K), 1.1340230 secs] [Times: user=0.21 sys=0.02, real=1.13 secs]
Heap after GC invocations=95 (full 36):
par new generation total 142016K, used 24277K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 85% used [0x00000007b8ab0000, 0x00000007ba2656f8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 538660K, used 438917K [0x00000007ba660000, 0x00000007db469000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85107K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=95 (full 36):
par new generation total 142016K, used 129194K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 92% used [0x00000007b0000000, 0x00000007b6675298, 0x00000007b6f00000)
from space 28352K, 85% used [0x00000007b8ab0000, 0x00000007ba2656f8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 538660K, used 438917K [0x00000007ba660000, 0x00000007db469000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85215K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:04.451+0800: 102.096: [GC2014-01-25T23:55:04.654+0800: 102.299: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 16182584 bytes, 16182584 total
: 129194K->24030K(142016K), 3.0666970 secs] 568111K->471932K(680676K), 3.2693030 secs] [Times: user=0.11 sys=0.02, real=3.27 secs]
Heap after GC invocations=96 (full 36):
par new generation total 142016K, used 24030K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 84% used [0x00000007b6f00000, 0x00000007b86779e8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 538660K, used 447901K [0x00000007ba660000, 0x00000007db469000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85215K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:55:07.723+0800: 105.368: [GC [1 CMS-initial-mark: 447901K(538660K)] 488725K(680676K), 0.0229460 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
2014-01-25T23:55:07.746+0800: 105.391: [CMS-concurrent-mark-start]
2014-01-25T23:55:08.003+0800: 105.648: [CMS-concurrent-mark: 0.250/0.257 secs] [Times: user=0.92 sys=0.01, real=0.26 secs]
2014-01-25T23:55:08.004+0800: 105.648: [GC[YG occupancy: 52565 K (142016 K)]2014-01-25T23:55:08.004+0800: 105.648: [Rescan (parallel) , 0.0150030 secs]2014-01-25T23:55:08.019+0800: 105.663: [weak refs processing, 0.0001900 secs]2014-01-25T23:55:08.019+0800: 105.664: [scrub string table, 0.0015610 secs] [1 CMS-remark: 447901K(538660K)] 500466K(680676K), 0.0168360 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
2014-01-25T23:55:08.021+0800: 105.665: [CMS-concurrent-sweep-start]
2014-01-25T23:55:08.139+0800: 105.784: [CMS-concurrent-sweep: 0.118/0.118 secs] [Times: user=0.39 sys=0.02, real=0.11 secs]
2014-01-25T23:55:08.139+0800: 105.784: [CMS-concurrent-reset-start]
2014-01-25T23:55:08.142+0800: 105.786: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
{Heap before GC invocations=96 (full 37):
par new generation total 142016K, used 137694K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 84% used [0x00000007b6f00000, 0x00000007b86779e8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 566336K, used 447405K [0x00000007ba660000, 0x00000007dcf70000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85317K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:09.868+0800: 107.513: [GC2014-01-25T23:55:09.868+0800: 107.513: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 24274240 bytes, 24274240 total
: 137694K->28352K(142016K), 0.0389930 secs] 585099K->476558K(708352K), 0.0390600 secs] [Times: user=0.08 sys=0.00, real=0.04 secs]
Heap after GC invocations=97 (full 37):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 566336K, used 448206K [0x00000007ba660000, 0x00000007dcf70000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85317K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=97 (full 37):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 566336K, used 448206K [0x00000007ba660000, 0x00000007dcf70000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85337K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:12.628+0800: 110.273: [GC2014-01-25T23:55:12.628+0800: 110.273: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 29032328 bytes, 29032328 total
: 142016K->28352K(142016K), 0.0500970 secs] 590222K->479654K(708352K), 0.0501990 secs] [Times: user=0.10 sys=0.00, real=0.05 secs]
Heap after GC invocations=98 (full 37):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 566336K, used 451302K [0x00000007ba660000, 0x00000007dcf70000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85337K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=98 (full 37):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 566336K, used 451302K [0x00000007ba660000, 0x00000007dcf70000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85359K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:15.135+0800: 112.780: [GC2014-01-25T23:55:15.135+0800: 112.780: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 29032304 bytes, 29032304 total
: 142016K->28352K(142016K), 0.0878470 secs] 593318K->492390K(708352K), 0.0879290 secs] [Times: user=0.15 sys=0.01, real=0.09 secs]
Heap after GC invocations=99 (full 37):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 566336K, used 464038K [0x00000007ba660000, 0x00000007dcf70000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85359K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=99 (full 37):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 566336K, used 464038K [0x00000007ba660000, 0x00000007dcf70000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85376K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:17.684+0800: 115.328: [GC2014-01-25T23:55:17.684+0800: 115.328: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 29032360 bytes, 29032360 total
: 142016K->28352K(142016K), 0.5424030 secs] 606054K->510177K(708352K), 0.5424990 secs] [Times: user=0.18 sys=0.01, real=0.54 secs]
Heap after GC invocations=100 (full 37):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 566336K, used 481825K [0x00000007ba660000, 0x00000007dcf70000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85376K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:55:18.226+0800: 115.871: [GC [1 CMS-initial-mark: 481825K(566336K)] 511938K(708352K), 0.0399440 secs] [Times: user=0.04 sys=0.01, real=0.04 secs]
2014-01-25T23:55:18.267+0800: 115.911: [CMS-concurrent-mark-start]
2014-01-25T23:55:18.573+0800: 116.218: [CMS-concurrent-mark: 0.303/0.307 secs] [Times: user=1.09 sys=0.02, real=0.31 secs]
2014-01-25T23:55:18.573+0800: 116.218: [GC[YG occupancy: 39598 K (142016 K)]2014-01-25T23:55:18.573+0800: 116.218: [Rescan (parallel) , 0.0210660 secs]2014-01-25T23:55:18.595+0800: 116.239: [weak refs processing, 0.0001400 secs]2014-01-25T23:55:18.595+0800: 116.239: [scrub string table, 0.0011390 secs] [1 CMS-remark: 481825K(566336K)] 521424K(708352K), 0.0224290 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
2014-01-25T23:55:18.596+0800: 116.241: [CMS-concurrent-sweep-start]
2014-01-25T23:55:18.720+0800: 116.364: [CMS-concurrent-sweep: 0.124/0.124 secs] [Times: user=0.36 sys=0.01, real=0.13 secs]
2014-01-25T23:55:18.720+0800: 116.365: [CMS-concurrent-reset-start]
2014-01-25T23:55:18.723+0800: 116.367: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=100 (full 38):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 604924K, used 477888K [0x00000007ba660000, 0x00000007df51f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85391K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:21.256+0800: 118.901: [GC2014-01-25T23:55:21.256+0800: 118.901: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 25511472 bytes, 25511472 total
: 142016K->28352K(142016K), 2.1593040 secs] 619904K->536446K(746940K), 2.1593820 secs] [Times: user=0.42 sys=0.02, real=2.16 secs]
Heap after GC invocations=101 (full 38):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 604924K, used 508094K [0x00000007ba660000, 0x00000007df51f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85391K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:55:23.416+0800: 121.061: [GC [1 CMS-initial-mark: 508094K(604924K)] 537492K(746940K), 0.5274660 secs] [Times: user=0.04 sys=0.00, real=0.53 secs]
2014-01-25T23:55:23.944+0800: 121.589: [CMS-concurrent-mark-start]
2014-01-25T23:55:24.418+0800: 122.063: [CMS-concurrent-mark: 0.467/0.474 secs] [Times: user=1.48 sys=0.04, real=0.47 secs]
2014-01-25T23:55:24.420+0800: 122.064: [GC[YG occupancy: 43044 K (142016 K)]2014-01-25T23:55:24.420+0800: 122.064: [Rescan (parallel) , 0.0201330 secs]2014-01-25T23:55:24.440+0800: 122.085: [weak refs processing, 0.0001740 secs]2014-01-25T23:55:24.440+0800: 122.085: [scrub string table, 0.0013490 secs] [1 CMS-remark: 508094K(604924K)] 551138K(746940K), 0.0217550 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
2014-01-25T23:55:24.441+0800: 122.086: [CMS-concurrent-sweep-start]
2014-01-25T23:55:24.604+0800: 122.248: [CMS-concurrent-sweep: 0.162/0.162 secs] [Times: user=0.49 sys=0.01, real=0.16 secs]
2014-01-25T23:55:24.604+0800: 122.249: [CMS-concurrent-reset-start]
2014-01-25T23:55:24.606+0800: 122.251: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=101 (full 39):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 629924K, used 497639K [0x00000007ba660000, 0x00000007e0d89000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85417K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:27.002+0800: 124.647: [GC2014-01-25T23:55:27.002+0800: 124.647: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 29032376 bytes, 29032376 total
: 142016K->28352K(142016K), 0.3564710 secs] 639655K->548179K(771940K), 0.3565440 secs] [Times: user=0.21 sys=0.01, real=0.35 secs]
Heap after GC invocations=102 (full 39):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 629924K, used 519827K [0x00000007ba660000, 0x00000007e0d89000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85417K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:55:27.359+0800: 125.004: [GC [1 CMS-initial-mark: 519827K(629924K)] 549237K(771940K), 0.0364100 secs] [Times: user=0.03 sys=0.00, real=0.04 secs]
2014-01-25T23:55:27.396+0800: 125.040: [CMS-concurrent-mark-start]
2014-01-25T23:55:27.952+0800: 125.597: [CMS-concurrent-mark: 0.550/0.557 secs] [Times: user=1.35 sys=0.07, real=0.56 secs]
2014-01-25T23:55:27.953+0800: 125.597: [GC[YG occupancy: 40685 K (142016 K)]2014-01-25T23:55:27.953+0800: 125.597: [Rescan (parallel) , 0.0212370 secs]2014-01-25T23:55:27.974+0800: 125.619: [weak refs processing, 0.0001340 secs]2014-01-25T23:55:27.974+0800: 125.619: [scrub string table, 0.0012160 secs] [1 CMS-remark: 519827K(629924K)] 560513K(771940K), 0.0226740 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
2014-01-25T23:55:27.975+0800: 125.620: [CMS-concurrent-sweep-start]
2014-01-25T23:55:28.146+0800: 125.791: [CMS-concurrent-sweep: 0.170/0.170 secs] [Times: user=0.43 sys=0.01, real=0.17 secs]
2014-01-25T23:55:28.146+0800: 125.791: [CMS-concurrent-reset-start]
2014-01-25T23:55:28.149+0800: 125.794: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=102 (full 40):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 629924K, used 494628K [0x00000007ba660000, 0x00000007e0d89000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85445K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:30.709+0800: 128.354: [GC2014-01-25T23:55:30.709+0800: 128.354: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 29032376 bytes, 29032376 total
: 142016K->28352K(142016K), 0.6548300 secs] 636644K->574174K(771940K), 0.6549200 secs] [Times: user=0.34 sys=0.03, real=0.66 secs]
Heap after GC invocations=103 (full 40):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 629924K, used 545822K [0x00000007ba660000, 0x00000007e0d89000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85445K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:55:31.364+0800: 129.009: [GC [1 CMS-initial-mark: 545822K(629924K)] 574178K(771940K), 0.0375470 secs] [Times: user=0.03 sys=0.00, real=0.04 secs]
2014-01-25T23:55:31.402+0800: 129.047: [CMS-concurrent-mark-start]
2014-01-25T23:55:31.805+0800: 129.450: [CMS-concurrent-mark: 0.395/0.403 secs] [Times: user=1.71 sys=0.06, real=0.40 secs]
2014-01-25T23:55:31.806+0800: 129.450: [GC[YG occupancy: 44982 K (142016 K)]2014-01-25T23:55:31.806+0800: 129.450: [Rescan (parallel) , 0.0268020 secs]2014-01-25T23:55:31.833+0800: 129.477: [weak refs processing, 0.0001370 secs]2014-01-25T23:55:31.833+0800: 129.477: [scrub string table, 0.0010880 secs] [1 CMS-remark: 545822K(629924K)] 590804K(771940K), 0.0281040 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
2014-01-25T23:55:31.834+0800: 129.479: [CMS-concurrent-sweep-start]
2014-01-25T23:55:32.024+0800: 129.668: [CMS-concurrent-sweep: 0.190/0.190 secs] [Times: user=0.56 sys=0.02, real=0.19 secs]
2014-01-25T23:55:32.024+0800: 129.669: [CMS-concurrent-reset-start]
2014-01-25T23:55:32.027+0800: 129.672: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=103 (full 41):
par new generation total 142016K, used 133694K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 92% used [0x00000007b0000000, 0x00000007b66dfba0, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 668920K, used 528443K [0x00000007ba660000, 0x00000007e339e000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85548K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:33.615+0800: 131.260: [GC2014-01-25T23:55:33.615+0800: 131.260: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 22175144 bytes, 22175144 total
: 133694K->28258K(142016K), 0.1122940 secs] 662138K->585414K(810936K), 0.1123680 secs] [Times: user=0.20 sys=0.00, real=0.11 secs]
Heap after GC invocations=104 (full 41):
par new generation total 142016K, used 28258K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 99% used [0x00000007b6f00000, 0x00000007b8a98bd0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 668920K, used 557155K [0x00000007ba660000, 0x00000007e339e000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85548K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:55:33.730+0800: 131.375: [GC [1 CMS-initial-mark: 557155K(668920K)] 601798K(810936K), 0.0283290 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
2014-01-25T23:55:33.759+0800: 131.404: [CMS-concurrent-mark-start]
{Heap before GC invocations=104 (full 42):
par new generation total 142016K, used 141453K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6e8aab0, 0x00000007b6f00000)
from space 28352K, 99% used [0x00000007b6f00000, 0x00000007b8a98bd0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 668920K, used 557155K [0x00000007ba660000, 0x00000007e339e000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85622K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:34.241+0800: 131.886: [GC2014-01-25T23:55:34.241+0800: 131.886: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1070704 bytes, 1070704 total
: 141453K->23261K(142016K), 0.2315130 secs] 698609K->602146K(810936K), 0.2315970 secs] [Times: user=0.16 sys=0.02, real=0.23 secs]
Heap after GC invocations=105 (full 42):
par new generation total 142016K, used 23261K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 82% used [0x00000007b8ab0000, 0x00000007ba167710, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 668920K, used 578884K [0x00000007ba660000, 0x00000007e339e000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85622K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:55:34.539+0800: 132.184: [CMS-concurrent-mark: 0.479/0.780 secs] [Times: user=3.07 sys=0.14, real=0.78 secs]
2014-01-25T23:55:34.539+0800: 132.184: [GC[YG occupancy: 42923 K (142016 K)]2014-01-25T23:55:34.539+0800: 132.184: [Rescan (parallel) , 0.0271780 secs]2014-01-25T23:55:34.566+0800: 132.211: [weak refs processing, 0.0001680 secs]2014-01-25T23:55:34.567+0800: 132.211: [scrub string table, 0.0012330 secs] [1 CMS-remark: 578884K(668920K)] 621807K(810936K), 0.0286730 secs] [Times: user=0.06 sys=0.00, real=0.03 secs]
2014-01-25T23:55:34.568+0800: 132.213: [CMS-concurrent-sweep-start]
2014-01-25T23:55:34.800+0800: 132.445: [CMS-concurrent-sweep: 0.232/0.232 secs] [Times: user=0.89 sys=0.02, real=0.24 secs]
2014-01-25T23:55:34.800+0800: 132.445: [CMS-concurrent-reset-start]
2014-01-25T23:55:34.803+0800: 132.448: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=105 (full 42):
par new generation total 142016K, used 136925K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 82% used [0x00000007b8ab0000, 0x00000007ba167710, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 547882K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85835K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:35.822+0800: 133.467: [GC2014-01-25T23:55:35.822+0800: 133.467: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4180136 bytes, 4180136 total
- age 2: 901776 bytes, 5081912 total
: 136925K->9257K(142016K), 0.1778850 secs] 684808K->557139K(835540K), 0.1779570 secs] [Times: user=0.18 sys=0.01, real=0.18 secs]
Heap after GC invocations=106 (full 42):
par new generation total 142016K, used 9257K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 32% used [0x00000007b6f00000, 0x00000007b780a510, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 547882K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85835K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=106 (full 42):
par new generation total 142016K, used 122921K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 32% used [0x00000007b6f00000, 0x00000007b780a510, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 547882K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85981K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:37.682+0800: 135.327: [GC2014-01-25T23:55:37.682+0800: 135.327: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 9013912 bytes, 9013912 total
- age 2: 3430888 bytes, 12444800 total
- age 3: 899936 bytes, 13344736 total
: 122921K->14791K(142016K), 0.0190260 secs] 670803K->562673K(835540K), 0.0190980 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=107 (full 42):
par new generation total 142016K, used 14791K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 52% used [0x00000007b8ab0000, 0x00000007b9921d80, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 547882K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85981K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=107 (full 42):
par new generation total 142016K, used 128455K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 52% used [0x00000007b8ab0000, 0x00000007b9921d80, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 547882K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86094K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:39.798+0800: 137.443: [GC2014-01-25T23:55:39.798+0800: 137.443: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 16343544 bytes, 16343544 total
- age 2: 7519760 bytes, 23863304 total
- age 3: 3167576 bytes, 27030880 total
- age 4: 624648 bytes, 27655528 total
: 128455K->28352K(142016K), 0.0352100 secs] 676337K->579495K(835540K), 0.0352900 secs] [Times: user=0.08 sys=0.00, real=0.04 secs]
Heap after GC invocations=108 (full 42):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 551143K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86094K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=108 (full 42):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 551143K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86138K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:41.252+0800: 138.896: [GC2014-01-25T23:55:41.252+0800: 138.896: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 10356904 bytes, 10356904 total
: 142016K->22900K(142016K), 1.6196800 secs] 693159K->601280K(835540K), 1.6197790 secs] [Times: user=0.08 sys=0.02, real=1.62 secs]
Heap after GC invocations=109 (full 42):
par new generation total 142016K, used 22900K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 80% used [0x00000007b8ab0000, 0x00000007ba10d3f0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 578379K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86138K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:55:42.872+0800: 140.517: [GC [1 CMS-initial-mark: 578379K(693524K)] 603042K(835540K), 0.0089480 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:55:42.881+0800: 140.526: [CMS-concurrent-mark-start]
2014-01-25T23:55:43.548+0800: 141.193: [CMS-concurrent-mark: 0.661/0.667 secs] [Times: user=1.50 sys=0.04, real=0.66 secs]
2014-01-25T23:55:43.548+0800: 141.193: [GC[YG occupancy: 73684 K (142016 K)]2014-01-25T23:55:43.548+0800: 141.193: [Rescan (parallel) , 0.0238040 secs]2014-01-25T23:55:43.572+0800: 141.217: [weak refs processing, 0.0001490 secs]2014-01-25T23:55:43.572+0800: 141.217: [scrub string table, 0.0011090 secs] [1 CMS-remark: 578379K(693524K)] 652063K(835540K), 0.0251400 secs] [Times: user=0.04 sys=0.00, real=0.03 secs]
2014-01-25T23:55:43.574+0800: 141.218: [CMS-concurrent-sweep-start]
2014-01-25T23:55:43.796+0800: 141.441: [CMS-concurrent-sweep: 0.222/0.222 secs] [Times: user=0.56 sys=0.00, real=0.22 secs]
2014-01-25T23:55:43.796+0800: 141.441: [CMS-concurrent-reset-start]
2014-01-25T23:55:43.799+0800: 141.443: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=109 (full 43):
par new generation total 142016K, used 136508K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6ef1fd0, 0x00000007b6f00000)
from space 28352K, 80% used [0x00000007b8ab0000, 0x00000007ba10d3f0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 501936K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86145K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:44.415+0800: 142.059: [GC2014-01-25T23:55:44.415+0800: 142.059: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 15897864 bytes, 15897864 total
- age 2: 10191872 bytes, 26089736 total
: 136508K->28352K(142016K), 0.0310980 secs] 638445K->530575K(835540K), 0.0311640 secs] [Times: user=0.06 sys=0.00, real=0.03 secs]
Heap after GC invocations=110 (full 43):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 502223K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86145K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=110 (full 43):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 502223K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86181K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:46.470+0800: 144.115: [GC2014-01-25T23:55:46.470+0800: 144.115: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 16759368 bytes, 16759368 total
: 142016K->28352K(142016K), 0.0568950 secs] 644239K->556422K(835540K), 0.0569940 secs] [Times: user=0.10 sys=0.00, real=0.05 secs]
Heap after GC invocations=111 (full 43):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 528070K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86181K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=111 (full 43):
par new generation total 142016K, used 141993K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6efa568, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 528070K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86194K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:48.155+0800: 145.800: [GC2014-01-25T23:55:48.156+0800: 145.800: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 8702232 bytes, 8702232 total
: 141993K->17277K(142016K), 0.0447120 secs] 670064K->561603K(835540K), 0.0447950 secs] [Times: user=0.08 sys=0.01, real=0.05 secs]
Heap after GC invocations=112 (full 43):
par new generation total 142016K, used 17277K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 60% used [0x00000007b6f00000, 0x00000007b7fdf580, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 544325K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86194K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=112 (full 43):
par new generation total 142016K, used 130920K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6efaab0, 0x00000007b6f00000)
from space 28352K, 60% used [0x00000007b6f00000, 0x00000007b7fdf580, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 544325K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86237K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:50.658+0800: 148.302: [GC2014-01-25T23:55:50.658+0800: 148.302: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 17667968 bytes, 17667968 total
- age 2: 8590456 bytes, 26258424 total
: 130920K->28352K(142016K), 0.3595540 secs] 675246K->573154K(835540K), 0.3596290 secs] [Times: user=0.07 sys=0.00, real=0.36 secs]
Heap after GC invocations=113 (full 43):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 544802K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86237K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=113 (full 43):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 544802K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86274K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:54.018+0800: 151.663: [GC2014-01-25T23:55:54.018+0800: 151.663: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 14983560 bytes, 14983560 total
: 142016K->28352K(142016K), 1.4584530 secs] 686818K->598008K(835540K), 1.4585410 secs] [Times: user=0.13 sys=0.02, real=1.46 secs]
Heap after GC invocations=114 (full 43):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 569656K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86274K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:55:55.477+0800: 153.122: [GC [1 CMS-initial-mark: 569656K(693524K)] 599543K(835540K), 0.0125290 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
2014-01-25T23:55:55.490+0800: 153.134: [CMS-concurrent-mark-start]
2014-01-25T23:55:56.262+0800: 153.907: [CMS-concurrent-mark: 0.768/0.772 secs] [Times: user=1.72 sys=0.06, real=0.77 secs]
2014-01-25T23:55:56.326+0800: 153.970: [GC[YG occupancy: 75427 K (142016 K)]2014-01-25T23:55:56.326+0800: 153.970: [Rescan (parallel) , 0.0189190 secs]2014-01-25T23:55:56.345+0800: 153.989: [weak refs processing, 0.0001400 secs]2014-01-25T23:55:56.345+0800: 153.989: [scrub string table, 0.0011110 secs] [1 CMS-remark: 569656K(693524K)] 645083K(835540K), 0.0202580 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
2014-01-25T23:55:56.346+0800: 153.991: [CMS-concurrent-sweep-start]
2014-01-25T23:55:56.579+0800: 154.223: [CMS-concurrent-sweep: 0.233/0.233 secs] [Times: user=0.56 sys=0.02, real=0.23 secs]
2014-01-25T23:55:56.705+0800: 154.349: [CMS-concurrent-reset-start]
2014-01-25T23:55:56.709+0800: 154.353: [CMS-concurrent-reset: 0.004/0.004 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=114 (full 44):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 527987K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86326K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:55:59.080+0800: 156.725: [GC2014-01-25T23:55:59.081+0800: 156.725: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 10119376 bytes, 10119376 total
: 142016K->16028K(142016K), 0.0447870 secs] 670003K->558416K(835540K), 0.0448750 secs] [Times: user=0.08 sys=0.00, real=0.04 secs]
Heap after GC invocations=115 (full 44):
par new generation total 142016K, used 16028K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 56% used [0x00000007b8ab0000, 0x00000007b9a57288, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 542387K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86326K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=115 (full 44):
par new generation total 142016K, used 129692K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 56% used [0x00000007b8ab0000, 0x00000007b9a57288, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 542387K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86412K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:03.163+0800: 160.808: [GC2014-01-25T23:56:03.163+0800: 160.808: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3180424 bytes, 3180424 total
- age 2: 9948024 bytes, 13128448 total
: 129692K->15177K(142016K), 0.2661200 secs] 672080K->557565K(835540K), 0.2662140 secs] [Times: user=0.05 sys=0.01, real=0.27 secs]
Heap after GC invocations=116 (full 44):
par new generation total 142016K, used 15177K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 53% used [0x00000007b6f00000, 0x00000007b7dd2478, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 542387K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86412K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=116 (full 44):
par new generation total 142016K, used 128857K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 53% used [0x00000007b6f00000, 0x00000007b7dd6488, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 542387K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86429K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:06.572+0800: 164.217: [GC2014-01-25T23:56:06.572+0800: 164.217: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1406608 bytes, 1406608 total
- age 2: 494856 bytes, 1901464 total
- age 3: 9936224 bytes, 11837688 total
: 128857K->18176K(142016K), 0.0184980 secs] 671245K->560564K(835540K), 0.0185870 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=117 (full 44):
par new generation total 142016K, used 18176K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 64% used [0x00000007b8ab0000, 0x00000007b9c70398, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 542387K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86429K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=117 (full 44):
par new generation total 142016K, used 131840K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 64% used [0x00000007b8ab0000, 0x00000007b9c70398, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 542387K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86440K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:10.214+0800: 167.859: [GC2014-01-25T23:56:10.214+0800: 167.859: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 890688 bytes, 890688 total
- age 2: 883112 bytes, 1773800 total
- age 3: 472184 bytes, 2245984 total
- age 4: 9338416 bytes, 11584400 total
: 131840K->17526K(142016K), 0.0188210 secs] 674228K->559914K(835540K), 0.0189040 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=118 (full 44):
par new generation total 142016K, used 17526K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 61% used [0x00000007b6f00000, 0x00000007b801d928, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 542387K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86440K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=118 (full 44):
par new generation total 142016K, used 131190K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 61% used [0x00000007b6f00000, 0x00000007b801d928, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 542387K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86447K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:12.724+0800: 170.368: [GC2014-01-25T23:56:12.724+0800: 170.368: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2456776 bytes, 2456776 total
- age 2: 68440 bytes, 2525216 total
- age 3: 146064 bytes, 2671280 total
- age 4: 452872 bytes, 3124152 total
- age 5: 8925456 bytes, 12049608 total
: 131190K->17078K(142016K), 0.0194810 secs] 673578K->559466K(835540K), 0.2543440 secs] [Times: user=0.04 sys=0.01, real=0.25 secs]
Heap after GC invocations=119 (full 44):
par new generation total 142016K, used 17078K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 60% used [0x00000007b8ab0000, 0x00000007b9b5da40, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 542387K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86447K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=119 (full 44):
par new generation total 142016K, used 130742K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 60% used [0x00000007b8ab0000, 0x00000007b9b5da40, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 542387K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86452K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:15.800+0800: 173.445: [GC2014-01-25T23:56:15.800+0800: 173.445: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 8019072 bytes, 8019072 total
- age 2: 522456 bytes, 8541528 total
- age 3: 66592 bytes, 8608120 total
- age 4: 62440 bytes, 8670560 total
- age 5: 443936 bytes, 9114496 total
- age 6: 8925192 bytes, 18039688 total
: 130742K->23305K(142016K), 0.0657610 secs] 673130K->565693K(835540K), 0.0658540 secs] [Times: user=0.06 sys=0.00, real=0.06 secs]
Heap after GC invocations=120 (full 44):
par new generation total 142016K, used 23305K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 82% used [0x00000007b6f00000, 0x00000007b85c26c0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 542387K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86452K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=120 (full 44):
par new generation total 142016K, used 123599K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 88% used [0x00000007b0000000, 0x00000007b61f1868, 0x00000007b6f00000)
from space 28352K, 82% used [0x00000007b6f00000, 0x00000007b85c26c0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 542387K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86455K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:19.009+0800: 176.654: [GC2014-01-25T23:56:19.009+0800: 176.654: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1467104 bytes, 1467104 total
- age 2: 3236080 bytes, 4703184 total
- age 3: 494880 bytes, 5198064 total
- age 4: 66360 bytes, 5264424 total
- age 5: 61784 bytes, 5326208 total
- age 6: 435008 bytes, 5761216 total
: 123599K->16119K(142016K), 0.0348100 secs] 665987K->566674K(835540K), 0.0349120 secs] [Times: user=0.04 sys=0.00, real=0.04 secs]
Heap after GC invocations=121 (full 44):
par new generation total 142016K, used 16119K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 56% used [0x00000007b8ab0000, 0x00000007b9a6dfd8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 550554K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86455K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=121 (full 44):
par new generation total 142016K, used 121076K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 92% used [0x00000007b0000000, 0x00000007b667f380, 0x00000007b6f00000)
from space 28352K, 56% used [0x00000007b8ab0000, 0x00000007b9a6dfd8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 550554K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86466K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:21.813+0800: 179.458: [GC2014-01-25T23:56:21.813+0800: 179.458: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2020192 bytes, 2020192 total
- age 2: 827936 bytes, 2848128 total
- age 3: 2026328 bytes, 4874456 total
- age 4: 493624 bytes, 5368080 total
- age 5: 65336 bytes, 5433416 total
- age 6: 61736 bytes, 5495152 total
- age 7: 430512 bytes, 5925664 total
: 121076K->8168K(142016K), 0.0123960 secs] 671631K->558723K(835540K), 0.0124660 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=122 (full 44):
par new generation total 142016K, used 8168K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 28% used [0x00000007b6f00000, 0x00000007b76fa308, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 550554K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86466K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=122 (full 44):
par new generation total 142016K, used 106541K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 86% used [0x00000007b0000000, 0x00000007b6011170, 0x00000007b6f00000)
from space 28352K, 28% used [0x00000007b6f00000, 0x00000007b76fa308, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 550554K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86474K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:23.536+0800: 181.180: [GC2014-01-25T23:56:23.536+0800: 181.180: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 5244296 bytes, 5244296 total
- age 2: 1009168 bytes, 6253464 total
- age 3: 657728 bytes, 6911192 total
- age 4: 1915552 bytes, 8826744 total
- age 5: 492520 bytes, 9319264 total
- age 6: 64312 bytes, 9383576 total
- age 7: 61376 bytes, 9444952 total
- age 8: 426576 bytes, 9871528 total
: 106541K->11361K(142016K), 0.0135440 secs] 657095K->561915K(835540K), 0.0136270 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=123 (full 44):
par new generation total 142016K, used 11361K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 40% used [0x00000007b8ab0000, 0x00000007b95c8590, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 550554K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86474K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=123 (full 44):
par new generation total 142016K, used 125025K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 40% used [0x00000007b8ab0000, 0x00000007b95c8590, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 550554K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86482K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:26.024+0800: 183.669: [GC2014-01-25T23:56:26.024+0800: 183.669: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2694384 bytes, 2694384 total
- age 2: 5066768 bytes, 7761152 total
- age 3: 953984 bytes, 8715136 total
- age 4: 507072 bytes, 9222208 total
- age 5: 1642792 bytes, 10865000 total
- age 6: 489648 bytes, 11354648 total
- age 7: 62264 bytes, 11416912 total
- age 8: 60656 bytes, 11477568 total
- age 9: 419776 bytes, 11897344 total
: 125025K->17254K(142016K), 0.0169310 secs] 675579K->567809K(835540K), 0.0170520 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=124 (full 44):
par new generation total 142016K, used 17254K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 60% used [0x00000007b6f00000, 0x00000007b7fd9a08, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 550554K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86482K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=124 (full 44):
par new generation total 142016K, used 130918K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 60% used [0x00000007b6f00000, 0x00000007b7fd9a08, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 550554K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86492K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:29.384+0800: 187.029: [GC2014-01-25T23:56:29.384+0800: 187.029: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 7218328 bytes, 7218328 total
- age 2: 2533096 bytes, 9751424 total
- age 3: 5045392 bytes, 14796816 total
- age 4: 927224 bytes, 15724040 total
- age 5: 323904 bytes, 16047944 total
- age 6: 1528832 bytes, 17576776 total
- age 7: 487008 bytes, 18063784 total
- age 8: 60152 bytes, 18123936 total
- age 9: 59552 bytes, 18183488 total
- age 10: 392080 bytes, 18575568 total
: 130918K->21696K(142016K), 0.0212920 secs] 681473K->572251K(835540K), 0.0213690 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=125 (full 44):
par new generation total 142016K, used 21696K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b8ab0000, 0x00000007b9fe0318, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 550554K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86492K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=125 (full 44):
par new generation total 142016K, used 135360K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b8ab0000, 0x00000007b9fe0318, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 550554K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86500K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:32.183+0800: 189.828: [GC2014-01-25T23:56:32.184+0800: 189.828: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 8628112 bytes, 8628112 total
- age 2: 6706088 bytes, 15334200 total
- age 3: 2529400 bytes, 17863600 total
: 135360K->24436K(142016K), 0.0285010 secs] 685915K->583023K(835540K), 0.0286110 secs] [Times: user=0.06 sys=0.00, real=0.03 secs]
Heap after GC invocations=126 (full 44):
par new generation total 142016K, used 24436K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 86% used [0x00000007b6f00000, 0x00000007b86dd0b0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 558587K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86500K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=126 (full 44):
par new generation total 142016K, used 138100K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 86% used [0x00000007b6f00000, 0x00000007b86dd0b0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 558587K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86509K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:35.286+0800: 192.930: [GC2014-01-25T23:56:35.286+0800: 192.930: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4625256 bytes, 4625256 total
- age 2: 8184624 bytes, 12809880 total
: 138100K->25713K(142016K), 0.0543890 secs] 696687K->593071K(835540K), 0.0545030 secs] [Times: user=0.08 sys=0.01, real=0.06 secs]
Heap after GC invocations=127 (full 44):
par new generation total 142016K, used 25713K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 90% used [0x00000007b8ab0000, 0x00000007ba3cc5b0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 567358K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86509K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=127 (full 44):
par new generation total 142016K, used 139377K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 90% used [0x00000007b8ab0000, 0x00000007ba3cc5b0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 567358K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86535K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:38.521+0800: 196.165: [GC2014-01-25T23:56:38.521+0800: 196.166: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 9799232 bytes, 9799232 total
- age 2: 3786552 bytes, 13585784 total
- age 3: 7999840 bytes, 21585624 total
: 139377K->22412K(142016K), 0.0691020 secs] 706735K->589771K(835540K), 0.0691980 secs] [Times: user=0.05 sys=0.00, real=0.07 secs]
Heap after GC invocations=128 (full 44):
par new generation total 142016K, used 22412K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 79% used [0x00000007b6f00000, 0x00000007b84e32c0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 567358K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86535K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=128 (full 44):
par new generation total 142016K, used 136076K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 79% used [0x00000007b6f00000, 0x00000007b84e32c0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 567358K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86554K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:39.631+0800: 197.275: [GC2014-01-25T23:56:39.631+0800: 197.276: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 14355280 bytes, 14355280 total
- age 2: 7411952 bytes, 21767232 total
- age 3: 3229280 bytes, 24996512 total
: 136076K->28352K(142016K), 0.0913680 secs] 703435K->612516K(835540K), 0.0914390 secs] [Times: user=0.13 sys=0.01, real=0.09 secs]
Heap after GC invocations=129 (full 44):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 584164K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86554K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:56:39.722+0800: 197.367: [GC [1 CMS-initial-mark: 584164K(693524K)] 613835K(835540K), 0.0106390 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-25T23:56:39.733+0800: 197.378: [CMS-concurrent-mark-start]
2014-01-25T23:56:40.560+0800: 198.205: [CMS-concurrent-mark: 0.823/0.827 secs] [Times: user=1.47 sys=0.08, real=0.83 secs]
2014-01-25T23:56:40.560+0800: 198.205: [GC[YG occupancy: 142016 K (142016 K)]2014-01-25T23:56:40.560+0800: 198.205: [Rescan (parallel) , 0.0933450 secs]2014-01-25T23:56:40.675+0800: 198.320: [weak refs processing, 0.0003090 secs]2014-01-25T23:56:40.676+0800: 198.320: [scrub string table, 0.0014780 secs] [1 CMS-remark: 584164K(693524K)] 726180K(835540K), 0.1166200 secs] [Times: user=0.19 sys=0.00, real=0.11 secs]
2014-01-25T23:56:40.677+0800: 198.322: [CMS-concurrent-sweep-start]
{Heap before GC invocations=129 (full 45):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 584159K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86558K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:40.682+0800: 198.327: [GC2014-01-25T23:56:40.682+0800: 198.327: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 11937232 bytes, 11937232 total
- age 2: 14172336 bytes, 26109568 total
: 142016K->28352K(142016K), 0.0617670 secs] 726175K->624099K(835540K), 0.0618550 secs] [Times: user=0.09 sys=0.00, real=0.06 secs]
Heap after GC invocations=130 (full 45):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 595747K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86558K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:56:41.044+0800: 198.689: [CMS-concurrent-sweep: 0.305/0.367 secs] [Times: user=0.90 sys=0.04, real=0.37 secs]
2014-01-25T23:56:41.044+0800: 198.689: [CMS-concurrent-reset-start]
2014-01-25T23:56:41.047+0800: 198.691: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=130 (full 45):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 454348K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86559K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:41.163+0800: 198.807: [GC2014-01-25T23:56:41.163+0800: 198.807: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 9693800 bytes, 9693800 total
- age 2: 11912360 bytes, 21606160 total
: 142016K->28352K(142016K), 0.0375110 secs] 596364K->500570K(835540K), 0.0375970 secs] [Times: user=0.10 sys=0.00, real=0.04 secs]
Heap after GC invocations=131 (full 45):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 472218K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86559K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=131 (full 45):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 472218K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86618K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:45.103+0800: 202.747: [GC2014-01-25T23:56:45.110+0800: 202.755: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 6850544 bytes, 6850544 total
- age 2: 8459472 bytes, 15310016 total
: 142016K->28352K(142016K), 0.0405640 secs] 614234K->512245K(835540K), 0.0479750 secs] [Times: user=0.07 sys=0.01, real=0.05 secs]
Heap after GC invocations=132 (full 45):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 483893K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86618K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=132 (full 45):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 483893K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86681K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:50.380+0800: 208.024: [GC2014-01-25T23:56:50.380+0800: 208.025: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 6184864 bytes, 6184864 total
- age 2: 6579776 bytes, 12764640 total
: 142016K->16774K(142016K), 0.1981360 secs] 625909K->508939K(835540K), 0.1982230 secs] [Times: user=0.12 sys=0.00, real=0.19 secs]
Heap after GC invocations=133 (full 45):
par new generation total 142016K, used 16774K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 59% used [0x00000007b8ab0000, 0x00000007b9b11af0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 492165K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86681K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=133 (full 45):
par new generation total 142016K, used 130438K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 59% used [0x00000007b8ab0000, 0x00000007b9b11af0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 492165K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86688K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:53.478+0800: 211.123: [GC2014-01-25T23:56:53.478+0800: 211.123: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 18200200 bytes, 18200200 total
- age 2: 4385480 bytes, 22585680 total
- age 3: 6446480 bytes, 29032160 total
: 130438K->28352K(142016K), 0.1420240 secs] 622603K->555517K(835540K), 0.1421320 secs] [Times: user=0.27 sys=0.01, real=0.15 secs]
Heap after GC invocations=134 (full 45):
par new generation total 142016K, used 28352K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 527165K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86688K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=134 (full 45):
par new generation total 142016K, used 142016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 527165K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86746K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:56:57.071+0800: 214.716: [GC2014-01-25T23:56:57.071+0800: 214.716: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 6705264 bytes, 6705264 total
: 142016K->24307K(142016K), 0.0905250 secs] 669181K->576877K(835540K), 0.0905970 secs] [Times: user=0.15 sys=0.00, real=0.09 secs]
Heap after GC invocations=135 (full 45):
par new generation total 142016K, used 24307K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 85% used [0x00000007b8ab0000, 0x00000007ba26ce78, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 552570K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86746K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=135 (full 45):
par new generation total 142016K, used 137971K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 85% used [0x00000007b8ab0000, 0x00000007ba26ce78, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 552570K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86767K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:57:01.508+0800: 219.153: [GC2014-01-25T23:57:01.508+0800: 219.153: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1569240 bytes, 1569240 total
- age 2: 6470080 bytes, 8039320 total
: 137971K->11573K(142016K), 0.0240350 secs] 690541K->564144K(835540K), 0.0241350 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
Heap after GC invocations=136 (full 45):
par new generation total 142016K, used 11573K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 40% used [0x00000007b6f00000, 0x00000007b7a4d7c8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 552570K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86767K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=136 (full 45):
par new generation total 142016K, used 125237K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 40% used [0x00000007b6f00000, 0x00000007b7a4d7c8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 552570K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86828K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:57:17.068+0800: 234.713: [GC2014-01-25T23:57:17.068+0800: 234.713: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 732416 bytes, 732416 total
- age 2: 1423184 bytes, 2155600 total
- age 3: 6279424 bytes, 8435024 total
: 125237K->12011K(142016K), 0.0483320 secs] 677808K->564581K(835540K), 0.0484310 secs] [Times: user=0.03 sys=0.01, real=0.05 secs]
Heap after GC invocations=137 (full 45):
par new generation total 142016K, used 12011K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 42% used [0x00000007b8ab0000, 0x00000007b966add8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 552570K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86828K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=137 (full 45):
par new generation total 142016K, used 44998K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 29% used [0x00000007b0000000, 0x00000007b2036b30, 0x00000007b6f00000)
from space 28352K, 42% used [0x00000007b8ab0000, 0x00000007b966add8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 693524K, used 552570K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86881K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-25T23:57:39.250+0800: 256.894: [GC2014-01-25T23:57:39.250+0800: 256.894: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 182400 bytes, 182400 total
- age 2: 332472 bytes, 514872 total
- age 3: 1423024 bytes, 1937896 total
- age 4: 6021808 bytes, 7959704 total
: 44998K->11857K(142016K), 0.1464720 secs] 597568K->564427K(835540K), 0.1465790 secs] [Times: user=0.09 sys=0.01, real=0.14 secs]
Heap after GC invocations=138 (full 45):
par new generation total 142016K, used 11857K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 41% used [0x00000007b6f00000, 0x00000007b7a94420, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 552570K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86881K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-25T23:57:39.396+0800: 257.041: [GC [1 CMS-initial-mark: 552570K(693524K)] 564440K(835540K), 0.0610000 secs] [Times: user=0.01 sys=0.00, real=0.06 secs]
2014-01-25T23:57:39.458+0800: 257.102: [CMS-concurrent-mark-start]
2014-01-25T23:57:40.013+0800: 257.658: [CMS-concurrent-mark: 0.554/0.555 secs] [Times: user=0.42 sys=0.07, real=0.56 secs]
2014-01-25T23:57:40.013+0800: 257.658: [GC[YG occupancy: 12885 K (142016 K)]2014-01-25T23:57:40.013+0800: 257.658: [Rescan (parallel) , 0.0068570 secs]2014-01-25T23:57:40.020+0800: 257.665: [weak refs processing, 0.0001550 secs]2014-01-25T23:57:40.020+0800: 257.665: [class unloading, 0.3545200 secs]2014-01-25T23:57:40.375+0800: 258.019: [scrub symbol table, 1.1553890 secs]2014-01-25T23:57:41.530+0800: 259.175: [scrub string table, 0.0012190 secs] [1 CMS-remark: 552570K(693524K)] 565455K(835540K), 1.5225280 secs] [Times: user=0.04 sys=0.00, real=1.52 secs]
2014-01-25T23:57:41.536+0800: 259.181: [CMS-concurrent-sweep-start]
2014-01-25T23:57:42.084+0800: 259.729: [CMS-concurrent-sweep: 0.548/0.548 secs] [Times: user=0.23 sys=0.02, real=0.55 secs]
2014-01-25T23:57:42.084+0800: 259.729: [CMS-concurrent-reset-start]
2014-01-25T23:57:42.130+0800: 259.775: [CMS-concurrent-reset: 0.046/0.046 secs] [Times: user=0.00 sys=0.00, real=0.05 secs]
Heap
par new generation total 142016K, used 18109K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 5% used [0x00000007b0000000, 0x00000007b061afe0, 0x00000007b6f00000)
from space 28352K, 41% used [0x00000007b6f00000, 0x00000007b7a94420, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 693524K, used 475604K [0x00000007ba660000, 0x00000007e4ba5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86887K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment