Skip to content

Instantly share code, notes, and snippets.

@keybounce
Created February 2, 2014 07:36
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/8764342 to your computer and use it in GitHub Desktop.
Save keybounce/8764342 to your computer and use it in GitHub Desktop.
Garbage collection for http://youtu.be/vT35cTBrESs - taint fighting battle
{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 12692K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:42.171+0800: 5.640: [GC2014-01-31T23:21:42.171+0800: 5.640: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 18997768 bytes, 18997768 total
: 113664K->18654K(142016K), 0.0254000 secs] 113664K->18654K(233792K), 0.0254910 secs] [Times: user=0.04 sys=0.01, real=0.02 secs]
Heap after GC invocations=1 (full 0):
par new generation total 142016K, used 18654K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 65% used [0x00000007b8ab0000, 0x00000007b9ce7b18, 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 12692K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=1 (full 0):
par new generation total 142016K, used 132318K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 65% used [0x00000007b8ab0000, 0x00000007b9ce7b18, 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 14556K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:43.708+0800: 7.178: [GC2014-01-31T23:21:43.708+0800: 7.178: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 15792728 bytes, 15792728 total
: 132318K->21860K(142016K), 0.0659300 secs] 132318K->33138K(233792K), 0.0660020 secs] [Times: user=0.11 sys=0.01, real=0.07 secs]
Heap after GC invocations=2 (full 0):
par new generation total 142016K, used 21860K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b6f00000, 0x00000007b8459200, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 11277K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 14556K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=2 (full 0):
par new generation total 142016K, used 126326K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 91% used [0x00000007b0000000, 0x00000007b6604850, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b6f00000, 0x00000007b8459200, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 11277K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 15304K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:44.747+0800: 8.216: [GC2014-01-31T23:21:44.747+0800: 8.216: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2479432 bytes, 2479432 total
: 126326K->10768K(142016K), 0.0248570 secs] 137604K->31299K(233792K), 0.0249590 secs] [Times: user=0.06 sys=0.01, real=0.03 secs]
Heap after GC invocations=3 (full 0):
par new generation total 142016K, used 10768K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 37% used [0x00000007b8ab0000, 0x00000007b95343f8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 20530K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 15304K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=3 (full 0):
par new generation total 142016K, used 124432K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 37% used [0x00000007b8ab0000, 0x00000007b95343f8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 20530K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 16467K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:45.612+0800: 9.081: [GC2014-01-31T23:21:45.612+0800: 9.081: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 15746048 bytes, 15746048 total
- age 2: 1967256 bytes, 17713304 total
: 124432K->18371K(142016K), 0.0150690 secs] 144963K->38901K(233792K), 0.0151450 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=4 (full 0):
par new generation total 142016K, used 18371K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 64% used [0x00000007b6f00000, 0x00000007b80f0d00, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 20530K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 16467K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=4 (full 0):
par new generation total 142016K, used 132035K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 64% used [0x00000007b6f00000, 0x00000007b80f0d00, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 20530K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 17477K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:46.155+0800: 9.624: [GC2014-01-31T23:21:46.155+0800: 9.624: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3376472 bytes, 3376472 total
: 132035K->5665K(142016K), 0.0209330 secs] 152565K->41408K(233792K), 0.0209950 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=5 (full 0):
par new generation total 142016K, used 5665K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 19% used [0x00000007b8ab0000, 0x00000007b90387a0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 35742K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 17477K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=5 (full 0):
par new generation total 142016K, used 119329K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 19% used [0x00000007b8ab0000, 0x00000007b90387a0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 35742K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 18586K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:46.909+0800: 10.379: [GC2014-01-31T23:21:46.909+0800: 10.379: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4369272 bytes, 4369272 total
- age 2: 2337720 bytes, 6706992 total
: 119329K->7019K(142016K), 0.0109150 secs] 155072K->42762K(233792K), 0.0110040 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=6 (full 0):
par new generation total 142016K, used 7019K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 24% used [0x00000007b6f00000, 0x00000007b75daed8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 35742K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 18586K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=6 (full 0):
par new generation total 142016K, used 120683K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 24% used [0x00000007b6f00000, 0x00000007b75daed8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 35742K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 20213K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:47.506+0800: 10.976: [GC2014-01-31T23:21:47.507+0800: 10.976: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2485328 bytes, 2485328 total
- age 2: 3754296 bytes, 6239624 total
- age 3: 2335640 bytes, 8575264 total
: 120683K->10957K(142016K), 0.0122060 secs] 156426K->46699K(233792K), 0.0122830 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=7 (full 0):
par new generation total 142016K, used 10957K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 38% used [0x00000007b8ab0000, 0x00000007b9563438, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 35742K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 20213K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=7 (full 0):
par new generation total 142016K, used 120915K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 96% used [0x00000007b0000000, 0x00000007b6b61bb8, 0x00000007b6f00000)
from space 28352K, 38% used [0x00000007b8ab0000, 0x00000007b9563438, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 35742K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 21519K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:48.191+0800: 11.660: [GC2014-01-31T23:21:48.191+0800: 11.660: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4012176 bytes, 4012176 total
- age 2: 1639144 bytes, 5651320 total
- age 3: 3485688 bytes, 9137008 total
- age 4: 2323304 bytes, 11460312 total
: 120915K->15211K(142016K), 0.0141120 secs] 156658K->50953K(233792K), 0.0142030 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=8 (full 0):
par new generation total 142016K, used 15211K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 53% used [0x00000007b6f00000, 0x00000007b7ddad90, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 35742K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 21519K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=8 (full 0):
par new generation total 142016K, used 128875K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 53% used [0x00000007b6f00000, 0x00000007b7ddad90, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 35742K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23068K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:48.941+0800: 12.410: [GC2014-01-31T23:21:48.941+0800: 12.410: [ParNew
Desired survivor size 14516224 bytes, new threshold 5 (max 15)
- age 1: 5435760 bytes, 5435760 total
- age 2: 2746784 bytes, 8182544 total
- age 3: 1598232 bytes, 9780776 total
- age 4: 3484136 bytes, 13264912 total
- age 5: 2320208 bytes, 15585120 total
: 128875K->20938K(142016K), 0.0186910 secs] 164617K->56680K(233792K), 0.0187640 secs] [Times: user=0.05 sys=0.00, real=0.01 secs]
Heap after GC invocations=9 (full 0):
par new generation total 142016K, used 20938K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 73% used [0x00000007b8ab0000, 0x00000007b9f229f8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 35742K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23068K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=9 (full 0):
par new generation total 142016K, used 134602K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 73% used [0x00000007b8ab0000, 0x00000007b9f229f8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 35742K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23092K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:49.934+0800: 13.403: [GC2014-01-31T23:21:49.934+0800: 13.403: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 14351736 bytes, 14351736 total
- age 2: 2448928 bytes, 16800664 total
- age 3: 2683824 bytes, 19484488 total
- age 4: 1598120 bytes, 21082608 total
- age 5: 3484136 bytes, 24566744 total
: 134602K->28352K(142016K), 0.0404450 secs] 170344K->75467K(233792K), 0.0405380 secs] [Times: user=0.10 sys=0.00, real=0.04 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 47115K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23092K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:21:49.975+0800: 13.444: [GC [1 CMS-initial-mark: 47115K(91776K)] 76229K(233792K), 0.0147330 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
2014-01-31T23:21:49.990+0800: 13.459: [CMS-concurrent-mark-start]
2014-01-31T23:21:50.029+0800: 13.499: [CMS-concurrent-mark: 0.036/0.040 secs] [Times: user=0.21 sys=0.01, real=0.03 secs]
2014-01-31T23:21:50.030+0800: 13.499: [GC[YG occupancy: 35521 K (142016 K)]2014-01-31T23:21:50.030+0800: 13.499: [Rescan (parallel) , 0.0079500 secs]2014-01-31T23:21:50.038+0800: 13.507: [weak refs processing, 0.0000960 secs]2014-01-31T23:21:50.038+0800: 13.507: [scrub string table, 0.0004050 secs] [1 CMS-remark: 47115K(91776K)] 82636K(233792K), 0.0085360 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-01-31T23:21:50.038+0800: 13.508: [CMS-concurrent-sweep-start]
2014-01-31T23:21:50.052+0800: 13.522: [CMS-concurrent-sweep: 0.014/0.014 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
2014-01-31T23:21:50.052+0800: 13.522: [CMS-concurrent-reset-start]
2014-01-31T23:21:50.062+0800: 13.531: [CMS-concurrent-reset: 0.009/0.009 secs] [Times: user=0.03 sys=0.01, 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 45326K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23137K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:51.197+0800: 14.666: [GC2014-01-31T23:21:51.197+0800: 14.666: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 9426968 bytes, 9426968 total
- age 2: 11644840 bytes, 21071808 total
: 142016K->28351K(142016K), 0.0524820 secs] 187342K->91868K(233792K), 0.0525460 secs] [Times: user=0.07 sys=0.01, real=0.06 secs]
Heap after GC invocations=11 (full 1):
par new generation total 142016K, used 28351K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 99% used [0x00000007b8ab0000, 0x00000007ba65fff8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 63516K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23137K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:21:51.250+0800: 14.719: [GC [1 CMS-initial-mark: 63516K(91776K)] 91868K(233792K), 0.0045980 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-01-31T23:21:51.255+0800: 14.724: [CMS-concurrent-mark-start]
2014-01-31T23:21:51.287+0800: 14.757: [CMS-concurrent-mark: 0.031/0.033 secs] [Times: user=0.10 sys=0.00, real=0.03 secs]
2014-01-31T23:21:51.287+0800: 14.757: [GC[YG occupancy: 32713 K (142016 K)]2014-01-31T23:21:51.287+0800: 14.757: [Rescan (parallel) , 0.0030080 secs]2014-01-31T23:21:51.290+0800: 14.760: [weak refs processing, 0.0000630 secs]2014-01-31T23:21:51.291+0800: 14.760: [scrub string table, 0.0003500 secs] [1 CMS-remark: 63516K(91776K)] 96229K(233792K), 0.0034950 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:21:51.291+0800: 14.760: [CMS-concurrent-sweep-start]
2014-01-31T23:21:51.307+0800: 14.777: [CMS-concurrent-sweep: 0.016/0.016 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-01-31T23:21:51.308+0800: 14.777: [CMS-concurrent-reset-start]
2014-01-31T23:21:51.310+0800: 14.779: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
2014-01-31T23:21:52.292+0800: 15.762: [GC [1 CMS-initial-mark: 53003K(91776K)] 192714K(233792K), 0.0648000 secs] [Times: user=0.07 sys=0.00, real=0.06 secs]
2014-01-31T23:21:52.357+0800: 15.827: [CMS-concurrent-mark-start]
2014-01-31T23:21:52.386+0800: 15.855: [CMS-concurrent-mark: 0.029/0.029 secs] [Times: user=0.06 sys=0.00, real=0.03 secs]
2014-01-31T23:21:52.386+0800: 15.855: [GC[YG occupancy: 139710 K (142016 K)]2014-01-31T23:21:52.386+0800: 15.855: [Rescan (parallel) , 0.0508920 secs]2014-01-31T23:21:52.437+0800: 15.906: [weak refs processing, 0.0000660 secs]2014-01-31T23:21:52.437+0800: 15.906: [scrub string table, 0.0003440 secs] [1 CMS-remark: 53003K(91776K)] 192714K(233792K), 0.0513750 secs] [Times: user=0.10 sys=0.00, real=0.05 secs]
2014-01-31T23:21:52.437+0800: 15.907: [CMS-concurrent-sweep-start]
2014-01-31T23:21:52.453+0800: 15.923: [CMS-concurrent-sweep: 0.016/0.016 secs] [Times: user=0.01 sys=0.00, real=0.02 secs]
2014-01-31T23:21:52.453+0800: 15.923: [CMS-concurrent-reset-start]
2014-01-31T23:21:52.455+0800: 15.925: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=11 (full 3):
par new generation total 142016K, used 142015K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 99% used [0x00000007b8ab0000, 0x00000007ba65fff8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 47403K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23203K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:52.568+0800: 16.038: [GC2014-01-31T23:21:52.568+0800: 16.038: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 16286864 bytes, 16286864 total
- age 2: 1440544 bytes, 17727408 total
: 142015K->28352K(142016K), 0.0212860 secs] 189419K->87946K(233792K), 0.0213540 secs] [Times: user=0.03 sys=0.00, real=0.03 secs]
Heap after GC invocations=12 (full 3):
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 59594K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23203K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:21:52.590+0800: 16.059: [GC [1 CMS-initial-mark: 59594K(91776K)] 87949K(233792K), 0.0046400 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-01-31T23:21:52.595+0800: 16.064: [CMS-concurrent-mark-start]
2014-01-31T23:21:52.633+0800: 16.102: [CMS-concurrent-mark: 0.037/0.038 secs] [Times: user=0.12 sys=0.01, real=0.04 secs]
2014-01-31T23:21:52.633+0800: 16.102: [GC[YG occupancy: 35059 K (142016 K)]2014-01-31T23:21:52.633+0800: 16.102: [Rescan (parallel) , 0.0036190 secs]2014-01-31T23:21:52.637+0800: 16.106: [weak refs processing, 0.0002700 secs]2014-01-31T23:21:52.637+0800: 16.106: [scrub string table, 0.0003430 secs] [1 CMS-remark: 59594K(91776K)] 94653K(233792K), 0.0043180 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-01-31T23:21:52.638+0800: 16.107: [CMS-concurrent-sweep-start]
2014-01-31T23:21:52.653+0800: 16.122: [CMS-concurrent-sweep: 0.015/0.015 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
2014-01-31T23:21:52.653+0800: 16.122: [CMS-concurrent-reset-start]
2014-01-31T23:21:52.655+0800: 16.125: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-01-31T23:21:53.259+0800: 16.729: [GC [1 CMS-initial-mark: 59322K(91776K)] 184683K(233792K), 0.0536050 secs] [Times: user=0.09 sys=0.00, real=0.06 secs]
2014-01-31T23:21:53.313+0800: 16.783: [CMS-concurrent-mark-start]
2014-01-31T23:21:53.351+0800: 16.820: [CMS-concurrent-mark: 0.035/0.037 secs] [Times: user=0.08 sys=0.00, real=0.04 secs]
2014-01-31T23:21:53.351+0800: 16.820: [GC[YG occupancy: 125388 K (142016 K)]2014-01-31T23:21:53.351+0800: 16.820: [Rescan (parallel) , 0.0492630 secs]2014-01-31T23:21:53.400+0800: 16.869: [weak refs processing, 0.0000610 secs]2014-01-31T23:21:53.400+0800: 16.869: [scrub string table, 0.0003420 secs] [1 CMS-remark: 59322K(91776K)] 184710K(233792K), 0.0497390 secs] [Times: user=0.09 sys=0.00, real=0.05 secs]
2014-01-31T23:21:53.400+0800: 16.870: [CMS-concurrent-sweep-start]
2014-01-31T23:21:53.415+0800: 16.885: [CMS-concurrent-sweep: 0.015/0.015 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-31T23:21:53.415+0800: 16.885: [CMS-concurrent-reset-start]
2014-01-31T23:21:53.418+0800: 16.887: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=12 (full 5):
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 54679K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23216K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:53.503+0800: 16.972: [GC2014-01-31T23:21:53.503+0800: 16.972: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 18712928 bytes, 18712928 total
: 142016K->19211K(142016K), 0.0201670 secs] 196695K->77545K(233792K), 0.0202350 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=13 (full 5):
par new generation total 142016K, used 19211K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 67% used [0x00000007b8ab0000, 0x00000007b9d72e20, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 58333K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23216K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=13 (full 5):
par new generation total 142016K, used 132875K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 67% used [0x00000007b8ab0000, 0x00000007b9d72e20, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 58333K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23252K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:54.192+0800: 17.661: [GC2014-01-31T23:21:54.192+0800: 17.661: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 16500384 bytes, 16500384 total
: 132875K->17642K(142016K), 0.0164670 secs] 191209K->79240K(233792K), 0.0165500 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
Heap after GC invocations=14 (full 5):
par new generation total 142016K, used 17642K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 62% used [0x00000007b6f00000, 0x00000007b803aa08, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 61597K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23252K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=14 (full 5):
par new generation total 142016K, used 130218K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6deff98, 0x00000007b6f00000)
from space 28352K, 62% used [0x00000007b6f00000, 0x00000007b803aa08, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 61597K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23579K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:54.884+0800: 18.353: [GC2014-01-31T23:21:54.884+0800: 18.353: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 6836000 bytes, 6836000 total
: 130218K->8678K(142016K), 0.0155260 secs] 191816K->72330K(233792K), 0.0156080 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=15 (full 5):
par new generation total 142016K, used 8678K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 30% used [0x00000007b8ab0000, 0x00000007b9329b00, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 63651K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 23579K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=15 (full 5):
par new generation total 142016K, used 122342K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 30% used [0x00000007b8ab0000, 0x00000007b9329b00, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 63651K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 24294K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:55.458+0800: 18.927: [GC2014-01-31T23:21:55.458+0800: 18.927: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4148768 bytes, 4148768 total
- age 2: 3562320 bytes, 7711088 total
: 122342K->9558K(142016K), 0.0075760 secs] 185994K->73210K(233792K), 0.0076450 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
Heap after GC invocations=16 (full 5):
par new generation total 142016K, used 9558K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 33% used [0x00000007b6f00000, 0x00000007b7855ad8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 63651K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 24294K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=16 (full 5):
par new generation total 142016K, used 123222K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 33% used [0x00000007b6f00000, 0x00000007b7855ad8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 63651K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 25039K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:55.753+0800: 19.222: [GC2014-01-31T23:21:55.753+0800: 19.222: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 6376496 bytes, 6376496 total
- age 2: 2247848 bytes, 8624344 total
- age 3: 3175024 bytes, 11799368 total
: 123222K->15110K(142016K), 0.0093740 secs] 186874K->78761K(233792K), 0.0094600 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=17 (full 5):
par new generation total 142016K, used 15110K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 53% used [0x00000007b8ab0000, 0x00000007b9971820, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 63651K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 25039K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=17 (full 5):
par new generation total 142016K, used 128774K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 53% used [0x00000007b8ab0000, 0x00000007b9971820, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 63651K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 25872K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:56.088+0800: 19.558: [GC2014-01-31T23:21:56.088+0800: 19.558: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 6810152 bytes, 6810152 total
- age 2: 3172008 bytes, 9982160 total
- age 3: 2236752 bytes, 12218912 total
- age 4: 3185928 bytes, 15404840 total
: 128774K->18502K(142016K), 0.0116380 secs] 192425K->82153K(233792K), 0.0117110 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=18 (full 5):
par new generation total 142016K, used 18502K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 65% used [0x00000007b6f00000, 0x00000007b8111a00, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 63651K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 25872K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=18 (full 5):
par new generation total 142016K, used 132166K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 65% used [0x00000007b6f00000, 0x00000007b8111a00, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 63651K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 26853K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:56.439+0800: 19.908: [GC2014-01-31T23:21:56.439+0800: 19.908: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4830800 bytes, 4830800 total
- age 2: 3073248 bytes, 7904048 total
- age 3: 3169048 bytes, 11073096 total
- age 4: 2236376 bytes, 13309472 total
: 132166K->18698K(142016K), 0.0149330 secs] 195817K->85466K(233792K), 0.0150270 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
Heap after GC invocations=19 (full 5):
par new generation total 142016K, used 18698K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 65% used [0x00000007b8ab0000, 0x00000007b9cf2bc0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 66768K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 26853K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=19 (full 5):
par new generation total 142016K, used 132362K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 65% used [0x00000007b8ab0000, 0x00000007b9cf2bc0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 66768K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 27761K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:56.753+0800: 20.222: [GC2014-01-31T23:21:56.753+0800: 20.222: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 6143248 bytes, 6143248 total
- age 2: 2577008 bytes, 8720256 total
- age 3: 3073064 bytes, 11793320 total
- age 4: 3169048 bytes, 14962368 total
- age 5: 2235296 bytes, 17197664 total
: 132362K->24139K(142016K), 0.0110340 secs] 199130K->90907K(233792K), 0.0111020 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=20 (full 5):
par new generation total 142016K, used 24139K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 85% used [0x00000007b6f00000, 0x00000007b8692c38, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 66768K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 27761K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=20 (full 5):
par new generation total 142016K, used 137803K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 85% used [0x00000007b6f00000, 0x00000007b8692c38, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 66768K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 28415K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:57.024+0800: 20.493: [GC2014-01-31T23:21:57.024+0800: 20.493: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 6874632 bytes, 6874632 total
- age 2: 3641128 bytes, 10515760 total
- age 3: 2570112 bytes, 13085872 total
- age 4: 3073064 bytes, 16158936 total
: 137803K->23393K(142016K), 0.0160370 secs] 204571K->95454K(233792K), 0.0161210 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=21 (full 5):
par new generation total 142016K, used 23393K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 82% used [0x00000007b8ab0000, 0x00000007ba1885e0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 72060K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 28415K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=21 (full 5):
par new generation total 142016K, used 137057K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 82% used [0x00000007b8ab0000, 0x00000007ba1885e0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 72060K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 29237K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:57.291+0800: 20.760: [GC2014-01-31T23:21:57.291+0800: 20.760: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 4773168 bytes, 4773168 total
- age 2: 3777096 bytes, 8550264 total
- age 3: 3640376 bytes, 12190640 total
- age 4: 2569632 bytes, 14760272 total
: 137057K->21614K(142016K), 0.0121970 secs] 209118K->96682K(233792K), 0.0122640 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=22 (full 5):
par new generation total 142016K, used 21614K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b841ba98, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 75067K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 29237K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=22 (full 5):
par new generation total 142016K, used 135278K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b841ba98, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 91776K, used 75067K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 29911K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:57.591+0800: 21.060: [GC2014-01-31T23:21:57.591+0800: 21.060: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 6229376 bytes, 6229376 total
- age 2: 2603880 bytes, 8833256 total
- age 3: 3776720 bytes, 12609976 total
- age 4: 3638080 bytes, 16248056 total
: 135278K->21598K(142016K), 0.0125490 secs] 210346K->99182K(233792K), 0.0126120 secs] [Times: user=0.03 sys=0.01, real=0.01 secs]
Heap after GC invocations=23 (full 5):
par new generation total 142016K, used 21598K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b8ab0000, 0x00000007b9fc7b98, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 91776K, used 77583K [0x00000007ba660000, 0x00000007c0000000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 29911K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:21:57.603+0800: 21.073: [GC [1 CMS-initial-mark: 77583K(91776K)] 99182K(233792K), 0.0064990 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
2014-01-31T23:21:57.610+0800: 21.079: [CMS-concurrent-mark-start]
2014-01-31T23:21:57.719+0800: 21.188: [CMS-concurrent-mark: 0.063/0.109 secs] [Times: user=0.44 sys=0.01, real=0.10 secs]
2014-01-31T23:21:57.719+0800: 21.188: [GC[YG occupancy: 48880 K (142016 K)]2014-01-31T23:21:57.719+0800: 21.188: [Rescan (parallel) , 0.0145710 secs]2014-01-31T23:21:57.734+0800: 21.203: [weak refs processing, 0.0001700 secs]2014-01-31T23:21:57.734+0800: 21.203: [scrub string table, 0.0004270 secs] [1 CMS-remark: 77583K(91776K)] 126464K(233792K), 0.0152450 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
2014-01-31T23:21:57.734+0800: 21.204: [CMS-concurrent-sweep-start]
2014-01-31T23:21:57.756+0800: 21.226: [CMS-concurrent-sweep: 0.022/0.022 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
2014-01-31T23:21:57.756+0800: 21.226: [CMS-concurrent-reset-start]
2014-01-31T23:21:57.759+0800: 21.228: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=23 (full 6):
par new generation total 142016K, used 135262K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b8ab0000, 0x00000007b9fc7b98, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 95892K, used 75753K [0x00000007ba660000, 0x00000007c0405000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 30777K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:57.929+0800: 21.398: [GC2014-01-31T23:21:57.929+0800: 21.398: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 5381120 bytes, 5381120 total
- age 2: 3280616 bytes, 8661736 total
- age 3: 2602448 bytes, 11264184 total
- age 4: 3776720 bytes, 15040904 total
: 135262K->21830K(142016K), 0.0136390 secs] 211016K->101145K(237908K), 0.0137030 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 21830K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b8451bd0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 95892K, used 79314K [0x00000007ba660000, 0x00000007c0405000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 30777K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:21:57.943+0800: 21.412: [GC [1 CMS-initial-mark: 79314K(95892K)] 101145K(237908K), 0.0044170 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-01-31T23:21:57.947+0800: 21.417: [CMS-concurrent-mark-start]
2014-01-31T23:21:58.027+0800: 21.497: [CMS-concurrent-mark: 0.051/0.080 secs] [Times: user=0.21 sys=0.01, real=0.08 secs]
2014-01-31T23:21:58.027+0800: 21.497: [GC[YG occupancy: 40019 K (142016 K)]2014-01-31T23:21:58.027+0800: 21.497: [Rescan (parallel) , 0.0203390 secs]2014-01-31T23:21:58.048+0800: 21.517: [weak refs processing, 0.0000780 secs]2014-01-31T23:21:58.048+0800: 21.517: [scrub string table, 0.0004270 secs] [1 CMS-remark: 79314K(95892K)] 119334K(237908K), 0.0209130 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
2014-01-31T23:21:58.048+0800: 21.518: [CMS-concurrent-sweep-start]
2014-01-31T23:21:58.070+0800: 21.539: [CMS-concurrent-sweep: 0.022/0.022 secs] [Times: user=0.03 sys=0.00, real=0.03 secs]
2014-01-31T23:21:58.070+0800: 21.540: [CMS-concurrent-reset-start]
2014-01-31T23:21:58.072+0800: 21.542: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=24 (full 7):
par new generation total 142016K, used 135494K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b8451bd0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 99148K, used 78323K [0x00000007ba660000, 0x00000007c0733000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 31636K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:58.304+0800: 21.773: [GC2014-01-31T23:21:58.304+0800: 21.773: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 9129000 bytes, 9129000 total
- age 2: 2806720 bytes, 11935720 total
- age 3: 3280616 bytes, 15216336 total
- age 4: 2599744 bytes, 17816080 total
: 135494K->19655K(142016K), 0.0128300 secs] 213818K->101671K(241164K), 0.0129010 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=25 (full 7):
par new generation total 142016K, used 19655K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 69% used [0x00000007b8ab0000, 0x00000007b9de1e98, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 99148K, used 82015K [0x00000007ba660000, 0x00000007c0733000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 31636K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:21:58.317+0800: 21.786: [GC [1 CMS-initial-mark: 82015K(99148K)] 105056K(241164K), 0.0043610 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
2014-01-31T23:21:58.321+0800: 21.791: [CMS-concurrent-mark-start]
2014-01-31T23:21:58.445+0800: 21.914: [CMS-concurrent-mark: 0.057/0.123 secs] [Times: user=0.23 sys=0.01, real=0.12 secs]
2014-01-31T23:21:58.445+0800: 21.914: [GC[YG occupancy: 83134 K (142016 K)]2014-01-31T23:21:58.445+0800: 21.914: [Rescan (parallel) , 0.0457220 secs]2014-01-31T23:21:58.491+0800: 21.960: [weak refs processing, 0.0000790 secs]2014-01-31T23:21:58.491+0800: 21.960: [scrub string table, 0.0004070 secs] [1 CMS-remark: 82015K(99148K)] 165150K(241164K), 0.0462800 secs] [Times: user=0.09 sys=0.00, real=0.05 secs]
2014-01-31T23:21:58.491+0800: 21.961: [CMS-concurrent-sweep-start]
2014-01-31T23:21:58.515+0800: 21.985: [CMS-concurrent-sweep: 0.024/0.024 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
2014-01-31T23:21:58.515+0800: 21.985: [CMS-concurrent-reset-start]
2014-01-31T23:21:58.518+0800: 21.987: [CMS-concurrent-reset: 0.002/0.002 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 133319K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 69% used [0x00000007b8ab0000, 0x00000007b9de1e98, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 103628K, used 81863K [0x00000007ba660000, 0x00000007c0b93000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 32566K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:59.047+0800: 22.517: [GC2014-01-31T23:21:59.049+0800: 22.519: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3103856 bytes, 3103856 total
- age 2: 7919448 bytes, 11023304 total
- age 3: 2781792 bytes, 13805096 total
: 133319K->15933K(142016K), 0.0160850 secs] 215183K->103533K(245644K), 0.0181830 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 15933K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 56% used [0x00000007b6f00000, 0x00000007b7e8f788, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 103628K, used 87599K [0x00000007ba660000, 0x00000007c0b93000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 32566K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:21:59.066+0800: 22.535: [GC [1 CMS-initial-mark: 87599K(103628K)] 106536K(245644K), 0.0051640 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
2014-01-31T23:21:59.071+0800: 22.540: [CMS-concurrent-mark-start]
2014-01-31T23:21:59.145+0800: 22.614: [CMS-concurrent-mark: 0.052/0.074 secs] [Times: user=0.18 sys=0.00, real=0.07 secs]
2014-01-31T23:21:59.145+0800: 22.614: [GC[YG occupancy: 27901 K (142016 K)]2014-01-31T23:21:59.145+0800: 22.614: [Rescan (parallel) , 0.0063420 secs]2014-01-31T23:21:59.151+0800: 22.621: [weak refs processing, 0.0000820 secs]2014-01-31T23:21:59.151+0800: 22.621: [scrub string table, 0.0004110 secs] [1 CMS-remark: 87599K(103628K)] 115500K(245644K), 0.0069050 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:21:59.152+0800: 22.621: [CMS-concurrent-sweep-start]
2014-01-31T23:21:59.173+0800: 22.642: [CMS-concurrent-sweep: 0.021/0.021 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
2014-01-31T23:21:59.173+0800: 22.643: [CMS-concurrent-reset-start]
2014-01-31T23:21:59.175+0800: 22.645: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=26 (full 9):
par new generation total 142016K, used 129597K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 56% used [0x00000007b6f00000, 0x00000007b7e8f788, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 110736K, used 87480K [0x00000007ba660000, 0x00000007c1284000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 33537K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:21:59.906+0800: 23.375: [GC2014-01-31T23:21:59.906+0800: 23.375: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 2804120 bytes, 2804120 total
- age 2: 2402632 bytes, 5206752 total
- age 3: 7914600 bytes, 13121352 total
- age 4: 2781680 bytes, 15903032 total
: 129597K->18554K(142016K), 0.0146380 secs] 217078K->106035K(252752K), 0.0147020 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=27 (full 9):
par new generation total 142016K, used 18554K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 65% used [0x00000007b8ab0000, 0x00000007b9cceb58, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 110736K, used 87480K [0x00000007ba660000, 0x00000007c1284000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 33537K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=27 (full 9):
par new generation total 142016K, used 132218K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 65% used [0x00000007b8ab0000, 0x00000007b9cceb58, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 110736K, used 87480K [0x00000007ba660000, 0x00000007c1284000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 35689K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:00.297+0800: 23.766: [GC2014-01-31T23:22:00.297+0800: 23.766: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 4371952 bytes, 4371952 total
- age 2: 1846320 bytes, 6218272 total
- age 3: 2400032 bytes, 8618304 total
- age 4: 7914560 bytes, 16532864 total
: 132218K->22344K(142016K), 0.0161400 secs] 219699K->112521K(252752K), 0.0162270 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=28 (full 9):
par new generation total 142016K, used 22344K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 78% used [0x00000007b6f00000, 0x00000007b84d2050, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 110736K, used 90177K [0x00000007ba660000, 0x00000007c1284000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 35689K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=28 (full 9):
par new generation total 142016K, used 136008K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 78% used [0x00000007b6f00000, 0x00000007b84d2050, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 110736K, used 90177K [0x00000007ba660000, 0x00000007c1284000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 36395K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:00.536+0800: 24.005: [GC2014-01-31T23:22:00.536+0800: 24.005: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3204784 bytes, 3204784 total
- age 2: 2934984 bytes, 6139768 total
- age 3: 1835416 bytes, 7975184 total
- age 4: 2399888 bytes, 10375072 total
: 136008K->11857K(142016K), 0.0173950 secs] 226185K->109768K(252752K), 0.0174630 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=29 (full 9):
par new generation total 142016K, used 11857K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 41% used [0x00000007b8ab0000, 0x00000007b9644518, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 110736K, used 97911K [0x00000007ba660000, 0x00000007c1284000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 36395K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:00.554+0800: 24.023: [GC [1 CMS-initial-mark: 97911K(110736K)] 112225K(252752K), 0.0078490 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:22:00.561+0800: 24.031: [CMS-concurrent-mark-start]
2014-01-31T23:22:00.761+0800: 24.230: [CMS-concurrent-mark: 0.074/0.199 secs] [Times: user=0.56 sys=0.02, real=0.20 secs]
2014-01-31T23:22:00.761+0800: 24.230: [GC[YG occupancy: 96683 K (142016 K)]2014-01-31T23:22:00.761+0800: 24.230: [Rescan (parallel) , 0.0596140 secs]2014-01-31T23:22:00.820+0800: 24.290: [weak refs processing, 0.0000860 secs]2014-01-31T23:22:00.821+0800: 24.290: [scrub string table, 0.0005150 secs] [1 CMS-remark: 97911K(110736K)] 194594K(252752K), 0.0602960 secs] [Times: user=0.11 sys=0.00, real=0.06 secs]
2014-01-31T23:22:00.821+0800: 24.291: [CMS-concurrent-sweep-start]
2014-01-31T23:22:00.847+0800: 24.317: [CMS-concurrent-sweep: 0.025/0.026 secs] [Times: user=0.11 sys=0.00, real=0.02 secs]
2014-01-31T23:22:00.847+0800: 24.317: [CMS-concurrent-reset-start]
2014-01-31T23:22:00.850+0800: 24.320: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
{Heap before GC invocations=29 (full 10):
par new generation total 142016K, used 125521K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 41% used [0x00000007b8ab0000, 0x00000007b9644518, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 123652K, used 97684K [0x00000007ba660000, 0x00000007c1f21000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 38146K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:00.899+0800: 24.368: [GC2014-01-31T23:22:00.899+0800: 24.368: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4166384 bytes, 4166384 total
- age 2: 1751112 bytes, 5917496 total
- age 3: 2913760 bytes, 8831256 total
- age 4: 1835192 bytes, 10666448 total
- age 5: 2399776 bytes, 13066224 total
: 125521K->16048K(142016K), 0.0166510 secs] 223205K->113732K(265668K), 0.0167270 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=30 (full 10):
par new generation total 142016K, used 16048K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 56% used [0x00000007b6f00000, 0x00000007b7eac0a8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 123652K, used 97684K [0x00000007ba660000, 0x00000007c1f21000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 38146K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=30 (full 10):
par new generation total 142016K, used 129712K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 56% used [0x00000007b6f00000, 0x00000007b7eac0a8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 123652K, used 97684K [0x00000007ba660000, 0x00000007c1f21000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 39264K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:01.205+0800: 24.674: [GC2014-01-31T23:22:01.205+0800: 24.674: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3219464 bytes, 3219464 total
- age 2: 2318176 bytes, 5537640 total
- age 3: 1747968 bytes, 7285608 total
- age 4: 2905936 bytes, 10191544 total
- age 5: 1834968 bytes, 12026512 total
- age 6: 2399776 bytes, 14426288 total
: 129712K->22480K(142016K), 0.0153240 secs] 227396K->120165K(265668K), 0.0153950 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=31 (full 10):
par new generation total 142016K, used 22480K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 79% used [0x00000007b8ab0000, 0x00000007ba0a43a8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 123652K, used 97684K [0x00000007ba660000, 0x00000007c1f21000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 39264K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=31 (full 10):
par new generation total 142016K, used 136144K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 79% used [0x00000007b8ab0000, 0x00000007ba0a43a8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 123652K, used 97684K [0x00000007ba660000, 0x00000007c1f21000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 40217K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:02.151+0800: 25.621: [GC2014-01-31T23:22:02.151+0800: 25.621: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 5324928 bytes, 5324928 total
- age 2: 2165584 bytes, 7490512 total
- age 3: 2273304 bytes, 9763816 total
- age 4: 1747648 bytes, 11511464 total
- age 5: 2904328 bytes, 14415792 total
- age 6: 1827128 bytes, 16242920 total
- age 7: 2399736 bytes, 18642656 total
: 136144K->27091K(142016K), 0.0184720 secs] 233829K->124776K(265668K), 0.0185610 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=32 (full 10):
par new generation total 142016K, used 27091K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 95% used [0x00000007b6f00000, 0x00000007b8974f98, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 123652K, used 97684K [0x00000007ba660000, 0x00000007c1f21000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 40217K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=32 (full 10):
par new generation total 142016K, used 140755K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 95% used [0x00000007b6f00000, 0x00000007b8974f98, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 123652K, used 97684K [0x00000007ba660000, 0x00000007c1f21000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 41297K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:03.236+0800: 26.706: [GC2014-01-31T23:22:03.236+0800: 26.706: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 3318480 bytes, 3318480 total
- age 2: 3010392 bytes, 6328872 total
- age 3: 2158808 bytes, 8487680 total
- age 4: 2273304 bytes, 10760984 total
- age 5: 1746936 bytes, 12507920 total
- age 6: 2902184 bytes, 15410104 total
: 140755K->23821K(142016K), 0.0252150 secs] 238440K->125649K(265668K), 0.0252840 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
Heap after GC invocations=33 (full 10):
par new generation total 142016K, used 23821K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 84% used [0x00000007b8ab0000, 0x00000007ba1f3520, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 123652K, used 101827K [0x00000007ba660000, 0x00000007c1f21000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 41297K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:03.262+0800: 26.731: [GC [1 CMS-initial-mark: 101827K(123652K)] 127945K(265668K), 0.0091200 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:22:03.271+0800: 26.741: [CMS-concurrent-mark-start]
2014-01-31T23:22:03.453+0800: 26.922: [CMS-concurrent-mark: 0.075/0.181 secs] [Times: user=0.32 sys=0.01, real=0.18 secs]
2014-01-31T23:22:03.453+0800: 26.922: [GC[YG occupancy: 97461 K (142016 K)]2014-01-31T23:22:03.453+0800: 26.922: [Rescan (parallel) , 0.0467120 secs]2014-01-31T23:22:03.499+0800: 26.969: [weak refs processing, 0.0000850 secs]2014-01-31T23:22:03.500+0800: 26.969: [scrub string table, 0.0005740 secs] [1 CMS-remark: 101827K(123652K)] 199289K(265668K), 0.0474460 secs] [Times: user=0.09 sys=0.00, real=0.05 secs]
2014-01-31T23:22:03.500+0800: 26.970: [CMS-concurrent-sweep-start]
2014-01-31T23:22:03.525+0800: 26.994: [CMS-concurrent-sweep: 0.024/0.025 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
2014-01-31T23:22:03.525+0800: 26.994: [CMS-concurrent-reset-start]
2014-01-31T23:22:03.527+0800: 26.997: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=33 (full 11):
par new generation total 142016K, used 137485K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 84% used [0x00000007b8ab0000, 0x00000007ba1f3520, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 128640K, used 101625K [0x00000007ba660000, 0x00000007c2400000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 42532K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:03.664+0800: 27.133: [GC2014-01-31T23:22:03.664+0800: 27.134: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 3687128 bytes, 3687128 total
- age 2: 2107960 bytes, 5795088 total
- age 3: 3006136 bytes, 8801224 total
- age 4: 2157728 bytes, 10958952 total
- age 5: 2273096 bytes, 13232048 total
- age 6: 1746936 bytes, 14978984 total
: 137485K->22584K(142016K), 0.0208060 secs] 239110K->127058K(270656K), 0.0208760 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=34 (full 11):
par new generation total 142016K, used 22584K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 79% used [0x00000007b6f00000, 0x00000007b850e3e8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 128640K, used 104473K [0x00000007ba660000, 0x00000007c2400000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 42532K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=34 (full 11):
par new generation total 142016K, used 136248K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 79% used [0x00000007b6f00000, 0x00000007b850e3e8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 128640K, used 104473K [0x00000007ba660000, 0x00000007c2400000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 43657K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:04.045+0800: 27.514: [GC2014-01-31T23:22:04.045+0800: 27.514: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 4442296 bytes, 4442296 total
- age 2: 2309192 bytes, 6751488 total
- age 3: 2097584 bytes, 8849072 total
- age 4: 3005848 bytes, 11854920 total
- age 5: 2157704 bytes, 14012624 total
- age 6: 2270496 bytes, 16283120 total
: 136248K->22064K(142016K), 0.0218160 secs] 240722K->128252K(270656K), 0.0219230 secs] [Times: user=0.04 sys=0.01, real=0.02 secs]
Heap after GC invocations=35 (full 11):
par new generation total 142016K, used 22064K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b8ab0000, 0x00000007ba03c3e0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 128640K, used 106187K [0x00000007ba660000, 0x00000007c2400000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 43657K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:04.067+0800: 27.536: [GC [1 CMS-initial-mark: 106187K(128640K)] 130912K(270656K), 0.0093070 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:22:04.076+0800: 27.546: [CMS-concurrent-mark-start]
2014-01-31T23:22:04.147+0800: 27.616: [CMS-concurrent-mark: 0.067/0.070 secs] [Times: user=0.22 sys=0.00, real=0.07 secs]
2014-01-31T23:22:04.147+0800: 27.616: [GC[YG occupancy: 24898 K (142016 K)]2014-01-31T23:22:04.147+0800: 27.616: [Rescan (parallel) , 0.0062290 secs]2014-01-31T23:22:04.153+0800: 27.623: [weak refs processing, 0.0001240 secs]2014-01-31T23:22:04.153+0800: 27.623: [scrub string table, 0.0006140 secs] [1 CMS-remark: 106187K(128640K)] 131085K(270656K), 0.0070530 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:22:04.154+0800: 27.624: [CMS-concurrent-sweep-start]
2014-01-31T23:22:04.179+0800: 27.648: [CMS-concurrent-sweep: 0.025/0.025 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
2014-01-31T23:22:04.179+0800: 27.648: [CMS-concurrent-reset-start]
2014-01-31T23:22:04.181+0800: 27.650: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
{Heap before GC invocations=35 (full 12):
par new generation total 142016K, used 135728K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b8ab0000, 0x00000007ba03c3e0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 134396K, used 106172K [0x00000007ba660000, 0x00000007c299f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 44619K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:04.700+0800: 28.170: [GC2014-01-31T23:22:04.700+0800: 28.170: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 3657232 bytes, 3657232 total
- age 2: 2421520 bytes, 6078752 total
- age 3: 2305072 bytes, 8383824 total
- age 4: 2095064 bytes, 10478888 total
- age 5: 2996456 bytes, 13475344 total
- age 6: 2157544 bytes, 15632888 total
: 135728K->22017K(142016K), 0.0218660 secs] 241901K->130433K(276412K), 0.0219340 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=36 (full 12):
par new generation total 142016K, used 22017K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b6f00000, 0x00000007b84806a8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 134396K, used 108415K [0x00000007ba660000, 0x00000007c299f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 44619K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=36 (full 12):
par new generation total 142016K, used 135681K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b6f00000, 0x00000007b84806a8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 134396K, used 108415K [0x00000007ba660000, 0x00000007c299f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 45956K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:05.160+0800: 28.629: [GC2014-01-31T23:22:05.160+0800: 28.629: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 8592248 bytes, 8592248 total
- age 2: 2846128 bytes, 11438376 total
- age 3: 2335320 bytes, 13773696 total
- age 4: 2268864 bytes, 16042560 total
- age 5: 2092424 bytes, 18134984 total
- age 6: 2996456 bytes, 21131440 total
: 135681K->25458K(142016K), 0.0214620 secs] 244097K->136004K(276412K), 0.0215620 secs] [Times: user=0.06 sys=0.00, real=0.02 secs]
Heap after GC invocations=37 (full 12):
par new generation total 142016K, used 25458K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 89% used [0x00000007b8ab0000, 0x00000007ba38cb70, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 134396K, used 110545K [0x00000007ba660000, 0x00000007c299f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 45956K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:05.182+0800: 28.651: [GC [1 CMS-initial-mark: 110545K(134396K)] 138284K(276412K), 0.0107660 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-31T23:22:05.193+0800: 28.662: [CMS-concurrent-mark-start]
2014-01-31T23:22:05.354+0800: 28.823: [CMS-concurrent-mark: 0.075/0.161 secs] [Times: user=0.36 sys=0.01, real=0.16 secs]
2014-01-31T23:22:05.354+0800: 28.824: [GC[YG occupancy: 78103 K (142016 K)]2014-01-31T23:22:05.354+0800: 28.824: [Rescan (parallel) , 0.0314360 secs]2014-01-31T23:22:05.386+0800: 28.855: [weak refs processing, 0.0001010 secs]2014-01-31T23:22:05.386+0800: 28.855: [scrub string table, 0.0006870 secs] [1 CMS-remark: 110545K(134396K)] 188649K(276412K), 0.0322920 secs] [Times: user=0.06 sys=0.00, real=0.03 secs]
2014-01-31T23:22:05.387+0800: 28.856: [CMS-concurrent-sweep-start]
2014-01-31T23:22:05.412+0800: 28.882: [CMS-concurrent-sweep: 0.026/0.026 secs] [Times: user=0.04 sys=0.00, real=0.03 secs]
2014-01-31T23:22:05.413+0800: 28.882: [CMS-concurrent-reset-start]
2014-01-31T23:22:05.415+0800: 28.884: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=37 (full 13):
par new generation total 142016K, used 139122K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 89% used [0x00000007b8ab0000, 0x00000007ba38cb70, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 139856K, used 110483K [0x00000007ba660000, 0x00000007c2ef4000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 47461K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:05.571+0800: 29.040: [GC2014-01-31T23:22:05.571+0800: 29.040: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 5582352 bytes, 5582352 total
- age 2: 4346728 bytes, 9929080 total
- age 3: 2839736 bytes, 12768816 total
- age 4: 2335320 bytes, 15104136 total
: 139122K->18552K(142016K), 0.0241000 secs] 249606K->136250K(281872K), 0.0241890 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=38 (full 13):
par new generation total 142016K, used 18552K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 65% used [0x00000007b6f00000, 0x00000007b811e178, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 139856K, used 117698K [0x00000007ba660000, 0x00000007c2ef4000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 47461K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:05.595+0800: 29.065: [GC [1 CMS-initial-mark: 117698K(139856K)] 138527K(281872K), 0.0058670 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:22:05.601+0800: 29.071: [CMS-concurrent-mark-start]
2014-01-31T23:22:05.794+0800: 29.263: [CMS-concurrent-mark: 0.089/0.192 secs] [Times: user=0.44 sys=0.01, real=0.19 secs]
2014-01-31T23:22:05.794+0800: 29.263: [GC[YG occupancy: 86774 K (142016 K)]2014-01-31T23:22:05.794+0800: 29.263: [Rescan (parallel) , 0.0370460 secs]2014-01-31T23:22:05.831+0800: 29.301: [weak refs processing, 0.0000940 secs]2014-01-31T23:22:05.831+0800: 29.301: [scrub string table, 0.0006400 secs] [1 CMS-remark: 117698K(139856K)] 204472K(281872K), 0.0378720 secs] [Times: user=0.07 sys=0.00, real=0.04 secs]
2014-01-31T23:22:05.832+0800: 29.302: [CMS-concurrent-sweep-start]
2014-01-31T23:22:05.864+0800: 29.333: [CMS-concurrent-sweep: 0.031/0.031 secs] [Times: user=0.06 sys=0.00, real=0.03 secs]
2014-01-31T23:22:05.864+0800: 29.333: [CMS-concurrent-reset-start]
2014-01-31T23:22:05.866+0800: 29.335: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=38 (full 14):
par new generation total 142016K, used 132216K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 65% used [0x00000007b6f00000, 0x00000007b811e178, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 148948K, used 117668K [0x00000007ba660000, 0x00000007c37d5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 48964K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:06.037+0800: 29.506: [GC2014-01-31T23:22:06.037+0800: 29.506: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 4565128 bytes, 4565128 total
- age 2: 2842496 bytes, 7407624 total
- age 3: 4345296 bytes, 11752920 total
- age 4: 2839712 bytes, 14592632 total
: 132216K->21718K(142016K), 0.0155700 secs] 249884K->141677K(290964K), 0.0156360 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=39 (full 14):
par new generation total 142016K, used 21718K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b8ab0000, 0x00000007b9fe5b58, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 148948K, used 119958K [0x00000007ba660000, 0x00000007c37d5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 48964K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=39 (full 14):
par new generation total 142016K, used 135382K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b8ab0000, 0x00000007b9fe5b58, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 148948K, used 119958K [0x00000007ba660000, 0x00000007c37d5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 49986K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:06.402+0800: 29.872: [GC2014-01-31T23:22:06.402+0800: 29.872: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4086304 bytes, 4086304 total
- age 2: 2572376 bytes, 6658680 total
- age 3: 2842560 bytes, 9501240 total
- age 4: 4343200 bytes, 13844440 total
: 135382K->20410K(142016K), 0.0176970 secs] 255341K->143160K(290964K), 0.0177890 secs] [Times: user=0.05 sys=0.01, real=0.02 secs]
Heap after GC invocations=40 (full 14):
par new generation total 142016K, used 20410K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 71% used [0x00000007b6f00000, 0x00000007b82eead0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 148948K, used 122749K [0x00000007ba660000, 0x00000007c37d5000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 49986K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:06.420+0800: 29.890: [GC [1 CMS-initial-mark: 122749K(148948K)] 143162K(290964K), 0.0056660 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-01-31T23:22:06.426+0800: 29.895: [CMS-concurrent-mark-start]
2014-01-31T23:22:06.543+0800: 30.013: [CMS-concurrent-mark: 0.096/0.117 secs] [Times: user=0.51 sys=0.01, real=0.12 secs]
2014-01-31T23:22:06.544+0800: 30.013: [GC[YG occupancy: 40862 K (142016 K)]2014-01-31T23:22:06.544+0800: 30.013: [Rescan (parallel) , 0.0209580 secs]2014-01-31T23:22:06.565+0800: 30.034: [weak refs processing, 0.0000930 secs]2014-01-31T23:22:06.565+0800: 30.034: [scrub string table, 0.0006540 secs] [1 CMS-remark: 122749K(148948K)] 163612K(290964K), 0.0217830 secs] [Times: user=0.08 sys=0.00, real=0.02 secs]
2014-01-31T23:22:06.565+0800: 30.035: [CMS-concurrent-sweep-start]
2014-01-31T23:22:06.602+0800: 30.072: [CMS-concurrent-sweep: 0.037/0.037 secs] [Times: user=0.14 sys=0.00, real=0.04 secs]
2014-01-31T23:22:06.603+0800: 30.072: [CMS-concurrent-reset-start]
2014-01-31T23:22:06.605+0800: 30.075: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=40 (full 15):
par new generation total 142016K, used 134074K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 71% used [0x00000007b6f00000, 0x00000007b82eead0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 155280K, used 122668K [0x00000007ba660000, 0x00000007c3e04000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 51283K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:07.112+0800: 30.582: [GC2014-01-31T23:22:07.112+0800: 30.582: [ParNew
Desired survivor size 14516224 bytes, new threshold 5 (max 15)
- age 1: 3363208 bytes, 3363208 total
- age 2: 2454496 bytes, 5817704 total
- age 3: 2572152 bytes, 8389856 total
- age 4: 2842496 bytes, 11232352 total
- age 5: 4343136 bytes, 15575488 total
: 134074K->19303K(142016K), 0.0133510 secs] 256743K->141972K(297296K), 0.0134260 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=41 (full 15):
par new generation total 142016K, used 19303K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 68% used [0x00000007b8ab0000, 0x00000007b9d89c68, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 155280K, used 122668K [0x00000007ba660000, 0x00000007c3e04000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 51283K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=41 (full 15):
par new generation total 142016K, used 132967K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 68% used [0x00000007b8ab0000, 0x00000007b9d89c68, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 155280K, used 122668K [0x00000007ba660000, 0x00000007c3e04000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 52611K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:07.522+0800: 30.991: [GC2014-01-31T23:22:07.522+0800: 30.991: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3966720 bytes, 3966720 total
- age 2: 2134032 bytes, 6100752 total
- age 3: 2453568 bytes, 8554320 total
- age 4: 2571960 bytes, 11126280 total
- age 5: 2842496 bytes, 13968776 total
: 132967K->21547K(142016K), 0.0169460 secs] 255636K->148463K(297296K), 0.0170300 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=42 (full 15):
par new generation total 142016K, used 21547K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 75% used [0x00000007b6f00000, 0x00000007b840ac98, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 155280K, used 126916K [0x00000007ba660000, 0x00000007c3e04000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 52611K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=42 (full 15):
par new generation total 142016K, used 135211K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 75% used [0x00000007b6f00000, 0x00000007b840ac98, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 155280K, used 126916K [0x00000007ba660000, 0x00000007c3e04000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 53720K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:07.757+0800: 31.226: [GC2014-01-31T23:22:07.757+0800: 31.227: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 2608760 bytes, 2608760 total
- age 2: 2656840 bytes, 5265600 total
- age 3: 2133448 bytes, 7399048 total
- age 4: 2446672 bytes, 9845720 total
- age 5: 2571960 bytes, 12417680 total
- age 6: 2842496 bytes, 15260176 total
: 135211K->20375K(142016K), 0.0121510 secs] 262127K->147292K(297296K), 0.0122180 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=43 (full 15):
par new generation total 142016K, used 20375K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 71% used [0x00000007b8ab0000, 0x00000007b9e95da0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 155280K, used 126916K [0x00000007ba660000, 0x00000007c3e04000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 53720K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=43 (full 15):
par new generation total 142016K, used 134039K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 71% used [0x00000007b8ab0000, 0x00000007b9e95da0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 155280K, used 126916K [0x00000007ba660000, 0x00000007c3e04000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 54810K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:08.268+0800: 31.738: [GC2014-01-31T23:22:08.268+0800: 31.738: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3241312 bytes, 3241312 total
- age 2: 1398296 bytes, 4639608 total
- age 3: 2648024 bytes, 7287632 total
- age 4: 2133448 bytes, 9421080 total
- age 5: 2446504 bytes, 11867584 total
- age 6: 2571960 bytes, 14439544 total
: 134039K->21596K(142016K), 0.0160010 secs] 260956K->151295K(297296K), 0.0160870 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=44 (full 15):
par new generation total 142016K, used 21596K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b8417020, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 155280K, used 129699K [0x00000007ba660000, 0x00000007c3e04000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 54810K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:08.285+0800: 31.754: [GC [1 CMS-initial-mark: 129699K(155280K)] 153585K(297296K), 0.0076520 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:22:08.292+0800: 31.762: [CMS-concurrent-mark-start]
2014-01-31T23:22:08.474+0800: 31.944: [CMS-concurrent-mark: 0.087/0.182 secs] [Times: user=0.33 sys=0.01, real=0.18 secs]
2014-01-31T23:22:08.474+0800: 31.944: [GC[YG occupancy: 67414 K (142016 K)]2014-01-31T23:22:08.474+0800: 31.944: [Rescan (parallel) , 0.0313210 secs]2014-01-31T23:22:08.506+0800: 31.975: [weak refs processing, 0.0000990 secs]2014-01-31T23:22:08.506+0800: 31.975: [scrub string table, 0.0007290 secs] [1 CMS-remark: 129699K(155280K)] 197113K(297296K), 0.0322210 secs] [Times: user=0.06 sys=0.00, real=0.03 secs]
2014-01-31T23:22:08.507+0800: 31.976: [CMS-concurrent-sweep-start]
2014-01-31T23:22:08.537+0800: 32.006: [CMS-concurrent-sweep: 0.030/0.030 secs] [Times: user=0.04 sys=0.00, real=0.03 secs]
2014-01-31T23:22:08.537+0800: 32.006: [CMS-concurrent-reset-start]
2014-01-31T23:22:08.539+0800: 32.008: [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 16):
par new generation total 142016K, used 135260K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b8417020, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 164048K, used 129596K [0x00000007ba660000, 0x00000007c4694000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 56140K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:08.860+0800: 32.329: [GC2014-01-31T23:22:08.860+0800: 32.329: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 5012520 bytes, 5012520 total
- age 2: 1837368 bytes, 6849888 total
- age 3: 1398160 bytes, 8248048 total
- age 4: 2647552 bytes, 10895600 total
- age 5: 2130888 bytes, 13026488 total
- age 6: 2444816 bytes, 15471304 total
- age 7: 2571920 bytes, 18043224 total
: 135260K->21522K(142016K), 0.0150970 secs] 264856K->151118K(306064K), 0.0151870 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=45 (full 16):
par new generation total 142016K, used 21522K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 75% used [0x00000007b8ab0000, 0x00000007b9fb4848, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 164048K, used 129596K [0x00000007ba660000, 0x00000007c4694000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 56140K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=45 (full 16):
par new generation total 142016K, used 135186K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 75% used [0x00000007b8ab0000, 0x00000007b9fb4848, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 164048K, used 129596K [0x00000007ba660000, 0x00000007c4694000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 57383K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:09.210+0800: 32.679: [GC2014-01-31T23:22:09.210+0800: 32.679: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3087016 bytes, 3087016 total
- age 2: 2741808 bytes, 5828824 total
- age 3: 1837288 bytes, 7666112 total
- age 4: 1398120 bytes, 9064232 total
- age 5: 2646384 bytes, 11710616 total
- age 6: 2130888 bytes, 13841504 total
: 135186K->23470K(142016K), 0.0193120 secs] 264782K->157980K(306064K), 0.0193800 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
Heap after GC invocations=46 (full 16):
par new generation total 142016K, used 23470K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 82% used [0x00000007b6f00000, 0x00000007b85eb9c8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 164048K, used 134509K [0x00000007ba660000, 0x00000007c4694000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 57383K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=46 (full 16):
par new generation total 142016K, used 137134K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 82% used [0x00000007b6f00000, 0x00000007b85eb9c8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 164048K, used 134509K [0x00000007ba660000, 0x00000007c4694000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 58632K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:09.599+0800: 33.069: [GC2014-01-31T23:22:09.599+0800: 33.069: [ParNew
Desired survivor size 14516224 bytes, new threshold 7 (max 15)
- age 1: 3624000 bytes, 3624000 total
- age 2: 1830896 bytes, 5454896 total
- age 3: 2741768 bytes, 8196664 total
- age 4: 1837288 bytes, 10033952 total
- age 5: 1398120 bytes, 11432072 total
- age 6: 2645864 bytes, 14077936 total
- age 7: 2130848 bytes, 16208784 total
: 137134K->22326K(142016K), 0.0168800 secs] 271644K->156836K(306064K), 0.0169560 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=47 (full 16):
par new generation total 142016K, used 22326K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 78% used [0x00000007b8ab0000, 0x00000007ba07d928, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 164048K, used 134509K [0x00000007ba660000, 0x00000007c4694000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 58632K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=47 (full 16):
par new generation total 142016K, used 135990K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 78% used [0x00000007b8ab0000, 0x00000007ba07d928, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 164048K, used 134509K [0x00000007ba660000, 0x00000007c4694000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 59881K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:10.010+0800: 33.480: [GC2014-01-31T23:22:10.011+0800: 33.480: [ParNew
Desired survivor size 14516224 bytes, new threshold 7 (max 15)
- age 1: 3946424 bytes, 3946424 total
- age 2: 1969696 bytes, 5916120 total
- age 3: 1830144 bytes, 7746264 total
- age 4: 2741344 bytes, 10487608 total
- age 5: 1837288 bytes, 12324896 total
- age 6: 1398120 bytes, 13723016 total
- age 7: 2645752 bytes, 16368768 total
: 135990K->20838K(142016K), 0.0203350 secs] 270500K->157452K(306064K), 0.0204080 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=48 (full 16):
par new generation total 142016K, used 20838K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 73% used [0x00000007b6f00000, 0x00000007b8359938, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 164048K, used 136614K [0x00000007ba660000, 0x00000007c4694000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 59881K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:10.031+0800: 33.500: [GC [1 CMS-initial-mark: 136614K(164048K)] 159742K(306064K), 0.0085140 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
2014-01-31T23:22:10.040+0800: 33.509: [CMS-concurrent-mark-start]
2014-01-31T23:22:10.233+0800: 33.703: [CMS-concurrent-mark: 0.109/0.194 secs] [Times: user=0.45 sys=0.01, real=0.19 secs]
2014-01-31T23:22:10.234+0800: 33.703: [GC[YG occupancy: 73625 K (142016 K)]2014-01-31T23:22:10.234+0800: 33.703: [Rescan (parallel) , 0.0345120 secs]2014-01-31T23:22:10.268+0800: 33.738: [weak refs processing, 0.0000910 secs]2014-01-31T23:22:10.268+0800: 33.738: [scrub string table, 0.0007890 secs] [1 CMS-remark: 136614K(164048K)] 210239K(306064K), 0.0354640 secs] [Times: user=0.07 sys=0.00, real=0.03 secs]
2014-01-31T23:22:10.269+0800: 33.739: [CMS-concurrent-sweep-start]
2014-01-31T23:22:10.302+0800: 33.771: [CMS-concurrent-sweep: 0.032/0.033 secs] [Times: user=0.07 sys=0.01, real=0.04 secs]
2014-01-31T23:22:10.302+0800: 33.771: [CMS-concurrent-reset-start]
2014-01-31T23:22:10.304+0800: 33.773: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=48 (full 17):
par new generation total 142016K, used 134502K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 73% used [0x00000007b6f00000, 0x00000007b8359938, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 172720K, used 136447K [0x00000007ba660000, 0x00000007c4f0c000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 60801K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:10.503+0800: 33.972: [GC2014-01-31T23:22:10.503+0800: 33.972: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 4241888 bytes, 4241888 total
- age 2: 2195336 bytes, 6437224 total
- age 3: 1955384 bytes, 8392608 total
- age 4: 1829888 bytes, 10222496 total
- age 5: 2741200 bytes, 12963696 total
- age 6: 1837288 bytes, 14800984 total
- age 7: 1398120 bytes, 16199104 total
: 134502K->22270K(142016K), 0.0247420 secs] 270949K->161307K(314736K), 0.0248410 secs] [Times: user=0.07 sys=0.00, real=0.02 secs]
Heap after GC invocations=49 (full 17):
par new generation total 142016K, used 22270K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 78% used [0x00000007b8ab0000, 0x00000007ba06f990, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 172720K, used 139037K [0x00000007ba660000, 0x00000007c4f0c000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 60801K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=49 (full 17):
par new generation total 142016K, used 135934K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 78% used [0x00000007b8ab0000, 0x00000007ba06f990, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 172720K, used 139037K [0x00000007ba660000, 0x00000007c4f0c000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 61159K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:11.601+0800: 35.070: [GC2014-01-31T23:22:11.601+0800: 35.070: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 8290608 bytes, 8290608 total
- age 2: 2611976 bytes, 10902584 total
- age 3: 2195296 bytes, 13097880 total
- age 4: 1955272 bytes, 15053152 total
- age 5: 1827480 bytes, 16880632 total
- age 6: 2741200 bytes, 19621832 total
: 135934K->22891K(142016K), 0.0214470 secs] 274971K->165100K(314736K), 0.0215180 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=50 (full 17):
par new generation total 142016K, used 22891K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 80% used [0x00000007b6f00000, 0x00000007b855ad90, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 172720K, used 142208K [0x00000007ba660000, 0x00000007c4f0c000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 61159K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:11.623+0800: 35.092: [GC [1 CMS-initial-mark: 142208K(172720K)] 167292K(314736K), 0.0091510 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:22:11.632+0800: 35.101: [CMS-concurrent-mark-start]
2014-01-31T23:22:11.744+0800: 35.213: [CMS-concurrent-mark: 0.097/0.112 secs] [Times: user=0.31 sys=0.01, real=0.11 secs]
2014-01-31T23:22:11.744+0800: 35.213: [GC[YG occupancy: 44844 K (142016 K)]2014-01-31T23:22:11.744+0800: 35.213: [Rescan (parallel) , 0.0096140 secs]2014-01-31T23:22:11.753+0800: 35.223: [weak refs processing, 0.0002120 secs]2014-01-31T23:22:11.754+0800: 35.223: [scrub string table, 0.0007980 secs] [1 CMS-remark: 142208K(172720K)] 187053K(314736K), 0.0107210 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-31T23:22:11.754+0800: 35.224: [CMS-concurrent-sweep-start]
2014-01-31T23:22:11.788+0800: 35.257: [CMS-concurrent-sweep: 0.033/0.033 secs] [Times: user=0.07 sys=0.00, real=0.03 secs]
2014-01-31T23:22:11.788+0800: 35.257: [CMS-concurrent-reset-start]
2014-01-31T23:22:11.790+0800: 35.260: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
{Heap before GC invocations=50 (full 18):
par new generation total 142016K, used 136555K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 80% used [0x00000007b6f00000, 0x00000007b855ad90, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 179616K, used 141894K [0x00000007ba660000, 0x00000007c55c8000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 61186K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:12.111+0800: 35.580: [GC2014-01-31T23:22:12.111+0800: 35.580: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 8577416 bytes, 8577416 total
- age 2: 6716032 bytes, 15293448 total
- age 3: 2566832 bytes, 17860280 total
- age 4: 2193768 bytes, 20054048 total
: 136555K->28308K(142016K), 0.0257520 secs] 278449K->176599K(321632K), 0.0258210 secs] [Times: user=0.04 sys=0.01, real=0.02 secs]
Heap after GC invocations=51 (full 18):
par new generation total 142016K, used 28308K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 99% used [0x00000007b8ab0000, 0x00000007ba655188, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 179616K, used 148291K [0x00000007ba660000, 0x00000007c55c8000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 61186K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:12.137+0800: 35.606: [GC [1 CMS-initial-mark: 148291K(179616K)] 178830K(321632K), 0.0078680 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:22:12.145+0800: 35.615: [CMS-concurrent-mark-start]
2014-01-31T23:22:12.256+0800: 35.726: [CMS-concurrent-mark: 0.093/0.111 secs] [Times: user=0.37 sys=0.01, real=0.11 secs]
2014-01-31T23:22:12.256+0800: 35.726: [GC[YG occupancy: 46100 K (142016 K)]2014-01-31T23:22:12.256+0800: 35.726: [Rescan (parallel) , 0.0073340 secs]2014-01-31T23:22:12.264+0800: 35.733: [weak refs processing, 0.0000970 secs]2014-01-31T23:22:12.264+0800: 35.733: [scrub string table, 0.0007900 secs] [1 CMS-remark: 148291K(179616K)] 194391K(321632K), 0.0082920 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-01-31T23:22:12.265+0800: 35.734: [CMS-concurrent-sweep-start]
2014-01-31T23:22:12.298+0800: 35.768: [CMS-concurrent-sweep: 0.034/0.034 secs] [Times: user=0.12 sys=0.00, real=0.03 secs]
2014-01-31T23:22:12.299+0800: 35.768: [CMS-concurrent-reset-start]
2014-01-31T23:22:12.301+0800: 35.770: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
{Heap before GC invocations=51 (full 19):
par new generation total 142016K, used 141972K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 99% used [0x00000007b8ab0000, 0x00000007ba655188, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 187440K, used 148075K [0x00000007ba660000, 0x00000007c5d6c000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 61325K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:12.867+0800: 36.336: [GC2014-01-31T23:22:12.867+0800: 36.336: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 6615016 bytes, 6615016 total
- age 2: 4857192 bytes, 11472208 total
: 141972K->19982K(142016K), 0.0266960 secs] 290047K->176659K(329456K), 0.0267800 secs] [Times: user=0.04 sys=0.01, real=0.03 secs]
Heap after GC invocations=52 (full 19):
par new generation total 142016K, used 19982K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 70% used [0x00000007b6f00000, 0x00000007b8283980, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 187440K, used 156676K [0x00000007ba660000, 0x00000007c5d6c000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 61325K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:12.894+0800: 36.363: [GC [1 CMS-initial-mark: 156676K(187440K)] 178921K(329456K), 0.0060660 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:22:12.900+0800: 36.369: [CMS-concurrent-mark-start]
2014-01-31T23:22:13.001+0800: 36.471: [CMS-concurrent-mark: 0.096/0.101 secs] [Times: user=0.34 sys=0.01, real=0.10 secs]
2014-01-31T23:22:13.001+0800: 36.471: [GC[YG occupancy: 47073 K (142016 K)]2014-01-31T23:22:13.001+0800: 36.471: [Rescan (parallel) , 0.0077720 secs]2014-01-31T23:22:13.009+0800: 36.479: [weak refs processing, 0.0001020 secs]2014-01-31T23:22:13.009+0800: 36.479: [scrub string table, 0.0007920 secs] [1 CMS-remark: 156676K(187440K)] 203750K(329456K), 0.0087450 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:22:13.010+0800: 36.480: [CMS-concurrent-sweep-start]
2014-01-31T23:22:13.051+0800: 36.520: [CMS-concurrent-sweep: 0.040/0.040 secs] [Times: user=0.13 sys=0.01, real=0.04 secs]
2014-01-31T23:22:13.051+0800: 36.520: [CMS-concurrent-reset-start]
2014-01-31T23:22:13.053+0800: 36.523: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=52 (full 20):
par new generation total 142016K, used 133646K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 70% used [0x00000007b6f00000, 0x00000007b8283980, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 198312K, used 156666K [0x00000007ba660000, 0x00000007c680a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 61329K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:13.328+0800: 36.798: [GC2014-01-31T23:22:13.328+0800: 36.798: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 8990304 bytes, 8990304 total
- age 2: 4849352 bytes, 13839656 total
- age 3: 3031608 bytes, 16871264 total
: 133646K->20480K(142016K), 0.0133600 secs] 290312K->177146K(340328K), 0.0134280 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
Heap after GC invocations=53 (full 20):
par new generation total 142016K, used 20480K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 72% used [0x00000007b8ab0000, 0x00000007b9eb0228, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 198312K, used 156666K [0x00000007ba660000, 0x00000007c680a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 61329K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=53 (full 20):
par new generation total 142016K, used 134144K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 72% used [0x00000007b8ab0000, 0x00000007b9eb0228, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 198312K, used 156666K [0x00000007ba660000, 0x00000007c680a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 61672K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:14.084+0800: 37.553: [GC2014-01-31T23:22:14.084+0800: 37.553: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4564032 bytes, 4564032 total
- age 2: 5429232 bytes, 9993264 total
- age 3: 2072824 bytes, 12066088 total
: 134144K->21247K(142016K), 0.0140580 secs] 290810K->180873K(340328K), 0.0141560 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=54 (full 20):
par new generation total 142016K, used 21247K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 74% used [0x00000007b6f00000, 0x00000007b83bfe18, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 198312K, used 159626K [0x00000007ba660000, 0x00000007c680a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 61672K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=54 (full 20):
par new generation total 142016K, used 134911K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 74% used [0x00000007b6f00000, 0x00000007b83bfe18, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 198312K, used 159626K [0x00000007ba660000, 0x00000007c680a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 62684K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:14.357+0800: 37.827: [GC2014-01-31T23:22:14.357+0800: 37.827: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4203984 bytes, 4203984 total
- age 2: 2316936 bytes, 6520920 total
- age 3: 4542672 bytes, 11063592 total
- age 4: 2072584 bytes, 13136176 total
: 134911K->15563K(142016K), 0.0117290 secs] 294537K->175189K(340328K), 0.0118030 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=55 (full 20):
par new generation total 142016K, used 15563K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 54% used [0x00000007b8ab0000, 0x00000007b99e2e90, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 198312K, used 159626K [0x00000007ba660000, 0x00000007c680a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 62684K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=55 (full 20):
par new generation total 142016K, used 129227K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 54% used [0x00000007b8ab0000, 0x00000007b99e2e90, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 198312K, used 159626K [0x00000007ba660000, 0x00000007c680a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 63731K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:14.634+0800: 38.104: [GC2014-01-31T23:22:14.634+0800: 38.104: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3075112 bytes, 3075112 total
- age 2: 2200656 bytes, 5275768 total
- age 3: 1685672 bytes, 6961440 total
- age 4: 4542136 bytes, 11503576 total
- age 5: 2072584 bytes, 13576160 total
: 129227K->15742K(142016K), 0.0106800 secs] 288853K->175368K(340328K), 0.0107790 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=56 (full 20):
par new generation total 142016K, used 15742K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 55% used [0x00000007b6f00000, 0x00000007b7e5f890, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 198312K, used 159626K [0x00000007ba660000, 0x00000007c680a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 63731K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=56 (full 20):
par new generation total 142016K, used 129406K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 55% used [0x00000007b6f00000, 0x00000007b7e5f890, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 198312K, used 159626K [0x00000007ba660000, 0x00000007c680a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 64675K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:15.026+0800: 38.496: [GC2014-01-31T23:22:15.026+0800: 38.496: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 3745160 bytes, 3745160 total
- age 2: 1660664 bytes, 5405824 total
- age 3: 2199992 bytes, 7605816 total
- age 4: 1683616 bytes, 9289432 total
- age 5: 4542096 bytes, 13831528 total
- age 6: 2072584 bytes, 15904112 total
: 129406K->18255K(142016K), 0.0125850 secs] 289032K->177881K(340328K), 0.0126540 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=57 (full 20):
par new generation total 142016K, used 18255K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 64% used [0x00000007b8ab0000, 0x00000007b9c83ca8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 198312K, used 159626K [0x00000007ba660000, 0x00000007c680a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 64675K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=57 (full 20):
par new generation total 142016K, used 131919K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 64% used [0x00000007b8ab0000, 0x00000007b9c83ca8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 198312K, used 159626K [0x00000007ba660000, 0x00000007c680a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 65147K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:15.371+0800: 38.840: [GC2014-01-31T23:22:15.371+0800: 38.840: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 4032000 bytes, 4032000 total
- age 2: 2442224 bytes, 6474224 total
- age 3: 1640272 bytes, 8114496 total
- age 4: 2199920 bytes, 10314416 total
- age 5: 1683576 bytes, 11997992 total
- age 6: 4542096 bytes, 16540088 total
: 131919K->27918K(142016K), 0.0221960 secs] 291545K->189570K(340328K), 0.0222830 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=58 (full 20):
par new generation total 142016K, used 27918K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 98% used [0x00000007b6f00000, 0x00000007b8a43be8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 198312K, used 161651K [0x00000007ba660000, 0x00000007c680a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 65147K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=58 (full 20):
par new generation total 142016K, used 141582K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 98% used [0x00000007b6f00000, 0x00000007b8a43be8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 198312K, used 161651K [0x00000007ba660000, 0x00000007c680a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 66219K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:15.721+0800: 39.190: [GC2014-01-31T23:22:15.721+0800: 39.190: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3070328 bytes, 3070328 total
- age 2: 3156512 bytes, 6226840 total
- age 3: 2437296 bytes, 8664136 total
- age 4: 1639816 bytes, 10303952 total
- age 5: 2199176 bytes, 12503128 total
- age 6: 1682288 bytes, 14185416 total
: 141582K->19372K(142016K), 0.0189600 secs] 303234K->185459K(340328K), 0.0190360 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=59 (full 20):
par new generation total 142016K, used 19372K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 68% used [0x00000007b8ab0000, 0x00000007b9d9b278, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 198312K, used 166087K [0x00000007ba660000, 0x00000007c680a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 66219K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:15.740+0800: 39.209: [GC [1 CMS-initial-mark: 166087K(198312K)] 187632K(340328K), 0.0113650 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-31T23:22:15.751+0800: 39.221: [CMS-concurrent-mark-start]
2014-01-31T23:22:15.996+0800: 39.466: [CMS-concurrent-mark: 0.107/0.245 secs] [Times: user=0.47 sys=0.01, real=0.24 secs]
2014-01-31T23:22:15.997+0800: 39.466: [GC[YG occupancy: 113241 K (142016 K)]2014-01-31T23:22:15.997+0800: 39.466: [Rescan (parallel) , 0.0568330 secs]2014-01-31T23:22:16.054+0800: 39.523: [weak refs processing, 0.0000960 secs]2014-01-31T23:22:16.054+0800: 39.523: [scrub string table, 0.0008580 secs] [1 CMS-remark: 166087K(198312K)] 279328K(340328K), 0.0578630 secs] [Times: user=0.11 sys=0.00, real=0.06 secs]
2014-01-31T23:22:16.055+0800: 39.524: [CMS-concurrent-sweep-start]
2014-01-31T23:22:16.095+0800: 39.564: [CMS-concurrent-sweep: 0.039/0.040 secs] [Times: user=0.08 sys=0.01, real=0.04 secs]
2014-01-31T23:22:16.095+0800: 39.564: [CMS-concurrent-reset-start]
2014-01-31T23:22:16.097+0800: 39.566: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=59 (full 21):
par new generation total 142016K, used 133036K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 68% used [0x00000007b8ab0000, 0x00000007b9d9b278, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 210152K, used 166017K [0x00000007ba660000, 0x00000007c739a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 67431K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:16.110+0800: 39.579: [GC2014-01-31T23:22:16.110+0800: 39.579: [ParNew
Desired survivor size 14516224 bytes, new threshold 7 (max 15)
- age 1: 3092608 bytes, 3092608 total
- age 2: 1954864 bytes, 5047472 total
- age 3: 3055624 bytes, 8103096 total
- age 4: 2437296 bytes, 10540392 total
- age 5: 1639800 bytes, 12180192 total
- age 6: 2199072 bytes, 14379264 total
- age 7: 1679600 bytes, 16058864 total
: 133036K->18856K(142016K), 0.0200760 secs] 299054K->184873K(352168K), 0.0201540 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=60 (full 21):
par new generation total 142016K, used 18856K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 66% used [0x00000007b6f00000, 0x00000007b816a0a8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 210152K, used 166017K [0x00000007ba660000, 0x00000007c739a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 67431K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=60 (full 21):
par new generation total 142016K, used 132520K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 66% used [0x00000007b6f00000, 0x00000007b816a0a8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 210152K, used 166017K [0x00000007ba660000, 0x00000007c739a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 68499K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:16.481+0800: 39.950: [GC2014-01-31T23:22:16.481+0800: 39.950: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 3572840 bytes, 3572840 total
- age 2: 1962056 bytes, 5534896 total
- age 3: 1952008 bytes, 7486904 total
- age 4: 3055584 bytes, 10542488 total
- age 5: 2437056 bytes, 12979544 total
- age 6: 1639720 bytes, 14619264 total
- age 7: 2199072 bytes, 16818336 total
: 132520K->22097K(142016K), 0.0229560 secs] 298537K->189759K(352168K), 0.0230480 secs] [Times: user=0.04 sys=0.01, real=0.02 secs]
Heap after GC invocations=61 (full 21):
par new generation total 142016K, used 22097K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b8ab0000, 0x00000007ba044690, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 210152K, used 167661K [0x00000007ba660000, 0x00000007c739a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 68499K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=61 (full 21):
par new generation total 142016K, used 135761K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b8ab0000, 0x00000007ba044690, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 210152K, used 167661K [0x00000007ba660000, 0x00000007c739a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 69556K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:16.817+0800: 40.287: [GC2014-01-31T23:22:16.817+0800: 40.287: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 3704192 bytes, 3704192 total
- age 2: 2155104 bytes, 5859296 total
- age 3: 1961840 bytes, 7821136 total
- age 4: 1951944 bytes, 9773080 total
- age 5: 3055616 bytes, 12828696 total
- age 6: 2436600 bytes, 15265296 total
: 135761K->23532K(142016K), 0.0230440 secs] 303423K->194956K(352168K), 0.0231320 secs] [Times: user=0.04 sys=0.01, real=0.03 secs]
Heap after GC invocations=62 (full 21):
par new generation total 142016K, used 23532K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 83% used [0x00000007b6f00000, 0x00000007b85fb310, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 210152K, used 171423K [0x00000007ba660000, 0x00000007c739a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 69556K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=62 (full 21):
par new generation total 142016K, used 137196K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 83% used [0x00000007b6f00000, 0x00000007b85fb310, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 210152K, used 171423K [0x00000007ba660000, 0x00000007c739a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 70578K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:17.124+0800: 40.594: [GC2014-01-31T23:22:17.124+0800: 40.594: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2379720 bytes, 2379720 total
- age 2: 2213904 bytes, 4593624 total
- age 3: 2153352 bytes, 6746976 total
- age 4: 1961816 bytes, 8708792 total
- age 5: 1949592 bytes, 10658384 total
- age 6: 3055616 bytes, 13714000 total
: 137196K->14869K(142016K), 0.0221460 secs] 308620K->188690K(352168K), 0.0222360 secs] [Times: user=0.07 sys=0.00, real=0.02 secs]
Heap after GC invocations=63 (full 21):
par new generation total 142016K, used 14869K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 52% used [0x00000007b8ab0000, 0x00000007b9935488, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 210152K, used 173821K [0x00000007ba660000, 0x00000007c739a000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 70578K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:17.147+0800: 40.616: [GC [1 CMS-initial-mark: 173821K(210152K)] 191950K(352168K), 0.0122730 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-31T23:22:17.159+0800: 40.629: [CMS-concurrent-mark-start]
2014-01-31T23:22:17.393+0800: 40.863: [CMS-concurrent-mark: 0.129/0.234 secs] [Times: user=0.56 sys=0.03, real=0.24 secs]
2014-01-31T23:22:17.394+0800: 40.863: [GC[YG occupancy: 90618 K (142016 K)]2014-01-31T23:22:17.394+0800: 40.863: [Rescan (parallel) , 0.0423130 secs]2014-01-31T23:22:17.436+0800: 40.905: [weak refs processing, 0.0001210 secs]2014-01-31T23:22:17.436+0800: 40.905: [scrub string table, 0.0009540 secs] [1 CMS-remark: 173821K(210152K)] 264440K(352168K), 0.0434770 secs] [Times: user=0.10 sys=0.00, real=0.04 secs]
2014-01-31T23:22:17.437+0800: 40.907: [CMS-concurrent-sweep-start]
2014-01-31T23:22:17.489+0800: 40.958: [CMS-concurrent-sweep: 0.052/0.052 secs] [Times: user=0.17 sys=0.01, real=0.05 secs]
2014-01-31T23:22:17.489+0800: 40.959: [CMS-concurrent-reset-start]
2014-01-31T23:22:17.492+0800: 40.961: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
{Heap before GC invocations=63 (full 22):
par new generation total 142016K, used 128533K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 52% used [0x00000007b8ab0000, 0x00000007b9935488, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 219792K, used 173633K [0x00000007ba660000, 0x00000007c7d04000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 71430K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:17.737+0800: 41.206: [GC2014-01-31T23:22:17.737+0800: 41.206: [ParNew
Desired survivor size 14516224 bytes, new threshold 7 (max 15)
- age 1: 3212360 bytes, 3212360 total
- age 2: 1397272 bytes, 4609632 total
- age 3: 2210968 bytes, 6820600 total
- age 4: 2151192 bytes, 8971792 total
- age 5: 1961712 bytes, 10933504 total
- age 6: 1948064 bytes, 12881568 total
- age 7: 3055432 bytes, 15937000 total
: 128533K->26516K(142016K), 0.0238990 secs] 302166K->200149K(361808K), 0.0240030 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
Heap after GC invocations=64 (full 22):
par new generation total 142016K, used 26516K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 93% used [0x00000007b6f00000, 0x00000007b88e5390, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 219792K, used 173633K [0x00000007ba660000, 0x00000007c7d04000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 71430K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=64 (full 22):
par new generation total 142016K, used 140180K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 93% used [0x00000007b6f00000, 0x00000007b88e5390, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 219792K, used 173633K [0x00000007ba660000, 0x00000007c7d04000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 72004K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:18.091+0800: 41.561: [GC2014-01-31T23:22:18.091+0800: 41.561: [ParNew
Desired survivor size 14516224 bytes, new threshold 7 (max 15)
- age 1: 2800752 bytes, 2800752 total
- age 2: 2310496 bytes, 5111248 total
- age 3: 1378360 bytes, 6489608 total
- age 4: 2210968 bytes, 8700576 total
- age 5: 2151152 bytes, 10851728 total
- age 6: 1961360 bytes, 12813088 total
- age 7: 1947912 bytes, 14761000 total
: 140180K->18375K(142016K), 0.0522940 secs] 313813K->235956K(361808K), 0.0523790 secs] [Times: user=0.14 sys=0.02, real=0.05 secs]
Heap after GC invocations=65 (full 22):
par new generation total 142016K, used 18375K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 64% used [0x00000007b8ab0000, 0x00000007b9ca1f40, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 219792K, used 217580K [0x00000007ba660000, 0x00000007c7d04000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 72004K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:18.144+0800: 41.613: [GC [1 CMS-initial-mark: 217580K(219792K)] 235974K(361808K), 0.0125200 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:22:18.156+0800: 41.626: [CMS-concurrent-mark-start]
2014-01-31T23:22:18.428+0800: 41.897: [CMS-concurrent-mark: 0.128/0.271 secs] [Times: user=0.56 sys=0.02, real=0.27 secs]
2014-01-31T23:22:18.428+0800: 41.897: [GC[YG occupancy: 76954 K (142016 K)]2014-01-31T23:22:18.428+0800: 41.897: [Rescan (parallel) , 0.0396350 secs]2014-01-31T23:22:18.468+0800: 41.937: [weak refs processing, 0.0001450 secs]2014-01-31T23:22:18.468+0800: 41.937: [scrub string table, 0.0014330 secs] [1 CMS-remark: 217580K(219792K)] 294534K(361808K), 0.0413230 secs] [Times: user=0.08 sys=0.00, real=0.04 secs]
2014-01-31T23:22:18.469+0800: 41.939: [CMS-concurrent-sweep-start]
2014-01-31T23:22:18.514+0800: 41.984: [CMS-concurrent-sweep: 0.044/0.045 secs] [Times: user=0.09 sys=0.00, real=0.05 secs]
2014-01-31T23:22:18.514+0800: 41.984: [CMS-concurrent-reset-start]
2014-01-31T23:22:18.517+0800: 41.986: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=65 (full 23):
par new generation total 142016K, used 132039K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 64% used [0x00000007b8ab0000, 0x00000007b9ca1f40, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 275324K, used 217502K [0x00000007ba660000, 0x00000007cb33f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 72952K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:18.628+0800: 42.097: [GC2014-01-31T23:22:18.628+0800: 42.097: [ParNew
Desired survivor size 14516224 bytes, new threshold 7 (max 15)
- age 1: 3788432 bytes, 3788432 total
- age 2: 1969256 bytes, 5757688 total
- age 3: 2276064 bytes, 8033752 total
- age 4: 1373184 bytes, 9406936 total
- age 5: 2210968 bytes, 11617904 total
- age 6: 2148272 bytes, 13766176 total
- age 7: 1961360 bytes, 15727536 total
: 132039K->20121K(142016K), 0.0236380 secs] 349542K->239535K(417340K), 0.0237160 secs] [Times: user=0.04 sys=0.00, real=0.03 secs]
Heap after GC invocations=66 (full 23):
par new generation total 142016K, used 20121K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 70% used [0x00000007b6f00000, 0x00000007b82a6690, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 275324K, used 219413K [0x00000007ba660000, 0x00000007cb33f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 72952K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:18.652+0800: 42.121: [GC [1 CMS-initial-mark: 219413K(275324K)] 241468K(417340K), 0.0118870 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-31T23:22:18.664+0800: 42.133: [CMS-concurrent-mark-start]
2014-01-31T23:22:19.024+0800: 42.494: [CMS-concurrent-mark: 0.145/0.360 secs] [Times: user=0.71 sys=0.03, real=0.36 secs]
2014-01-31T23:22:19.025+0800: 42.494: [GC[YG occupancy: 103640 K (142016 K)]2014-01-31T23:22:19.025+0800: 42.494: [Rescan (parallel) , 0.0542110 secs]2014-01-31T23:22:19.079+0800: 42.548: [weak refs processing, 0.0001020 secs]2014-01-31T23:22:19.079+0800: 42.548: [scrub string table, 0.0010720 secs] [1 CMS-remark: 219413K(275324K)] 323053K(417340K), 0.0554850 secs] [Times: user=0.11 sys=0.00, real=0.06 secs]
2014-01-31T23:22:19.080+0800: 42.550: [CMS-concurrent-sweep-start]
2014-01-31T23:22:19.128+0800: 42.597: [CMS-concurrent-sweep: 0.047/0.047 secs] [Times: user=0.10 sys=0.00, real=0.04 secs]
2014-01-31T23:22:19.128+0800: 42.597: [CMS-concurrent-reset-start]
2014-01-31T23:22:19.130+0800: 42.600: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
{Heap before GC invocations=66 (full 24):
par new generation total 142016K, used 133785K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 70% used [0x00000007b6f00000, 0x00000007b82a6690, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 277720K, used 219396K [0x00000007ba660000, 0x00000007cb596000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 74127K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:19.191+0800: 42.660: [GC2014-01-31T23:22:19.191+0800: 42.660: [ParNew
Desired survivor size 14516224 bytes, new threshold 7 (max 15)
- age 1: 3187816 bytes, 3187816 total
- age 2: 2225776 bytes, 5413592 total
- age 3: 1893544 bytes, 7307136 total
- age 4: 2273376 bytes, 9580512 total
- age 5: 1369784 bytes, 10950296 total
- age 6: 2210968 bytes, 13161264 total
- age 7: 2147992 bytes, 15309256 total
: 133785K->21327K(142016K), 0.0217940 secs] 353182K->242648K(419736K), 0.0218680 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=67 (full 24):
par new generation total 142016K, used 21327K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 75% used [0x00000007b8ab0000, 0x00000007b9f83ea0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 277720K, used 221320K [0x00000007ba660000, 0x00000007cb596000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 74127K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=67 (full 24):
par new generation total 142016K, used 134991K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 75% used [0x00000007b8ab0000, 0x00000007b9f83ea0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 277720K, used 221320K [0x00000007ba660000, 0x00000007cb596000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 75388K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:19.673+0800: 43.142: [GC2014-01-31T23:22:19.673+0800: 43.142: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 9635032 bytes, 9635032 total
- age 2: 2114160 bytes, 11749192 total
- age 3: 2219168 bytes, 13968360 total
- age 4: 1888800 bytes, 15857160 total
- age 5: 2264568 bytes, 18121728 total
- age 6: 1368424 bytes, 19490152 total
- age 7: 2210416 bytes, 21700568 total
: 134991K->26923K(142016K), 0.0318180 secs] 356312K->250349K(419736K), 0.0319010 secs] [Times: user=0.06 sys=0.00, real=0.03 secs]
Heap after GC invocations=68 (full 24):
par new generation total 142016K, used 26923K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 94% used [0x00000007b6f00000, 0x00000007b894adb0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 277720K, used 223425K [0x00000007ba660000, 0x00000007cb596000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 75388K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=68 (full 24):
par new generation total 142016K, used 140587K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 94% used [0x00000007b6f00000, 0x00000007b894adb0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 277720K, used 223425K [0x00000007ba660000, 0x00000007cb596000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 76411K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:20.434+0800: 43.904: [GC2014-01-31T23:22:20.434+0800: 43.904: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 3867784 bytes, 3867784 total
- age 2: 8428032 bytes, 12295816 total
- age 3: 2112784 bytes, 14408600 total
- age 4: 2210784 bytes, 16619384 total
: 140587K->19758K(142016K), 0.0349610 secs] 364013K->250755K(419736K), 0.0350660 secs] [Times: user=0.07 sys=0.00, real=0.03 secs]
Heap after GC invocations=69 (full 24):
par new generation total 142016K, used 19758K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 69% used [0x00000007b8ab0000, 0x00000007b9dfba08, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 277720K, used 230996K [0x00000007ba660000, 0x00000007cb596000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 76411K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:20.469+0800: 43.939: [GC [1 CMS-initial-mark: 230996K(277720K)] 252976K(419736K), 0.0096900 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:22:20.479+0800: 43.949: [CMS-concurrent-mark-start]
2014-01-31T23:22:20.764+0800: 44.233: [CMS-concurrent-mark: 0.149/0.285 secs] [Times: user=0.76 sys=0.02, real=0.29 secs]
2014-01-31T23:22:20.764+0800: 44.234: [GC[YG occupancy: 78117 K (142016 K)]2014-01-31T23:22:20.764+0800: 44.234: [Rescan (parallel) , 0.0459410 secs]2014-01-31T23:22:20.810+0800: 44.280: [weak refs processing, 0.0000990 secs]2014-01-31T23:22:20.810+0800: 44.280: [scrub string table, 0.0010220 secs] [1 CMS-remark: 230996K(277720K)] 309114K(419736K), 0.0471420 secs] [Times: user=0.13 sys=0.00, real=0.05 secs]
2014-01-31T23:22:20.812+0800: 44.281: [CMS-concurrent-sweep-start]
2014-01-31T23:22:20.865+0800: 44.335: [CMS-concurrent-sweep: 0.053/0.054 secs] [Times: user=0.12 sys=0.00, real=0.05 secs]
2014-01-31T23:22:20.865+0800: 44.335: [CMS-concurrent-reset-start]
2014-01-31T23:22:20.868+0800: 44.337: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=69 (full 25):
par new generation total 142016K, used 132447K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6e0c570, 0x00000007b6f00000)
from space 28352K, 69% used [0x00000007b8ab0000, 0x00000007b9dfba08, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 292160K, used 230803K [0x00000007ba660000, 0x00000007cc3b0000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 77413K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:21.094+0800: 44.564: [GC2014-01-31T23:22:21.094+0800: 44.564: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 11111984 bytes, 11111984 total
- age 2: 2833168 bytes, 13945152 total
- age 3: 8407952 bytes, 22353104 total
- age 4: 2109888 bytes, 24462992 total
: 132447K->26127K(142016K), 0.0284770 secs] 363251K->275485K(434176K), 0.0285740 secs] [Times: user=0.05 sys=0.01, real=0.03 secs]
Heap after GC invocations=70 (full 25):
par new generation total 142016K, used 26127K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 92% used [0x00000007b6f00000, 0x00000007b8883f08, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 292160K, used 249357K [0x00000007ba660000, 0x00000007cc3b0000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 77413K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:21.124+0800: 44.593: [GC [1 CMS-initial-mark: 249357K(292160K)] 279581K(434176K), 0.0097710 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:22:21.133+0800: 44.603: [CMS-concurrent-mark-start]
2014-01-31T23:22:21.295+0800: 44.765: [CMS-concurrent-mark: 0.139/0.162 secs] [Times: user=0.53 sys=0.00, real=0.16 secs]
2014-01-31T23:22:21.295+0800: 44.765: [GC[YG occupancy: 49148 K (142016 K)]2014-01-31T23:22:21.296+0800: 44.765: [Rescan (parallel) , 0.0087820 secs]2014-01-31T23:22:21.304+0800: 44.774: [weak refs processing, 0.0001930 secs]2014-01-31T23:22:21.305+0800: 44.774: [scrub string table, 0.0010620 secs] [1 CMS-remark: 249357K(292160K)] 298506K(434176K), 0.0101320 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-31T23:22:21.306+0800: 44.775: [CMS-concurrent-sweep-start]
2014-01-31T23:22:21.354+0800: 44.823: [CMS-concurrent-sweep: 0.048/0.048 secs] [Times: user=0.10 sys=0.00, real=0.05 secs]
2014-01-31T23:22:21.354+0800: 44.824: [CMS-concurrent-reset-start]
2014-01-31T23:22:21.356+0800: 44.826: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=70 (full 26):
par new generation total 142016K, used 139791K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 92% used [0x00000007b6f00000, 0x00000007b8883f08, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 315580K, used 249305K [0x00000007ba660000, 0x00000007cda8f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 78150K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:21.872+0800: 45.341: [GC2014-01-31T23:22:21.872+0800: 45.341: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2690088 bytes, 2690088 total
- age 2: 1932984 bytes, 4623072 total
- age 3: 2824400 bytes, 7447472 total
: 139791K->11022K(142016K), 0.0311580 secs] 389097K->270625K(457596K), 0.0312430 secs] [Times: user=0.07 sys=0.01, real=0.03 secs]
Heap after GC invocations=71 (full 26):
par new generation total 142016K, used 11022K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 38% used [0x00000007b8ab0000, 0x00000007b9573b28, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 315580K, used 259602K [0x00000007ba660000, 0x00000007cda8f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 78150K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:21.904+0800: 45.373: [GC [1 CMS-initial-mark: 259602K(315580K)] 272660K(457596K), 0.0097780 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:22:21.913+0800: 45.383: [CMS-concurrent-mark-start]
2014-01-31T23:22:22.155+0800: 45.624: [CMS-concurrent-mark: 0.163/0.241 secs] [Times: user=0.90 sys=0.02, real=0.24 secs]
2014-01-31T23:22:22.155+0800: 45.624: [GC[YG occupancy: 69888 K (142016 K)]2014-01-31T23:22:22.155+0800: 45.624: [Rescan (parallel) , 0.0354220 secs]2014-01-31T23:22:22.190+0800: 45.660: [weak refs processing, 0.0001650 secs]2014-01-31T23:22:22.191+0800: 45.660: [scrub string table, 0.0015090 secs] [1 CMS-remark: 259602K(315580K)] 329491K(457596K), 0.0371790 secs] [Times: user=0.09 sys=0.00, real=0.04 secs]
2014-01-31T23:22:22.192+0800: 45.662: [CMS-concurrent-sweep-start]
2014-01-31T23:22:22.250+0800: 45.719: [CMS-concurrent-sweep: 0.057/0.058 secs] [Times: user=0.22 sys=0.00, real=0.06 secs]
2014-01-31T23:22:22.250+0800: 45.719: [CMS-concurrent-reset-start]
2014-01-31T23:22:22.252+0800: 45.722: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=71 (full 27):
par new generation total 142016K, used 124686K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 38% used [0x00000007b8ab0000, 0x00000007b9573b28, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 315580K, used 243130K [0x00000007ba660000, 0x00000007cda8f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 78974K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:22.484+0800: 45.953: [GC2014-01-31T23:22:22.484+0800: 45.953: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 6582240 bytes, 6582240 total
- age 2: 1918424 bytes, 8500664 total
- age 3: 1909192 bytes, 10409856 total
- age 4: 2819792 bytes, 13229648 total
: 124686K->16235K(142016K), 0.0230180 secs] 367816K->259365K(457596K), 0.0230860 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=72 (full 27):
par new generation total 142016K, used 16235K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 57% used [0x00000007b6f00000, 0x00000007b7edac68, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 315580K, used 243130K [0x00000007ba660000, 0x00000007cda8f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 78974K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=72 (full 27):
par new generation total 142016K, used 129899K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 57% used [0x00000007b6f00000, 0x00000007b7edac68, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 315580K, used 243130K [0x00000007ba660000, 0x00000007cda8f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 79751K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:23.668+0800: 47.137: [GC2014-01-31T23:22:23.668+0800: 47.137: [ParNew
Desired survivor size 14516224 bytes, new threshold 5 (max 15)
- age 1: 4877696 bytes, 4877696 total
- age 2: 5522984 bytes, 10400680 total
- age 3: 1916840 bytes, 12317520 total
- age 4: 1909152 bytes, 14226672 total
- age 5: 2819688 bytes, 17046360 total
: 129899K->22954K(142016K), 0.0316540 secs] 373029K->266084K(457596K), 0.0317310 secs] [Times: user=0.06 sys=0.00, real=0.03 secs]
Heap after GC invocations=73 (full 27):
par new generation total 142016K, used 22954K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 80% used [0x00000007b8ab0000, 0x00000007ba11a998, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 315580K, used 243130K [0x00000007ba660000, 0x00000007cda8f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 79751K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=73 (full 27):
par new generation total 142016K, used 136618K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 80% used [0x00000007b8ab0000, 0x00000007ba11a998, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 315580K, used 243130K [0x00000007ba660000, 0x00000007cda8f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80305K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:24.531+0800: 48.000: [GC2014-01-31T23:22:24.531+0800: 48.000: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1348512 bytes, 1348512 total
- age 2: 3354200 bytes, 4702712 total
- age 3: 5521408 bytes, 10224120 total
- age 4: 1915720 bytes, 12139840 total
- age 5: 1906824 bytes, 14046664 total
: 136618K->21676K(142016K), 0.0276570 secs] 379748K->267573K(457596K), 0.0277410 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=74 (full 27):
par new generation total 142016K, used 21676K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b842b2f0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 315580K, used 245896K [0x00000007ba660000, 0x00000007cda8f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80305K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=74 (full 27):
par new generation total 142016K, used 135340K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b842b2f0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 315580K, used 245896K [0x00000007ba660000, 0x00000007cda8f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80313K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:24.961+0800: 48.431: [GC2014-01-31T23:22:24.961+0800: 48.431: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 7426040 bytes, 7426040 total
- age 2: 1018888 bytes, 8444928 total
- age 3: 3343032 bytes, 11787960 total
- age 4: 5521360 bytes, 17309320 total
- age 5: 1915760 bytes, 19225080 total
- age 6: 1906712 bytes, 21131792 total
: 135340K->28333K(142016K), 0.0295560 secs] 381237K->274229K(457596K), 0.0296580 secs] [Times: user=0.08 sys=0.00, real=0.03 secs]
Heap after GC invocations=75 (full 27):
par new generation total 142016K, used 28333K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 99% used [0x00000007b8ab0000, 0x00000007ba65b4c0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 315580K, used 245896K [0x00000007ba660000, 0x00000007cda8f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80313K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=75 (full 27):
par new generation total 142016K, used 141997K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 99% used [0x00000007b8ab0000, 0x00000007ba65b4c0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 315580K, used 245896K [0x00000007ba660000, 0x00000007cda8f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80313K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:25.329+0800: 48.798: [GC2014-01-31T23:22:25.329+0800: 48.798: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 8348320 bytes, 8348320 total
- age 2: 5456120 bytes, 13804440 total
- age 3: 1018744 bytes, 14823184 total
- age 4: 3343032 bytes, 18166216 total
: 141997K->28351K(142016K), 0.0385550 secs] 387893K->284715K(457596K), 0.0386430 secs] [Times: user=0.08 sys=0.00, real=0.04 secs]
Heap after GC invocations=76 (full 27):
par new generation total 142016K, used 28351K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 99% used [0x00000007b6f00000, 0x00000007b8aafff8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 315580K, used 256363K [0x00000007ba660000, 0x00000007cda8f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80313K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=76 (full 27):
par new generation total 142016K, used 142015K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 99% used [0x00000007b6f00000, 0x00000007b8aafff8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 315580K, used 256363K [0x00000007ba660000, 0x00000007cda8f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80314K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:25.618+0800: 49.088: [GC2014-01-31T23:22:25.618+0800: 49.088: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 5911440 bytes, 5911440 total
- age 2: 7414808 bytes, 13326248 total
- age 3: 4624584 bytes, 17950832 total
: 142015K->27147K(142016K), 0.0251160 secs] 398379K->287789K(457596K), 0.0251970 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
Heap after GC invocations=77 (full 27):
par new generation total 142016K, used 27147K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 95% used [0x00000007b8ab0000, 0x00000007ba532f78, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 315580K, used 260641K [0x00000007ba660000, 0x00000007cda8f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80314K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:25.644+0800: 49.113: [GC [1 CMS-initial-mark: 260641K(315580K)] 289960K(457596K), 0.0105620 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:22:25.654+0800: 49.124: [CMS-concurrent-mark-start]
2014-01-31T23:22:25.810+0800: 49.280: [CMS-concurrent-mark: 0.153/0.156 secs] [Times: user=0.56 sys=0.02, real=0.16 secs]
2014-01-31T23:22:25.810+0800: 49.280: [GC[YG occupancy: 44489 K (142016 K)]2014-01-31T23:22:25.810+0800: 49.280: [Rescan (parallel) , 0.0073500 secs]2014-01-31T23:22:25.818+0800: 49.287: [weak refs processing, 0.0002320 secs]2014-01-31T23:22:25.818+0800: 49.287: [scrub string table, 0.0010630 secs] [1 CMS-remark: 260641K(315580K)] 305131K(457596K), 0.0087220 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-01-31T23:22:25.819+0800: 49.289: [CMS-concurrent-sweep-start]
2014-01-31T23:22:25.871+0800: 49.341: [CMS-concurrent-sweep: 0.052/0.052 secs] [Times: user=0.10 sys=0.00, real=0.06 secs]
2014-01-31T23:22:25.872+0800: 49.341: [CMS-concurrent-reset-start]
2014-01-31T23:22:25.873+0800: 49.343: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=77 (full 28):
par new generation total 142016K, used 140811K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 95% used [0x00000007b8ab0000, 0x00000007ba532f78, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 318620K, used 251707K [0x00000007ba660000, 0x00000007cdd87000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80419K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:26.570+0800: 50.039: [GC2014-01-31T23:22:26.570+0800: 50.039: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 9057392 bytes, 9057392 total
- age 2: 1788712 bytes, 10846104 total
- age 3: 5061552 bytes, 15907656 total
: 140811K->27004K(142016K), 0.0223640 secs] 392519K->281719K(460636K), 0.0224410 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=78 (full 28):
par new generation total 142016K, used 27004K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 95% used [0x00000007b6f00000, 0x00000007b895f258, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 318620K, used 254714K [0x00000007ba660000, 0x00000007cdd87000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80419K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=78 (full 28):
par new generation total 142016K, used 140668K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 95% used [0x00000007b6f00000, 0x00000007b895f258, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 318620K, used 254714K [0x00000007ba660000, 0x00000007cdd87000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80425K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:26.904+0800: 50.373: [GC2014-01-31T23:22:26.904+0800: 50.373: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 8998648 bytes, 8998648 total
- age 2: 7331592 bytes, 16330240 total
- age 3: 574640 bytes, 16904880 total
: 140668K->20408K(142016K), 0.0154440 secs] 395383K->279499K(460636K), 0.0155150 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=79 (full 28):
par new generation total 142016K, used 20408K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 71% used [0x00000007b8ab0000, 0x00000007b9e9e210, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 318620K, used 259091K [0x00000007ba660000, 0x00000007cdd87000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80425K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=79 (full 28):
par new generation total 142016K, used 122877K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 90% used [0x00000007b0000000, 0x00000007b6411370, 0x00000007b6f00000)
from space 28352K, 71% used [0x00000007b8ab0000, 0x00000007b9e9e210, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 318620K, used 259091K [0x00000007ba660000, 0x00000007cdd87000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80451K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:27.569+0800: 51.038: [GC2014-01-31T23:22:27.569+0800: 51.039: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 6642808 bytes, 6642808 total
- age 2: 5188464 bytes, 11831272 total
: 122877K->15513K(142016K), 0.0191140 secs] 381968K->279399K(460636K), 0.0192100 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=80 (full 28):
par new generation total 142016K, used 15513K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 54% used [0x00000007b6f00000, 0x00000007b7e26580, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 318620K, used 263885K [0x00000007ba660000, 0x00000007cdd87000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80451K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:27.591+0800: 51.060: [GC [1 CMS-initial-mark: 263885K(318620K)] 295787K(460636K), 0.0071590 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-01-31T23:22:27.598+0800: 51.067: [CMS-concurrent-mark-start]
{Heap before GC invocations=80 (full 29):
par new generation total 142016K, used 116503K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 88% used [0x00000007b0000000, 0x00000007b629f738, 0x00000007b6f00000)
from space 28352K, 54% used [0x00000007b6f00000, 0x00000007b7e26580, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 318620K, used 263885K [0x00000007ba660000, 0x00000007cdd87000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80718K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:27.794+0800: 51.264: [GC2014-01-31T23:22:27.795+0800: 51.264: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1966544 bytes, 1966544 total
- age 2: 4999112 bytes, 6965656 total
- age 3: 3167104 bytes, 10132760 total
: 116503K->11473K(142016K), 0.0107070 secs] 380388K->275359K(460636K), 0.0107890 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=81 (full 29):
par new generation total 142016K, used 11473K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 40% used [0x00000007b8ab0000, 0x00000007b95e46b8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 318620K, used 263885K [0x00000007ba660000, 0x00000007cdd87000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80718K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:27.861+0800: 51.331: [CMS-concurrent-mark: 0.194/0.263 secs] [Times: user=0.66 sys=0.07, real=0.27 secs]
2014-01-31T23:22:27.861+0800: 51.331: [GC[YG occupancy: 87952 K (142016 K)]2014-01-31T23:22:27.862+0800: 51.331: [Rescan (parallel) , 0.0087840 secs]2014-01-31T23:22:27.870+0800: 51.340: [weak refs processing, 0.0001200 secs]2014-01-31T23:22:27.870+0800: 51.340: [scrub string table, 0.0011030 secs] [1 CMS-remark: 263885K(318620K)] 351838K(460636K), 0.0100970 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:22:27.872+0800: 51.341: [CMS-concurrent-sweep-start]
{Heap before GC invocations=81 (full 29):
par new generation total 142016K, used 125137K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 40% used [0x00000007b8ab0000, 0x00000007b95e46b8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 318620K, used 256431K [0x00000007ba660000, 0x00000007cdd87000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80913K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:22:27.930+0800: 51.400: [GC2014-01-31T23:22:27.930+0800: 51.400: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 511152 bytes, 511152 total
- age 2: 1389784 bytes, 1900936 total
- age 3: 3236968 bytes, 5137904 total
- age 4: 3165648 bytes, 8303552 total
: 125137K->12780K(142016K), 0.0086980 secs] 381569K->269211K(460636K), 0.0087810 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
Heap after GC invocations=82 (full 29):
par new generation total 142016K, used 12780K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 45% used [0x00000007b6f00000, 0x00000007b7b7b1c8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 318620K, used 256431K [0x00000007ba660000, 0x00000007cdd87000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 80913K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:22:27.944+0800: 51.413: [CMS-concurrent-sweep: 0.062/0.072 secs] [Times: user=0.16 sys=0.00, real=0.07 secs]
2014-01-31T23:22:27.944+0800: 51.413: [CMS-concurrent-reset-start]
2014-01-31T23:22:27.946+0800: 51.416: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=82 (full 29):
par new generation total 142016K, used 126444K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 45% used [0x00000007b6f00000, 0x00000007b7b7b1c8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 324596K, used 256429K [0x00000007ba660000, 0x00000007ce35d000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 81621K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:23:59.221+0800: 142.691: [GC2014-01-31T23:23:59.221+0800: 142.691: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3615448 bytes, 3615448 total
- age 2: 146000 bytes, 3761448 total
- age 3: 1261864 bytes, 5023312 total
- age 4: 3236832 bytes, 8260144 total
- age 5: 3165648 bytes, 11425792 total
: 126444K->16200K(142016K), 0.0115150 secs] 382874K->272630K(466612K), 0.0115840 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=83 (full 29):
par new generation total 142016K, used 16200K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 57% used [0x00000007b8ab0000, 0x00000007b9a822c8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 324596K, used 256429K [0x00000007ba660000, 0x00000007ce35d000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 81621K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=83 (full 29):
par new generation total 142016K, used 54664K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 33% used [0x00000007b0000000, 0x00000007b258fd48, 0x00000007b6f00000)
from space 28352K, 57% used [0x00000007b8ab0000, 0x00000007b9a822c8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 324596K, used 256429K [0x00000007ba660000, 0x00000007ce35d000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 81689K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:24:39.069+0800: 182.538: [GC2014-01-31T23:24:39.069+0800: 182.539: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 310520 bytes, 310520 total
- age 2: 1091952 bytes, 1402472 total
- age 3: 138384 bytes, 1540856 total
- age 4: 1223832 bytes, 2764688 total
- age 5: 3236832 bytes, 6001520 total
- age 6: 3165648 bytes, 9167168 total
: 54664K->10011K(142016K), 0.0081270 secs] 311093K->266441K(466612K), 0.0082280 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=84 (full 29):
par new generation total 142016K, used 10011K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 35% used [0x00000007b6f00000, 0x00000007b78c6fb8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 324596K, used 256429K [0x00000007ba660000, 0x00000007ce35d000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 81689K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:24:39.077+0800: 182.547: [GC [1 CMS-initial-mark: 256429K(324596K)] 266474K(466612K), 0.0076300 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:24:39.085+0800: 182.555: [CMS-concurrent-mark-start]
2014-01-31T23:24:39.218+0800: 182.687: [CMS-concurrent-mark: 0.133/0.133 secs] [Times: user=0.26 sys=0.00, real=0.13 secs]
2014-01-31T23:24:39.218+0800: 182.687: [GC[YG occupancy: 10138 K (142016 K)]2014-01-31T23:24:39.218+0800: 182.687: [Rescan (parallel) , 0.0046570 secs]2014-01-31T23:24:39.223+0800: 182.692: [weak refs processing, 0.0003850 secs]2014-01-31T23:24:39.223+0800: 182.692: [class unloading, 0.0049590 secs]2014-01-31T23:24:39.228+0800: 182.697: [scrub symbol table, 0.0137950 secs]2014-01-31T23:24:39.242+0800: 182.711: [scrub string table, 0.0011000 secs] [1 CMS-remark: 256429K(324596K)] 266568K(466612K), 0.0269270 secs] [Times: user=0.03 sys=0.00, real=0.03 secs]
2014-01-31T23:24:39.245+0800: 182.714: [CMS-concurrent-sweep-start]
2014-01-31T23:24:39.315+0800: 182.784: [CMS-concurrent-sweep: 0.070/0.070 secs] [Times: user=0.07 sys=0.00, real=0.07 secs]
2014-01-31T23:24:39.315+0800: 182.784: [CMS-concurrent-reset-start]
{Heap before GC invocations=84 (full 30):
par new generation total 142016K, used 10138K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b001fa50, 0x00000007b6f00000)
from space 28352K, 35% used [0x00000007b6f00000, 0x00000007b78c6fb8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 324596K, used 256100K [0x00000007ba660000, 0x00000007ce35d000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 81648K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:24:39.315+0800: 182.785: [GC2014-01-31T23:24:39.315+0800: 182.785: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 2: 291984 bytes, 291984 total
- age 3: 1063496 bytes, 1355480 total
- age 4: 132832 bytes, 1488312 total
- age 5: 1223704 bytes, 2712016 total
- age 6: 3236728 bytes, 5948744 total
- age 7: 3165648 bytes, 9114392 total
: 10138K->13759K(142016K), 0.0097600 secs] 266239K->269859K(466612K), 0.0098470 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=85 (full 30):
par new generation total 142016K, used 13759K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 48% used [0x00000007b8ab0000, 0x00000007b981fc38, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 324596K, used 256100K [0x00000007ba660000, 0x00000007ce35d000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 81648K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:24:39.328+0800: 182.797: [CMS-concurrent-reset: 0.002/0.013 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-01-31T23:24:39.328+0800: 182.797: [GC [1 CMS-initial-mark: 256100K(324596K)] 269893K(466612K), 0.0071430 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
2014-01-31T23:24:39.335+0800: 182.804: [CMS-concurrent-mark-start]
2014-01-31T23:24:39.487+0800: 182.956: [CMS-concurrent-mark: 0.152/0.152 secs] [Times: user=0.31 sys=0.00, real=0.15 secs]
2014-01-31T23:24:39.487+0800: 182.956: [GC[YG occupancy: 13792 K (142016 K)]2014-01-31T23:24:39.487+0800: 182.956: [Rescan (parallel) , 0.0058040 secs]2014-01-31T23:24:39.493+0800: 182.962: [weak refs processing, 0.0001190 secs]2014-01-31T23:24:39.493+0800: 182.962: [class unloading, 0.0048170 secs]2014-01-31T23:24:39.498+0800: 182.967: [scrub symbol table, 0.0139900 secs]2014-01-31T23:24:39.512+0800: 182.981: [scrub string table, 0.0012090 secs] [1 CMS-remark: 256100K(324596K)] 269893K(466612K), 0.0280730 secs] [Times: user=0.03 sys=0.00, real=0.03 secs]
2014-01-31T23:24:39.515+0800: 182.985: [CMS-concurrent-sweep-start]
2014-01-31T23:24:39.585+0800: 183.054: [CMS-concurrent-sweep: 0.069/0.069 secs] [Times: user=0.07 sys=0.00, real=0.07 secs]
2014-01-31T23:24:39.585+0800: 183.054: [CMS-concurrent-reset-start]
2014-01-31T23:24:39.587+0800: 183.056: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=85 (full 31):
par new generation total 142016K, used 127423K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 48% used [0x00000007b8ab0000, 0x00000007b981fc38, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 324596K, used 255686K [0x00000007ba660000, 0x00000007ce35d000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 82731K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:24:40.511+0800: 183.981: [GC2014-01-31T23:24:40.511+0800: 183.981: [ParNew
Desired survivor size 14516224 bytes, new threshold 8 (max 15)
- age 1: 5500848 bytes, 5500848 total
- age 3: 291680 bytes, 5792528 total
- age 4: 1062120 bytes, 6854648 total
- age 5: 132792 bytes, 6987440 total
- age 6: 1223704 bytes, 8211144 total
- age 7: 3236688 bytes, 11447832 total
- age 8: 3165648 bytes, 14613480 total
: 127423K->18858K(142016K), 0.0176400 secs] 383110K->274545K(466612K), 0.0177160 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=86 (full 31):
par new generation total 142016K, used 18858K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 66% used [0x00000007b6f00000, 0x00000007b816aba0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 324596K, used 255686K [0x00000007ba660000, 0x00000007ce35d000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 82731K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=86 (full 31):
par new generation total 142016K, used 132522K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 66% used [0x00000007b6f00000, 0x00000007b816aba0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 324596K, used 255686K [0x00000007ba660000, 0x00000007ce35d000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 83234K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:24:41.582+0800: 185.052: [GC2014-01-31T23:24:41.582+0800: 185.052: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 20077192 bytes, 20077192 total
- age 2: 3118632 bytes, 23195824 total
- age 4: 291680 bytes, 23487504 total
- age 5: 1061112 bytes, 24548616 total
- age 6: 126984 bytes, 24675600 total
- age 7: 1220184 bytes, 25895784 total
- age 8: 2999128 bytes, 28894912 total
: 132522K->28352K(142016K), 0.0287940 secs] 388209K->289033K(466612K), 0.0288830 secs] [Times: user=0.07 sys=0.00, real=0.03 secs]
Heap after GC invocations=87 (full 31):
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 324596K, used 260681K [0x00000007ba660000, 0x00000007ce35d000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 83234K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=87 (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 324596K, used 260681K [0x00000007ba660000, 0x00000007ce35d000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 83271K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:24:42.038+0800: 185.508: [GC2014-01-31T23:24:42.038+0800: 185.508: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 23146376 bytes, 23146376 total
: 142016K->28352K(142016K), 0.0669390 secs] 402697K->323129K(466612K), 0.0670140 secs] [Times: user=0.11 sys=0.01, real=0.07 secs]
Heap after GC invocations=88 (full 31):
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 324596K, used 294777K [0x00000007ba660000, 0x00000007ce35d000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 83271K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:24:42.105+0800: 185.575: [GC [1 CMS-initial-mark: 294777K(324596K)] 323143K(466612K), 0.0113020 secs] [Times: user=0.01 sys=0.01, real=0.01 secs]
2014-01-31T23:24:42.117+0800: 185.586: [CMS-concurrent-mark-start]
2014-01-31T23:24:42.322+0800: 185.791: [CMS-concurrent-mark: 0.172/0.205 secs] [Times: user=0.71 sys=0.01, real=0.21 secs]
2014-01-31T23:24:42.322+0800: 185.791: [GC[YG occupancy: 61666 K (142016 K)]2014-01-31T23:24:42.322+0800: 185.791: [Rescan (parallel) , 0.0129120 secs]2014-01-31T23:24:42.335+0800: 185.804: [weak refs processing, 0.0001570 secs]2014-01-31T23:24:42.335+0800: 185.805: [scrub string table, 0.0011580 secs] [1 CMS-remark: 294777K(324596K)] 356444K(466612K), 0.0143310 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-01-31T23:24:42.336+0800: 185.806: [CMS-concurrent-sweep-start]
2014-01-31T23:24:42.406+0800: 185.875: [CMS-concurrent-sweep: 0.069/0.069 secs] [Times: user=0.17 sys=0.00, real=0.07 secs]
2014-01-31T23:24:42.406+0800: 185.875: [CMS-concurrent-reset-start]
2014-01-31T23:24:42.408+0800: 185.877: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=88 (full 32):
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 371104K, used 293172K [0x00000007ba660000, 0x00000007d10c8000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 84094K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:24:43.891+0800: 187.361: [GC2014-01-31T23:24:43.891+0800: 187.361: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 12648168 bytes, 12648168 total
: 142016K->23380K(142016K), 0.0439260 secs] 435188K->339125K(513120K), 0.0440110 secs] [Times: user=0.08 sys=0.01, real=0.04 secs]
Heap after GC invocations=89 (full 32):
par new generation total 142016K, used 23380K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 82% used [0x00000007b8ab0000, 0x00000007ba1850b0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 371104K, used 315745K [0x00000007ba660000, 0x00000007d10c8000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 84094K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:24:43.936+0800: 187.405: [GC [1 CMS-initial-mark: 315745K(371104K)] 339941K(513120K), 0.0079090 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
2014-01-31T23:24:43.944+0800: 187.413: [CMS-concurrent-mark-start]
2014-01-31T23:24:44.174+0800: 187.643: [CMS-concurrent-mark: 0.185/0.230 secs] [Times: user=0.77 sys=0.02, real=0.23 secs]
2014-01-31T23:24:44.174+0800: 187.643: [GC[YG occupancy: 69798 K (142016 K)]2014-01-31T23:24:44.174+0800: 187.643: [Rescan (parallel) , 0.0194370 secs]2014-01-31T23:24:44.193+0800: 187.663: [weak refs processing, 0.0001510 secs]2014-01-31T23:24:44.193+0800: 187.663: [scrub string table, 0.0011430 secs] [1 CMS-remark: 315745K(371104K)] 385544K(513120K), 0.0208240 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
2014-01-31T23:24:44.195+0800: 187.664: [CMS-concurrent-sweep-start]
2014-01-31T23:24:44.275+0800: 187.744: [CMS-concurrent-sweep: 0.080/0.080 secs] [Times: user=0.35 sys=0.00, real=0.08 secs]
2014-01-31T23:24:44.275+0800: 187.744: [CMS-concurrent-reset-start]
2014-01-31T23:24:44.277+0800: 187.746: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
{Heap before GC invocations=89 (full 33):
par new generation total 142016K, used 95729K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 63% used [0x00000007b0000000, 0x00000007b46a7380, 0x00000007b6f00000)
from space 28352K, 82% used [0x00000007b8ab0000, 0x00000007ba1850b0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 399228K, used 315387K [0x00000007ba660000, 0x00000007d2c3f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 84320K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:24:44.443+0800: 187.912: [GC2014-01-31T23:24:44.443+0800: 187.912: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 15368616 bytes, 15368616 total
- age 2: 12178192 bytes, 27546808 total
: 95729K->28352K(142016K), 0.0214230 secs] 411116K->343935K(541244K), 0.0215350 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=90 (full 33):
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 399228K, used 315583K [0x00000007ba660000, 0x00000007d2c3f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 84320K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:24:44.465+0800: 187.934: [GC [1 CMS-initial-mark: 315583K(399228K)] 345466K(541244K), 0.0136780 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-01-31T23:24:44.478+0800: 187.948: [CMS-concurrent-mark-start]
2014-01-31T23:24:44.651+0800: 188.121: [CMS-concurrent-mark: 0.163/0.173 secs] [Times: user=0.42 sys=0.01, real=0.18 secs]
2014-01-31T23:24:44.651+0800: 188.121: [GC[YG occupancy: 46892 K (142016 K)]2014-01-31T23:24:44.651+0800: 188.121: [Rescan (parallel) , 0.0101590 secs]2014-01-31T23:24:44.661+0800: 188.131: [weak refs processing, 0.0001360 secs]2014-01-31T23:24:44.662+0800: 188.131: [class unloading, 0.0054700 secs]2014-01-31T23:24:44.667+0800: 188.137: [scrub symbol table, 0.0152270 secs]2014-01-31T23:24:44.682+0800: 188.152: [scrub string table, 0.0011290 secs] [1 CMS-remark: 315583K(399228K)] 362476K(541244K), 0.0347040 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
2014-01-31T23:24:44.686+0800: 188.155: [CMS-concurrent-sweep-start]
2014-01-31T23:24:44.766+0800: 188.235: [CMS-concurrent-sweep: 0.080/0.080 secs] [Times: user=0.10 sys=0.00, real=0.08 secs]
2014-01-31T23:24:44.766+0800: 188.235: [CMS-concurrent-reset-start]
2014-01-31T23:24:44.768+0800: 188.238: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=90 (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 [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 399420K, used 315400K [0x00000007ba660000, 0x00000007d2c6f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 84496K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:24:45.008+0800: 188.477: [GC2014-01-31T23:24:45.008+0800: 188.477: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 12272792 bytes, 12272792 total
: 142016K->22926K(142016K), 0.0499880 secs] 457416K->364651K(541436K), 0.0500640 secs] [Times: user=0.07 sys=0.02, real=0.05 secs]
Heap after GC invocations=91 (full 34):
par new generation total 142016K, used 22926K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 80% used [0x00000007b8ab0000, 0x00000007ba113b88, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 399420K, used 341724K [0x00000007ba660000, 0x00000007d2c6f000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 84496K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:24:45.058+0800: 188.528: [GC [1 CMS-initial-mark: 341724K(399420K)] 366458K(541436K), 0.0076400 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
2014-01-31T23:24:45.066+0800: 188.536: [CMS-concurrent-mark-start]
2014-01-31T23:24:45.297+0800: 188.767: [CMS-concurrent-mark: 0.204/0.231 secs] [Times: user=0.88 sys=0.04, real=0.23 secs]
2014-01-31T23:24:45.297+0800: 188.767: [GC[YG occupancy: 60895 K (142016 K)]2014-01-31T23:24:45.298+0800: 188.767: [Rescan (parallel) , 0.0086370 secs]2014-01-31T23:24:45.306+0800: 188.776: [weak refs processing, 0.0001270 secs]2014-01-31T23:24:45.306+0800: 188.776: [scrub string table, 0.0010980 secs] [1 CMS-remark: 341724K(399420K)] 402619K(541436K), 0.0099350 secs] [Times: user=0.01 sys=0.01, real=0.01 secs]
2014-01-31T23:24:45.308+0800: 188.777: [CMS-concurrent-sweep-start]
2014-01-31T23:24:45.379+0800: 188.848: [CMS-concurrent-sweep: 0.071/0.071 secs] [Times: user=0.20 sys=0.00, real=0.07 secs]
2014-01-31T23:24:45.379+0800: 188.848: [CMS-concurrent-reset-start]
2014-01-31T23:24:45.381+0800: 188.851: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
{Heap before GC invocations=91 (full 35):
par new generation total 142016K, used 136590K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 80% used [0x00000007b8ab0000, 0x00000007ba113b88, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 432500K, used 341673K [0x00000007ba660000, 0x00000007d4cbd000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 84581K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:24:45.459+0800: 188.928: [GC2014-01-31T23:24:45.459+0800: 188.928: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 17327024 bytes, 17327024 total
- age 2: 11696152 bytes, 29023176 total
: 136590K->28352K(142016K), 0.0216930 secs] 478264K->381321K(574516K), 0.0217620 secs] [Times: user=0.04 sys=0.01, real=0.03 secs]
Heap after GC invocations=92 (full 35):
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 432500K, used 352969K [0x00000007ba660000, 0x00000007d4cbd000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 84581K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{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 432500K, used 352969K [0x00000007ba660000, 0x00000007d4cbd000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 84969K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:24:45.870+0800: 189.339: [GC2014-01-31T23:24:45.870+0800: 189.339: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 12039880 bytes, 12039880 total
: 142016K->26815K(142016K), 0.0373410 secs] 494985K->399952K(574516K), 0.0374550 secs] [Times: user=0.07 sys=0.01, real=0.03 secs]
Heap after GC invocations=93 (full 35):
par new generation total 142016K, used 26815K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 94% used [0x00000007b8ab0000, 0x00000007ba4dfdc8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 432500K, used 373136K [0x00000007ba660000, 0x00000007d4cbd000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 84969K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:24:45.908+0800: 189.377: [GC [1 CMS-initial-mark: 373136K(432500K)] 401027K(574516K), 0.0060520 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
2014-01-31T23:24:45.914+0800: 189.383: [CMS-concurrent-mark-start]
2014-01-31T23:24:46.214+0800: 189.684: [CMS-concurrent-mark: 0.240/0.301 secs] [Times: user=1.64 sys=0.02, real=0.30 secs]
2014-01-31T23:24:46.215+0800: 189.684: [GC[YG occupancy: 91697 K (142016 K)]2014-01-31T23:24:46.215+0800: 189.684: [Rescan (parallel) , 0.0327030 secs]2014-01-31T23:24:46.248+0800: 189.717: [weak refs processing, 0.0001330 secs]2014-01-31T23:24:46.248+0800: 189.717: [scrub string table, 0.0011400 secs] [1 CMS-remark: 373136K(432500K)] 464833K(574516K), 0.0340640 secs] [Times: user=0.07 sys=0.00, real=0.03 secs]
2014-01-31T23:24:46.249+0800: 189.719: [CMS-concurrent-sweep-start]
2014-01-31T23:24:46.339+0800: 189.808: [CMS-concurrent-sweep: 0.090/0.090 secs] [Times: user=0.39 sys=0.01, real=0.09 secs]
2014-01-31T23:24:46.339+0800: 189.809: [CMS-concurrent-reset-start]
2014-01-31T23:24:46.342+0800: 189.811: [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 140479K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 94% used [0x00000007b8ab0000, 0x00000007ba4dfdc8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 460772K, used 364007K [0x00000007ba660000, 0x00000007d6859000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85176K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:24:46.608+0800: 190.077: [GC2014-01-31T23:24:46.608+0800: 190.077: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 5363712 bytes, 5363712 total
- age 2: 11453568 bytes, 16817280 total
: 140479K->21537K(142016K), 0.0151410 secs] 504487K->385545K(602788K), 0.0152080 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=94 (full 36):
par new generation total 142016K, used 21537K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 75% used [0x00000007b6f00000, 0x00000007b8408708, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 460772K, used 364007K [0x00000007ba660000, 0x00000007d6859000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 85176K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=94 (full 36):
par new generation total 142016K, used 135201K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 75% used [0x00000007b6f00000, 0x00000007b8408708, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 460772K, used 364007K [0x00000007ba660000, 0x00000007d6859000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86047K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:24:49.287+0800: 192.756: [GC2014-01-31T23:24:49.287+0800: 192.756: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4251288 bytes, 4251288 total
- age 2: 3878360 bytes, 8129648 total
: 135201K->13044K(142016K), 0.0227590 secs] 499209K->388261K(602788K), 0.0228650 secs] [Times: user=0.04 sys=0.00, real=0.03 secs]
Heap after GC invocations=95 (full 36):
par new generation total 142016K, used 13044K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 46% used [0x00000007b8ab0000, 0x00000007b976d3a0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 460772K, used 375216K [0x00000007ba660000, 0x00000007d6859000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86047K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:24:50.085+0800: 193.554: [GC [1 CMS-initial-mark: 391600K(460772K)] 509346K(602788K), 0.0566850 secs] [Times: user=0.05 sys=0.00, real=0.06 secs]
2014-01-31T23:24:50.141+0800: 193.611: [CMS-concurrent-mark-start]
{Heap before GC invocations=95 (full 37):
par new generation total 142016K, used 117745K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 92% used [0x00000007b0000000, 0x00000007b663f3c0, 0x00000007b6f00000)
from space 28352K, 46% used [0x00000007b8ab0000, 0x00000007b976d3a0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 460772K, used 391600K [0x00000007ba660000, 0x00000007d6859000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86538K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:24:50.142+0800: 193.611: [GC2014-01-31T23:24:50.142+0800: 193.611: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 13626808 bytes, 13626808 total
- age 2: 2342784 bytes, 15969592 total
- age 3: 1258184 bytes, 17227776 total
: 117745K->19105K(142016K), 0.0295870 secs] 509346K->410705K(602788K), 0.0296490 secs] [Times: user=0.06 sys=0.00, real=0.03 secs]
Heap after GC invocations=96 (full 37):
par new generation total 142016K, used 19105K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 67% used [0x00000007b6f00000, 0x00000007b81a8610, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 460772K, used 391600K [0x00000007ba660000, 0x00000007d6859000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86538K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:24:50.456+0800: 193.926: [CMS-concurrent-mark: 0.232/0.315 secs] [Times: user=1.40 sys=0.03, real=0.31 secs]
2014-01-31T23:24:50.457+0800: 193.926: [GC[YG occupancy: 96867 K (142016 K)]2014-01-31T23:24:50.457+0800: 193.926: [Rescan (parallel) , 0.0216290 secs]2014-01-31T23:24:50.478+0800: 193.948: [weak refs processing, 0.0001540 secs]2014-01-31T23:24:50.478+0800: 193.948: [scrub string table, 0.0011410 secs] [1 CMS-remark: 391600K(460772K)] 488467K(602788K), 0.0230110 secs] [Times: user=0.06 sys=0.00, real=0.03 secs]
2014-01-31T23:24:50.480+0800: 193.949: [CMS-concurrent-sweep-start]
2014-01-31T23:24:50.575+0800: 194.045: [CMS-concurrent-sweep: 0.096/0.096 secs] [Times: user=0.47 sys=0.01, real=0.09 secs]
2014-01-31T23:24:50.576+0800: 194.045: [CMS-concurrent-reset-start]
2014-01-31T23:24:50.578+0800: 194.047: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=96 (full 37):
par new generation total 142016K, used 132735K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6ef7810, 0x00000007b6f00000)
from space 28352K, 67% used [0x00000007b6f00000, 0x00000007b81a8610, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 492536K, used 389102K [0x00000007ba660000, 0x00000007d875e000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86704K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:24:51.375+0800: 194.844: [GC2014-01-31T23:24:51.375+0800: 194.845: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 10140184 bytes, 10140184 total
- age 2: 13105456 bytes, 23245640 total
: 132735K->28352K(142016K), 0.0308750 secs] 521837K->422058K(634552K), 0.0309550 secs] [Times: user=0.06 sys=0.00, real=0.03 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 492536K, used 393706K [0x00000007ba660000, 0x00000007d875e000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86704K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=97 (full 37):
par new generation total 142016K, used 127973K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 87% used [0x00000007b0000000, 0x00000007b61494c0, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 492536K, used 393706K [0x00000007ba660000, 0x00000007d875e000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86844K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:24:54.538+0800: 198.007: [GC2014-01-31T23:24:54.538+0800: 198.007: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 14680176 bytes, 14680176 total
- age 2: 5224800 bytes, 19904976 total
: 127973K->28352K(142016K), 0.0495870 secs] 521679K->447014K(634552K), 0.0496560 secs] [Times: user=0.09 sys=0.01, 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 492536K, used 418662K [0x00000007ba660000, 0x00000007d875e000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86844K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:24:54.590+0800: 198.059: [GC [1 CMS-initial-mark: 418662K(492536K)] 463456K(634552K), 0.0081080 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-01-31T23:24:54.598+0800: 198.068: [CMS-concurrent-mark-start]
2014-01-31T23:24:54.838+0800: 198.307: [CMS-concurrent-mark: 0.220/0.240 secs] [Times: user=1.00 sys=0.02, real=0.24 secs]
2014-01-31T23:24:54.838+0800: 198.308: [GC[YG occupancy: 65767 K (142016 K)]2014-01-31T23:24:54.838+0800: 198.308: [Rescan (parallel) , 0.0083950 secs]2014-01-31T23:24:54.847+0800: 198.316: [weak refs processing, 0.0002530 secs]2014-01-31T23:24:54.847+0800: 198.316: [scrub string table, 0.0012530 secs] [1 CMS-remark: 418662K(492536K)] 484430K(634552K), 0.0100170 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-31T23:24:54.848+0800: 198.318: [CMS-concurrent-sweep-start]
2014-01-31T23:24:54.949+0800: 198.418: [CMS-concurrent-sweep: 0.101/0.101 secs] [Times: user=0.28 sys=0.01, real=0.10 secs]
2014-01-31T23:24:54.949+0800: 198.419: [CMS-concurrent-reset-start]
2014-01-31T23:24:54.951+0800: 198.421: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
{Heap before GC invocations=98 (full 38):
par new generation total 142016K, used 134004K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 92% used [0x00000007b0000000, 0x00000007b672d188, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 498676K, used 393951K [0x00000007ba660000, 0x00000007d8d5d000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86882K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:24:55.280+0800: 198.749: [GC2014-01-31T23:24:55.280+0800: 198.749: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 239256 bytes, 239256 total
: 134004K->19693K(142016K), 0.0175330 secs] 527955K->432998K(640692K), 0.0176190 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=99 (full 38):
par new generation total 142016K, used 19693K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 69% used [0x00000007b8ab0000, 0x00000007b9deb738, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 498676K, used 413304K [0x00000007ba660000, 0x00000007d8d5d000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86882K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:24:55.300+0800: 198.769: [GC [1 CMS-initial-mark: 413304K(498676K)] 449526K(640692K), 0.0055550 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-01-31T23:24:55.305+0800: 198.775: [CMS-concurrent-mark-start]
{Heap before GC invocations=99 (full 39):
par new generation total 142016K, used 120748K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 88% used [0x00000007b0000000, 0x00000007b62afa38, 0x00000007b6f00000)
from space 28352K, 69% used [0x00000007b8ab0000, 0x00000007b9deb738, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 498676K, used 413304K [0x00000007ba660000, 0x00000007d8d5d000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86885K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:24:55.426+0800: 198.896: [GC2014-01-31T23:24:55.426+0800: 198.896: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 126640 bytes, 126640 total
- age 2: 131728 bytes, 258368 total
: 120748K->4985K(142016K), 0.0066050 secs] 534052K->418289K(640692K), 0.0066740 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
Heap after GC invocations=100 (full 39):
par new generation total 142016K, used 4985K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 17% used [0x00000007b6f00000, 0x00000007b73de408, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 498676K, used 413304K [0x00000007ba660000, 0x00000007d8d5d000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86885K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:24:55.525+0800: 198.995: [CMS-concurrent-mark: 0.206/0.220 secs] [Times: user=0.70 sys=0.01, real=0.22 secs]
2014-01-31T23:24:55.525+0800: 198.995: [GC[YG occupancy: 55751 K (142016 K)]2014-01-31T23:24:55.525+0800: 198.995: [Rescan (parallel) , 0.0067370 secs]2014-01-31T23:24:55.532+0800: 199.002: [weak refs processing, 0.0001670 secs]2014-01-31T23:24:55.532+0800: 199.002: [scrub string table, 0.0011580 secs] [1 CMS-remark: 413304K(498676K)] 469056K(640692K), 0.0081380 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-31T23:24:55.534+0800: 199.003: [CMS-concurrent-sweep-start]
2014-01-31T23:24:55.618+0800: 199.087: [CMS-concurrent-sweep: 0.084/0.084 secs] [Times: user=0.16 sys=0.01, real=0.08 secs]
2014-01-31T23:24:55.618+0800: 199.087: [CMS-concurrent-reset-start]
2014-01-31T23:24:55.620+0800: 199.090: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
{Heap before GC invocations=100 (full 39):
par new generation total 142016K, used 109921K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 92% used [0x00000007b0000000, 0x00000007b667a228, 0x00000007b6f00000)
from space 28352K, 17% used [0x00000007b6f00000, 0x00000007b73de408, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 523116K, used 413259K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86944K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:24:56.089+0800: 199.558: [GC2014-01-31T23:24:56.089+0800: 199.558: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 273984 bytes, 273984 total
- age 2: 15264 bytes, 289248 total
- age 3: 112512 bytes, 401760 total
: 109921K->1356K(142016K), 0.0067830 secs] 523180K->414615K(665132K), 0.0068590 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
Heap after GC invocations=101 (full 39):
par new generation total 142016K, used 1356K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 4% used [0x00000007b8ab0000, 0x00000007b8c03138, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 523116K, used 413259K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 86944K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=101 (full 39):
par new generation total 142016K, used 115020K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 4% used [0x00000007b8ab0000, 0x00000007b8c03138, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 523116K, used 413259K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87046K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:25:02.528+0800: 205.997: [GC2014-01-31T23:25:02.528+0800: 205.997: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 638408 bytes, 638408 total
- age 2: 101040 bytes, 739448 total
- age 3: 12216 bytes, 751664 total
- age 4: 111624 bytes, 863288 total
: 115020K->922K(142016K), 0.0079390 secs] 528279K->414181K(665132K), 0.0080300 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=102 (full 39):
par new generation total 142016K, used 922K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 3% used [0x00000007b6f00000, 0x00000007b6fe68c0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 523116K, used 413259K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87046K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=102 (full 39):
par new generation total 142016K, used 114586K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 3% used [0x00000007b6f00000, 0x00000007b6fe68c0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 523116K, used 413259K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87150K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:25:11.892+0800: 215.361: [GC2014-01-31T23:25:11.892+0800: 215.361: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 326904 bytes, 326904 total
- age 2: 495064 bytes, 821968 total
- age 3: 88464 bytes, 910432 total
- age 4: 5248 bytes, 915680 total
- age 5: 58336 bytes, 974016 total
: 114586K->1300K(142016K), 0.0072410 secs] 527845K->414560K(665132K), 0.0073220 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
Heap after GC invocations=103 (full 39):
par new generation total 142016K, used 1300K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 4% used [0x00000007b8ab0000, 0x00000007b8bf5308, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 523116K, used 413259K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87150K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=103 (full 39):
par new generation total 142016K, used 114964K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 4% used [0x00000007b8ab0000, 0x00000007b8bf5308, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 523116K, used 413259K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87235K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:25:20.749+0800: 224.218: [GC2014-01-31T23:25:20.749+0800: 224.218: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 563648 bytes, 563648 total
- age 2: 186664 bytes, 750312 total
- age 3: 494408 bytes, 1244720 total
- age 4: 88352 bytes, 1333072 total
- age 5: 5248 bytes, 1338320 total
- age 6: 56760 bytes, 1395080 total
: 114964K->1738K(142016K), 0.0085980 secs] 528224K->414997K(665132K), 0.0086720 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=104 (full 39):
par new generation total 142016K, used 1738K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 6% used [0x00000007b6f00000, 0x00000007b70b2930, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 523116K, used 413259K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87235K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=104 (full 39):
par new generation total 142016K, used 115402K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 6% used [0x00000007b6f00000, 0x00000007b70b2930, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 523116K, used 413259K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87283K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:25:29.632+0800: 233.101: [GC2014-01-31T23:25:29.632+0800: 233.101: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 328400 bytes, 328400 total
- age 2: 390296 bytes, 718696 total
- age 3: 174472 bytes, 893168 total
- age 4: 486648 bytes, 1379816 total
- age 5: 88352 bytes, 1468168 total
- age 6: 5248 bytes, 1473416 total
- age 7: 56760 bytes, 1530176 total
: 115402K->1847K(142016K), 0.0098040 secs] 528661K->415107K(665132K), 0.0099180 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=105 (full 39):
par new generation total 142016K, used 1847K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 6% used [0x00000007b8ab0000, 0x00000007b8c7dfc0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 523116K, used 413259K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87283K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=105 (full 39):
par new generation total 142016K, used 115511K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 6% used [0x00000007b8ab0000, 0x00000007b8c7dfc0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 523116K, used 413259K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87369K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:25:36.345+0800: 239.815: [GC2014-01-31T23:25:36.345+0800: 239.815: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 6045576 bytes, 6045576 total
- age 2: 162080 bytes, 6207656 total
- age 3: 389416 bytes, 6597072 total
- age 4: 173288 bytes, 6770360 total
- age 5: 469104 bytes, 7239464 total
- age 6: 88352 bytes, 7327816 total
- age 7: 5248 bytes, 7333064 total
- age 8: 56760 bytes, 7389824 total
: 115511K->7969K(142016K), 0.0169610 secs] 528771K->421228K(665132K), 0.0170560 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=106 (full 39):
par new generation total 142016K, used 7969K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 28% used [0x00000007b6f00000, 0x00000007b76c8450, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 523116K, used 413259K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87369K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=106 (full 39):
par new generation total 142016K, used 105289K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 85% used [0x00000007b0000000, 0x00000007b5f0a1d8, 0x00000007b6f00000)
from space 28352K, 28% used [0x00000007b6f00000, 0x00000007b76c8450, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 523116K, used 413259K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87439K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:25:41.636+0800: 245.106: [GC2014-01-31T23:25:41.637+0800: 245.106: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3003000 bytes, 3003000 total
- age 2: 4719512 bytes, 7722512 total
- age 3: 161248 bytes, 7883760 total
- age 4: 387424 bytes, 8271184 total
- age 5: 173288 bytes, 8444472 total
- age 6: 461720 bytes, 8906192 total
- age 7: 88352 bytes, 8994544 total
- age 8: 5248 bytes, 8999792 total
- age 9: 56760 bytes, 9056552 total
: 105289K->11338K(142016K), 0.0173870 secs] 518548K->424597K(665132K), 0.0174870 secs] [Times: user=0.06 sys=0.00, real=0.02 secs]
Heap after GC invocations=107 (full 39):
par new generation total 142016K, used 11338K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 39% used [0x00000007b8ab0000, 0x00000007b95c2920, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 523116K, used 413259K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87439K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=107 (full 39):
par new generation total 142016K, used 125002K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 39% used [0x00000007b8ab0000, 0x00000007b95c2938, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 523116K, used 413259K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87474K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:25:44.388+0800: 247.858: [GC2014-01-31T23:25:44.388+0800: 247.858: [ParNew
Desired survivor size 14516224 bytes, new threshold 8 (max 15)
- age 1: 6338256 bytes, 6338256 total
- age 2: 2693368 bytes, 9031624 total
- age 3: 4322464 bytes, 13354088 total
- age 4: 161192 bytes, 13515280 total
- age 5: 375296 bytes, 13890576 total
- age 6: 163688 bytes, 14054264 total
- age 7: 445920 bytes, 14500184 total
- age 8: 88352 bytes, 14588536 total
- age 9: 5248 bytes, 14593784 total
- age 10: 56760 bytes, 14650544 total
: 125002K->20194K(142016K), 0.0187720 secs] 538261K->433454K(665132K), 0.0188470 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=108 (full 39):
par new generation total 142016K, used 20194K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 71% used [0x00000007b6f00000, 0x00000007b82b8b60, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 523116K, used 413259K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87474K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=108 (full 39):
par new generation total 142016K, used 133860K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 71% used [0x00000007b6f00000, 0x00000007b82b9370, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 523116K, used 413259K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87498K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:25:47.855+0800: 251.324: [GC2014-01-31T23:25:47.855+0800: 251.324: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 15470768 bytes, 15470768 total
- age 2: 4485288 bytes, 19956056 total
- age 3: 2383800 bytes, 22339856 total
- age 4: 3580688 bytes, 25920544 total
- age 5: 146064 bytes, 26066608 total
- age 6: 354064 bytes, 26420672 total
- age 7: 163688 bytes, 26584360 total
- age 8: 357712 bytes, 26942072 total
: 133860K->28352K(142016K), 0.0230590 secs] 547120K->441887K(665132K), 0.0231530 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=109 (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 [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 523116K, used 413535K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87498K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=109 (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 523116K, used 413535K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87547K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:25:53.732+0800: 257.201: [GC2014-01-31T23:25:53.732+0800: 257.201: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 15152200 bytes, 15152200 total
: 142016K->22966K(142016K), 0.0508630 secs] 555551K->461154K(665132K), 0.0509410 secs] [Times: user=0.07 sys=0.02, real=0.05 secs]
Heap after GC invocations=110 (full 39):
par new generation total 142016K, used 22966K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 81% used [0x00000007b6f00000, 0x00000007b856dbd8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 523116K, used 438187K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87547K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:25:53.783+0800: 257.252: [GC [1 CMS-initial-mark: 438187K(523116K)] 462334K(665132K), 0.0082730 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:25:53.791+0800: 257.261: [CMS-concurrent-mark-start]
2014-01-31T23:25:53.995+0800: 257.464: [CMS-concurrent-mark: 0.202/0.204 secs] [Times: user=0.67 sys=0.02, real=0.20 secs]
2014-01-31T23:25:53.995+0800: 257.465: [GC[YG occupancy: 26622 K (142016 K)]2014-01-31T23:25:53.995+0800: 257.465: [Rescan (parallel) , 0.0067210 secs]2014-01-31T23:25:54.002+0800: 257.471: [weak refs processing, 0.0002190 secs]2014-01-31T23:25:54.002+0800: 257.472: [scrub string table, 0.0016930 secs] [1 CMS-remark: 438187K(523116K)] 464809K(665132K), 0.0087550 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:25:54.004+0800: 257.473: [CMS-concurrent-sweep-start]
2014-01-31T23:25:54.098+0800: 257.568: [CMS-concurrent-sweep: 0.094/0.094 secs] [Times: user=0.18 sys=0.01, real=0.09 secs]
2014-01-31T23:25:54.098+0800: 257.568: [CMS-concurrent-reset-start]
2014-01-31T23:25:54.101+0800: 257.571: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
{Heap before GC invocations=110 (full 40):
par new generation total 142016K, used 128899K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 93% used [0x00000007b0000000, 0x00000007b6773098, 0x00000007b6f00000)
from space 28352K, 81% used [0x00000007b6f00000, 0x00000007b856dbd8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 523116K, used 377831K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87595K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:25:58.664+0800: 262.133: [GC2014-01-31T23:25:58.664+0800: 262.133: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 5943728 bytes, 5943728 total
: 128899K->16801K(142016K), 0.0218400 secs] 506730K->408632K(665132K), 0.0219010 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=111 (full 40):
par new generation total 142016K, used 16801K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 59% used [0x00000007b8ab0000, 0x00000007b9b185e0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 523116K, used 391831K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87595K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=111 (full 40):
par new generation total 142016K, used 130465K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 59% used [0x00000007b8ab0000, 0x00000007b9b185e0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 523116K, used 391831K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87633K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:26:02.521+0800: 265.990: [GC2014-01-31T23:26:02.521+0800: 265.990: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 573736 bytes, 573736 total
- age 2: 5729520 bytes, 6303256 total
: 130465K->11309K(142016K), 0.0084460 secs] 522296K->403141K(665132K), 0.0085410 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=112 (full 40):
par new generation total 142016K, used 11309K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 39% used [0x00000007b6f00000, 0x00000007b7a0b640, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 523116K, used 391831K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87633K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=112 (full 40):
par new generation total 142016K, used 124973K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 39% used [0x00000007b6f00000, 0x00000007b7a0b640, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 523116K, used 391831K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87744K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:26:08.661+0800: 272.130: [GC2014-01-31T23:26:08.661+0800: 272.130: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3734568 bytes, 3734568 total
- age 2: 385288 bytes, 4119856 total
- age 3: 5523080 bytes, 9642936 total
: 124973K->11189K(142016K), 0.0115320 secs] 516805K->403021K(665132K), 0.0116240 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=113 (full 40):
par new generation total 142016K, used 11189K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 39% used [0x00000007b8ab0000, 0x00000007b959d6a0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 523116K, used 391831K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87744K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=113 (full 40):
par new generation total 142016K, used 124853K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 39% used [0x00000007b8ab0000, 0x00000007b959d6a0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 523116K, used 391831K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87967K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:26:10.762+0800: 274.231: [GC2014-01-31T23:26:10.762+0800: 274.231: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 13471960 bytes, 13471960 total
- age 2: 3399608 bytes, 16871568 total
- age 3: 384920 bytes, 17256488 total
- age 4: 5519696 bytes, 22776184 total
: 124853K->27714K(142016K), 0.0238900 secs] 516685K->419546K(665132K), 0.0240050 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=114 (full 40):
par new generation total 142016K, used 27714K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 97% used [0x00000007b6f00000, 0x00000007b8a10b60, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 523116K, used 391831K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87967K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=114 (full 40):
par new generation total 142016K, used 141378K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 97% used [0x00000007b6f00000, 0x00000007b8a10b60, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 523116K, used 391831K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87998K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:26:12.902+0800: 276.372: [GC2014-01-31T23:26:12.902+0800: 276.372: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 18827936 bytes, 18827936 total
- age 2: 10201496 bytes, 29029432 total
: 141378K->28352K(142016K), 0.0477150 secs] 533210K->436795K(665132K), 0.0478190 secs] [Times: user=0.13 sys=0.00, real=0.05 secs]
Heap after GC invocations=115 (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 523116K, used 408443K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 87998K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=115 (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 [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 523116K, used 408443K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88019K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:26:14.030+0800: 277.500: [GC2014-01-31T23:26:14.030+0800: 277.500: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 25239904 bytes, 25239904 total
: 142016K->28352K(142016K), 0.0594740 secs] 550459K->468063K(665132K), 0.0595530 secs] [Times: user=0.11 sys=0.01, real=0.06 secs]
Heap after GC invocations=116 (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 [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 523116K, used 439711K [0x00000007ba660000, 0x00000007da53b000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88019K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:26:14.090+0800: 277.559: [GC [1 CMS-initial-mark: 439711K(523116K)] 468066K(665132K), 0.0100660 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:26:14.100+0800: 277.570: [CMS-concurrent-mark-start]
2014-01-31T23:26:14.334+0800: 277.803: [CMS-concurrent-mark: 0.228/0.234 secs] [Times: user=0.79 sys=0.02, real=0.23 secs]
2014-01-31T23:26:14.334+0800: 277.804: [GC[YG occupancy: 35629 K (142016 K)]2014-01-31T23:26:14.334+0800: 277.804: [Rescan (parallel) , 0.0121710 secs]2014-01-31T23:26:14.347+0800: 277.816: [weak refs processing, 0.0002410 secs]2014-01-31T23:26:14.347+0800: 277.816: [scrub string table, 0.0020180 secs] [1 CMS-remark: 439711K(523116K)] 475341K(665132K), 0.0145740 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-31T23:26:14.349+0800: 277.818: [CMS-concurrent-sweep-start]
2014-01-31T23:26:14.452+0800: 277.922: [CMS-concurrent-sweep: 0.103/0.103 secs] [Times: user=0.27 sys=0.01, real=0.11 secs]
2014-01-31T23:26:14.453+0800: 277.922: [CMS-concurrent-reset-start]
2014-01-31T23:26:14.457+0800: 277.926: [CMS-concurrent-reset: 0.004/0.004 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=116 (full 41):
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 542168K, used 428311K [0x00000007ba660000, 0x00000007db7d6000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88063K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:26:19.444+0800: 282.913: [GC2014-01-31T23:26:19.444+0800: 282.913: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1080480 bytes, 1080480 total
: 142016K->25040K(142016K), 0.0362980 secs] 570327K->476222K(684184K), 0.0363710 secs] [Times: user=0.05 sys=0.02, real=0.04 secs]
Heap after GC invocations=117 (full 41):
par new generation total 142016K, used 25040K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 88% used [0x00000007b8ab0000, 0x00000007ba324108, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 542168K, used 451181K [0x00000007ba660000, 0x00000007db7d6000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88063K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:26:19.480+0800: 282.950: [GC [1 CMS-initial-mark: 451181K(542168K)] 477049K(684184K), 0.0074300 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-01-31T23:26:19.488+0800: 282.957: [CMS-concurrent-mark-start]
2014-01-31T23:26:19.717+0800: 283.186: [CMS-concurrent-mark: 0.227/0.229 secs] [Times: user=0.73 sys=0.02, real=0.23 secs]
2014-01-31T23:26:19.717+0800: 283.187: [GC[YG occupancy: 30842 K (142016 K)]2014-01-31T23:26:19.717+0800: 283.187: [Rescan (parallel) , 0.0078330 secs]2014-01-31T23:26:19.725+0800: 283.195: [weak refs processing, 0.0001630 secs]2014-01-31T23:26:19.725+0800: 283.195: [scrub string table, 0.0012900 secs] [1 CMS-remark: 451181K(542168K)] 482023K(684184K), 0.0093780 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-31T23:26:19.727+0800: 283.196: [CMS-concurrent-sweep-start]
2014-01-31T23:26:19.833+0800: 283.302: [CMS-concurrent-sweep: 0.106/0.106 secs] [Times: user=0.23 sys=0.01, real=0.11 secs]
2014-01-31T23:26:19.833+0800: 283.302: [CMS-concurrent-reset-start]
2014-01-31T23:26:19.836+0800: 283.305: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=117 (full 42):
par new generation total 142016K, used 138704K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 88% used [0x00000007b8ab0000, 0x00000007ba324108, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 439673K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88090K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:26:25.293+0800: 288.763: [GC2014-01-31T23:26:25.293+0800: 288.763: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 7242232 bytes, 7242232 total
- age 2: 480864 bytes, 7723096 total
: 138704K->9938K(142016K), 0.0189290 secs] 578378K->449612K(698568K), 0.0190160 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=118 (full 42):
par new generation total 142016K, used 9938K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 35% used [0x00000007b6f00000, 0x00000007b78b4be0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 439673K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88090K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=118 (full 42):
par new generation total 142016K, used 123602K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 35% used [0x00000007b6f00000, 0x00000007b78b4be0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 439673K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88117K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:26:29.034+0800: 292.504: [GC2014-01-31T23:26:29.034+0800: 292.504: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 515000 bytes, 515000 total
- age 2: 6233464 bytes, 6748464 total
- age 3: 480408 bytes, 7228872 total
: 123602K->10611K(142016K), 0.0170530 secs] 563276K->450285K(698568K), 0.0171250 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=119 (full 42):
par new generation total 142016K, used 10611K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 37% used [0x00000007b8ab0000, 0x00000007b950cd98, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 439673K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88117K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=119 (full 42):
par new generation total 142016K, used 124275K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 37% used [0x00000007b8ab0000, 0x00000007b950cd98, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 439673K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88148K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:26:35.105+0800: 298.574: [GC2014-01-31T23:26:35.105+0800: 298.574: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3275240 bytes, 3275240 total
- age 2: 213176 bytes, 3488416 total
- age 3: 4583696 bytes, 8072112 total
- age 4: 478000 bytes, 8550112 total
: 124275K->14111K(142016K), 0.0182930 secs] 563949K->453785K(698568K), 0.0183680 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=120 (full 42):
par new generation total 142016K, used 14111K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 49% used [0x00000007b6f00000, 0x00000007b7cc7d00, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 439673K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88148K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=120 (full 42):
par new generation total 142016K, used 127775K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 49% used [0x00000007b6f00000, 0x00000007b7cc7d00, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 439673K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88176K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:26:40.740+0800: 304.210: [GC2014-01-31T23:26:40.740+0800: 304.210: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 693416 bytes, 693416 total
- age 2: 3002104 bytes, 3695520 total
- age 3: 206112 bytes, 3901632 total
- age 4: 4569320 bytes, 8470952 total
- age 5: 473408 bytes, 8944360 total
: 127775K->9748K(142016K), 0.0176370 secs] 567449K->449422K(698568K), 0.0177220 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
Heap after GC invocations=121 (full 42):
par new generation total 142016K, used 9748K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 34% used [0x00000007b8ab0000, 0x00000007b94353f8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 439673K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88176K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=121 (full 42):
par new generation total 142016K, used 123429K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 34% used [0x00000007b8ab0000, 0x00000007b9439408, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 439673K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88192K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:26:45.603+0800: 309.072: [GC2014-01-31T23:26:45.603+0800: 309.072: [ParNew
Desired survivor size 14516224 bytes, new threshold 5 (max 15)
- age 1: 6776304 bytes, 6776304 total
- age 2: 449888 bytes, 7226192 total
- age 3: 2632920 bytes, 9859112 total
- age 4: 150616 bytes, 10009728 total
- age 5: 4563504 bytes, 14573232 total
- age 6: 454640 bytes, 15027872 total
: 123429K->15724K(142016K), 0.0232070 secs] 563102K->455398K(698568K), 0.0232830 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=122 (full 42):
par new generation total 142016K, used 15724K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 55% used [0x00000007b6f00000, 0x00000007b7e5b300, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 439673K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88192K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=122 (full 42):
par new generation total 142016K, used 129388K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 55% used [0x00000007b6f00000, 0x00000007b7e5b300, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 439673K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88290K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:26:51.023+0800: 314.492: [GC2014-01-31T23:26:51.023+0800: 314.492: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2325584 bytes, 2325584 total
- age 2: 3821984 bytes, 6147568 total
- age 3: 433320 bytes, 6580888 total
- age 4: 2142904 bytes, 8723792 total
- age 5: 150504 bytes, 8874296 total
: 129388K->12804K(142016K), 0.0264910 secs] 569062K->457284K(698568K), 0.0265860 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
Heap after GC invocations=123 (full 42):
par new generation total 142016K, used 12804K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 45% used [0x00000007b8ab0000, 0x00000007b9731330, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 444479K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88290K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=123 (full 42):
par new generation total 142016K, used 126468K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 45% used [0x00000007b8ab0000, 0x00000007b9731330, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 444479K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88311K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:26:56.955+0800: 320.424: [GC2014-01-31T23:26:56.955+0800: 320.424: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4231768 bytes, 4231768 total
- age 2: 2095016 bytes, 6326784 total
- age 3: 2185328 bytes, 8512112 total
- age 4: 424224 bytes, 8936336 total
- age 5: 1949688 bytes, 10886024 total
- age 6: 150504 bytes, 11036528 total
: 126468K->19300K(142016K), 0.0126770 secs] 570948K->463779K(698568K), 0.0127500 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=124 (full 42):
par new generation total 142016K, used 19300K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 68% used [0x00000007b6f00000, 0x00000007b81d9150, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 444479K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88311K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=124 (full 42):
par new generation total 142016K, used 126047K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 93% used [0x00000007b0000000, 0x00000007b683ed88, 0x00000007b6f00000)
from space 28352K, 68% used [0x00000007b6f00000, 0x00000007b81d9150, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 444479K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88325K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:27:02.828+0800: 326.298: [GC2014-01-31T23:27:02.829+0800: 326.298: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 519960 bytes, 519960 total
- age 2: 3926768 bytes, 4446728 total
- age 3: 2094920 bytes, 6541648 total
- age 4: 2185288 bytes, 8726936 total
- age 5: 416240 bytes, 9143176 total
- age 6: 1949648 bytes, 11092824 total
- age 7: 144104 bytes, 11236928 total
: 126047K->12867K(142016K), 0.0123130 secs] 570527K->457347K(698568K), 0.0124080 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=125 (full 42):
par new generation total 142016K, used 12867K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 45% used [0x00000007b8ab0000, 0x00000007b9740fa8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 444479K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88325K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=125 (full 42):
par new generation total 142016K, used 126531K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 45% used [0x00000007b8ab0000, 0x00000007b9740fa8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 444479K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88339K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:27:07.575+0800: 331.044: [GC2014-01-31T23:27:07.575+0800: 331.044: [ParNew
Desired survivor size 14516224 bytes, new threshold 7 (max 15)
- age 1: 4358816 bytes, 4358816 total
- age 2: 295664 bytes, 4654480 total
- age 3: 3917024 bytes, 8571504 total
- age 4: 1966784 bytes, 10538288 total
- age 5: 2185080 bytes, 12723368 total
- age 6: 408296 bytes, 13131664 total
- age 7: 1912032 bytes, 15043696 total
- age 8: 127384 bytes, 15171080 total
: 126531K->19769K(142016K), 0.0203420 secs] 571011K->464248K(698568K), 0.0204120 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=126 (full 42):
par new generation total 142016K, used 19769K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 69% used [0x00000007b6f00000, 0x00000007b824e430, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 444479K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88339K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=126 (full 42):
par new generation total 142016K, used 133433K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 69% used [0x00000007b6f00000, 0x00000007b824e430, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 444479K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88349K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:27:13.408+0800: 336.878: [GC2014-01-31T23:27:13.408+0800: 336.878: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3597184 bytes, 3597184 total
- age 2: 314392 bytes, 3911576 total
- age 3: 294136 bytes, 4205712 total
- age 4: 520880 bytes, 4726592 total
- age 5: 1966744 bytes, 6693336 total
- age 6: 2182800 bytes, 8876136 total
- age 7: 399776 bytes, 9275912 total
: 133433K->13531K(142016K), 0.0156150 secs] 577912K->460020K(698568K), 0.0158030 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=127 (full 42):
par new generation total 142016K, used 13531K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 47% used [0x00000007b8ab0000, 0x00000007b97e6ce8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 446489K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88349K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=127 (full 42):
par new generation total 142016K, used 127195K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 47% used [0x00000007b8ab0000, 0x00000007b97e6ce8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 446489K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88355K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:27:20.579+0800: 344.048: [GC2014-01-31T23:27:20.579+0800: 344.048: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1646648 bytes, 1646648 total
- age 2: 3305016 bytes, 4951664 total
- age 3: 294792 bytes, 5246456 total
- age 4: 294096 bytes, 5540552 total
- age 5: 501760 bytes, 6042312 total
- age 6: 1861640 bytes, 7903952 total
- age 7: 2152504 bytes, 10056456 total
- age 8: 346568 bytes, 10403024 total
: 127195K->15213K(142016K), 0.0133170 secs] 573684K->461702K(698568K), 0.0133940 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=128 (full 42):
par new generation total 142016K, used 15213K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 53% used [0x00000007b6f00000, 0x00000007b7ddb538, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 446489K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88355K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=128 (full 42):
par new generation total 142016K, used 128877K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 53% used [0x00000007b6f00000, 0x00000007b7ddb538, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 446489K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88360K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:27:25.628+0800: 349.097: [GC2014-01-31T23:27:25.628+0800: 349.097: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3667424 bytes, 3667424 total
- age 2: 1361080 bytes, 5028504 total
- age 3: 3188064 bytes, 8216568 total
- age 4: 271680 bytes, 8488248 total
- age 5: 284112 bytes, 8772360 total
- age 6: 501144 bytes, 9273504 total
- age 7: 1843224 bytes, 11116728 total
- age 8: 2120992 bytes, 13237720 total
- age 9: 321168 bytes, 13558888 total
: 128877K->20226K(142016K), 0.0151940 secs] 575366K->466715K(698568K), 0.0152950 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=129 (full 42):
par new generation total 142016K, used 20226K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 71% used [0x00000007b8ab0000, 0x00000007b9e708b0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 446489K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88360K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=129 (full 42):
par new generation total 142016K, used 133890K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 71% used [0x00000007b8ab0000, 0x00000007b9e708b0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 446489K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88372K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:27:33.120+0800: 356.589: [GC2014-01-31T23:27:33.120+0800: 356.589: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 683472 bytes, 683472 total
- age 2: 3455032 bytes, 4138504 total
- age 3: 1336064 bytes, 5474568 total
- age 4: 3176536 bytes, 8651104 total
- age 5: 253960 bytes, 8905064 total
- age 6: 221632 bytes, 9126696 total
- age 7: 470952 bytes, 9597648 total
- age 8: 1825632 bytes, 11423280 total
- age 9: 2090216 bytes, 13513496 total
- age 10: 308600 bytes, 13822096 total
: 133890K->18649K(142016K), 0.0128870 secs] 580379K->465139K(698568K), 0.0129580 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=130 (full 42):
par new generation total 142016K, used 18649K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 65% used [0x00000007b6f00000, 0x00000007b8136698, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 446489K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88372K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=130 (full 42):
par new generation total 142016K, used 132313K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 65% used [0x00000007b6f00000, 0x00000007b8136698, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 446489K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88377K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:27:40.868+0800: 364.337: [GC2014-01-31T23:27:40.868+0800: 364.337: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 437272 bytes, 437272 total
- age 2: 401864 bytes, 839136 total
- age 3: 3382704 bytes, 4221840 total
- age 4: 1330728 bytes, 5552568 total
- age 5: 3154960 bytes, 8707528 total
- age 6: 240176 bytes, 8947704 total
- age 7: 160776 bytes, 9108480 total
- age 8: 433440 bytes, 9541920 total
- age 9: 1804000 bytes, 11345920 total
- age 10: 2087016 bytes, 13432936 total
- age 11: 308600 bytes, 13741536 total
: 132313K->19821K(142016K), 0.0143850 secs] 578803K->466311K(698568K), 0.0144780 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=131 (full 42):
par new generation total 142016K, used 19821K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 69% used [0x00000007b8ab0000, 0x00000007b9e0b7c0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 446489K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88377K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=131 (full 42):
par new generation total 142016K, used 133485K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 69% used [0x00000007b8ab0000, 0x00000007b9e0b7c0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 446489K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88389K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:27:48.277+0800: 371.746: [GC2014-01-31T23:27:48.277+0800: 371.747: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 836720 bytes, 836720 total
- age 2: 125304 bytes, 962024 total
- age 3: 401400 bytes, 1363424 total
- age 4: 3382304 bytes, 4745728 total
- age 5: 358088 bytes, 5103816 total
- age 6: 3118640 bytes, 8222456 total
- age 7: 212912 bytes, 8435368 total
- age 8: 145976 bytes, 8581344 total
- age 9: 373280 bytes, 8954624 total
- age 10: 1788768 bytes, 10743392 total
- age 11: 1679960 bytes, 12423352 total
- age 12: 292288 bytes, 12715640 total
: 133485K->20033K(142016K), 0.0131940 secs] 579975K->466522K(698568K), 0.0132730 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=132 (full 42):
par new generation total 142016K, used 20033K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 70% used [0x00000007b6f00000, 0x00000007b82904c0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 446489K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88389K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=132 (full 42):
par new generation total 142016K, used 133697K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 70% used [0x00000007b6f00000, 0x00000007b82904c0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 446489K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88397K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:27:54.282+0800: 377.752: [GC2014-01-31T23:27:54.282+0800: 377.752: [ParNew
Desired survivor size 14516224 bytes, new threshold 11 (max 15)
- age 1: 6129464 bytes, 6129464 total
- age 2: 597096 bytes, 6726560 total
- age 3: 125232 bytes, 6851792 total
- age 4: 327272 bytes, 7179064 total
- age 5: 3372664 bytes, 10551728 total
- age 6: 275656 bytes, 10827384 total
- age 7: 2943144 bytes, 13770528 total
- age 8: 180600 bytes, 13951128 total
- age 9: 122272 bytes, 14073400 total
- age 10: 353640 bytes, 14427040 total
- age 11: 1751520 bytes, 16178560 total
- age 12: 155816 bytes, 16334376 total
- age 13: 270544 bytes, 16604920 total
: 133697K->25332K(142016K), 0.0188350 secs] 580186K->471822K(698568K), 0.0189360 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=133 (full 42):
par new generation total 142016K, used 25332K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 89% used [0x00000007b8ab0000, 0x00000007ba36d2a0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 446489K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88397K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=133 (full 42):
par new generation total 142016K, used 138996K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 89% used [0x00000007b8ab0000, 0x00000007ba36d2a0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 446489K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88414K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:28:01.620+0800: 385.090: [GC2014-01-31T23:28:01.621+0800: 385.090: [ParNew
Desired survivor size 14516224 bytes, new threshold 7 (max 15)
- age 1: 6628752 bytes, 6628752 total
- age 2: 3508232 bytes, 10136984 total
- age 3: 555824 bytes, 10692808 total
- age 4: 71304 bytes, 10764112 total
- age 5: 253400 bytes, 11017512 total
- age 6: 3331288 bytes, 14348800 total
- age 7: 213984 bytes, 14562784 total
- age 8: 2557192 bytes, 17119976 total
- age 9: 170992 bytes, 17290968 total
- age 10: 114560 bytes, 17405528 total
- age 11: 327584 bytes, 17733112 total
: 138996K->28352K(142016K), 0.0174100 secs] 585486K->476945K(698568K), 0.0174840 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
Heap after GC invocations=134 (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 556552K, used 448593K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88414K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=134 (full 42):
par new generation total 142016K, used 132202K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 91% used [0x00000007b0000000, 0x00000007b656a8b0, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 448593K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88424K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:28:07.293+0800: 390.763: [GC2014-01-31T23:28:07.293+0800: 390.763: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 10343768 bytes, 10343768 total
- age 2: 6126992 bytes, 16470760 total
- age 3: 3440912 bytes, 19911672 total
- age 4: 553160 bytes, 20464832 total
- age 5: 37232 bytes, 20502064 total
- age 6: 129968 bytes, 20632032 total
- age 7: 3288040 bytes, 23920072 total
: 132202K->28352K(142016K), 0.0191310 secs] 580795K->480072K(698568K), 0.0192270 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=135 (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 [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 451720K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88424K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=135 (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 [0x00000007b8ab0000, 0x00000007ba660000, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 451720K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88436K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:28:12.458+0800: 395.927: [GC2014-01-31T23:28:12.458+0800: 395.927: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 568992 bytes, 568992 total
- age 2: 10130920 bytes, 10699912 total
: 142016K->21781K(142016K), 0.0261630 secs] 593736K->486796K(698568K), 0.0262380 secs] [Times: user=0.04 sys=0.01, real=0.03 secs]
Heap after GC invocations=136 (full 42):
par new generation total 142016K, used 21781K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b8445498, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 465014K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88436K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:28:12.484+0800: 395.954: [GC [1 CMS-initial-mark: 465014K(556552K)] 486848K(698568K), 0.0085220 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
2014-01-31T23:28:12.493+0800: 395.962: [CMS-concurrent-mark-start]
2014-01-31T23:28:12.695+0800: 396.165: [CMS-concurrent-mark: 0.202/0.202 secs] [Times: user=0.58 sys=0.02, real=0.20 secs]
2014-01-31T23:28:12.696+0800: 396.165: [GC[YG occupancy: 25679 K (142016 K)]2014-01-31T23:28:12.696+0800: 396.165: [Rescan (parallel) , 0.0060310 secs]2014-01-31T23:28:12.702+0800: 396.171: [weak refs processing, 0.0001880 secs]2014-01-31T23:28:12.702+0800: 396.171: [scrub string table, 0.0013850 secs] [1 CMS-remark: 465014K(556552K)] 490694K(698568K), 0.0076950 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:28:12.703+0800: 396.173: [CMS-concurrent-sweep-start]
2014-01-31T23:28:12.811+0800: 396.281: [CMS-concurrent-sweep: 0.108/0.108 secs] [Times: user=0.21 sys=0.01, real=0.11 secs]
2014-01-31T23:28:12.811+0800: 396.281: [CMS-concurrent-reset-start]
2014-01-31T23:28:12.814+0800: 396.283: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=136 (full 43):
par new generation total 142016K, used 135445K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b8445498, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 386831K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88454K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:28:16.224+0800: 399.693: [GC2014-01-31T23:28:16.224+0800: 399.693: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 5428952 bytes, 5428952 total
- age 2: 301872 bytes, 5730824 total
- age 3: 9709728 bytes, 15440552 total
: 135445K->18721K(142016K), 0.0131710 secs] 522276K->405552K(698568K), 0.0132450 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=137 (full 43):
par new generation total 142016K, used 18721K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 66% used [0x00000007b8ab0000, 0x00000007b9cf8428, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 386831K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88454K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=137 (full 43):
par new generation total 142016K, used 132385K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 66% used [0x00000007b8ab0000, 0x00000007b9cf8428, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 386831K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88527K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:28:22.688+0800: 406.157: [GC2014-01-31T23:28:22.688+0800: 406.157: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3106384 bytes, 3106384 total
- age 2: 5049472 bytes, 8155856 total
- age 3: 301800 bytes, 8457656 total
: 132385K->13668K(142016K), 0.0154220 secs] 519216K->407395K(698568K), 0.0155140 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=138 (full 43):
par new generation total 142016K, used 13668K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 48% used [0x00000007b6f00000, 0x00000007b7c59128, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88527K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=138 (full 43):
par new generation total 142016K, used 127332K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 48% used [0x00000007b6f00000, 0x00000007b7c59128, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88554K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:28:29.725+0800: 413.195: [GC2014-01-31T23:28:29.725+0800: 413.195: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 242832 bytes, 242832 total
- age 2: 2809952 bytes, 3052784 total
- age 3: 5045768 bytes, 8098552 total
- age 4: 301800 bytes, 8400352 total
: 127332K->9611K(142016K), 0.0116030 secs] 521059K->403338K(698568K), 0.0116970 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=139 (full 43):
par new generation total 142016K, used 9611K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 33% used [0x00000007b8ab0000, 0x00000007b9412d18, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88554K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=139 (full 43):
par new generation total 142016K, used 123275K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 33% used [0x00000007b8ab0000, 0x00000007b9412d18, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88582K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:28:35.856+0800: 419.325: [GC2014-01-31T23:28:35.856+0800: 419.325: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 478912 bytes, 478912 total
- age 2: 22000 bytes, 500912 total
- age 3: 2768120 bytes, 3269032 total
- age 4: 5037472 bytes, 8306504 total
- age 5: 297560 bytes, 8604064 total
: 123275K->12776K(142016K), 0.0109410 secs] 517002K->406504K(698568K), 0.0110190 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=140 (full 43):
par new generation total 142016K, used 12776K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 45% used [0x00000007b6f00000, 0x00000007b7b7a398, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88582K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=140 (full 43):
par new generation total 142016K, used 126440K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 45% used [0x00000007b6f00000, 0x00000007b7b7a398, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88589K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:28:40.625+0800: 424.095: [GC2014-01-31T23:28:40.626+0800: 424.095: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2049312 bytes, 2049312 total
- age 2: 252792 bytes, 2302104 total
- age 3: 20088 bytes, 2322192 total
- age 4: 2756184 bytes, 5078376 total
- age 5: 5026160 bytes, 10104536 total
- age 6: 287712 bytes, 10392248 total
: 126440K->12754K(142016K), 0.0140920 secs] 520168K->406481K(698568K), 0.0141840 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=141 (full 43):
par new generation total 142016K, used 12754K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 44% used [0x00000007b8ab0000, 0x00000007b97248d0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88589K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=141 (full 43):
par new generation total 142016K, used 126418K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 44% used [0x00000007b8ab0000, 0x00000007b97248d0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88598K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:28:45.982+0800: 429.451: [GC2014-01-31T23:28:45.982+0800: 429.451: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2270672 bytes, 2270672 total
- age 2: 144448 bytes, 2415120 total
- age 3: 242224 bytes, 2657344 total
- age 4: 19984 bytes, 2677328 total
- age 5: 2254848 bytes, 4932176 total
- age 6: 4397296 bytes, 9329472 total
- age 7: 139592 bytes, 9469064 total
: 126418K->14446K(142016K), 0.0130850 secs] 520145K->408174K(698568K), 0.0131700 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=142 (full 43):
par new generation total 142016K, used 14446K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 50% used [0x00000007b6f00000, 0x00000007b7d1bbe0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88598K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=142 (full 43):
par new generation total 142016K, used 128110K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 50% used [0x00000007b6f00000, 0x00000007b7d1bbe0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88628K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:28:53.474+0800: 436.944: [GC2014-01-31T23:28:53.474+0800: 436.944: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 900936 bytes, 900936 total
- age 2: 1281112 bytes, 2182048 total
- age 3: 140792 bytes, 2322840 total
- age 4: 216488 bytes, 2539328 total
- age 5: 19712 bytes, 2559040 total
- age 6: 1735800 bytes, 4294840 total
- age 7: 4280608 bytes, 8575448 total
- age 8: 60872 bytes, 8636320 total
: 128110K->13929K(142016K), 0.0113020 secs] 521838K->407656K(698568K), 0.0114120 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=143 (full 43):
par new generation total 142016K, used 13929K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 49% used [0x00000007b8ab0000, 0x00000007b984a658, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88628K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=143 (full 43):
par new generation total 142016K, used 127593K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 49% used [0x00000007b8ab0000, 0x00000007b984a658, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88683K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:29:00.237+0800: 443.706: [GC2014-01-31T23:29:00.237+0800: 443.706: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2709352 bytes, 2709352 total
- age 2: 594328 bytes, 3303680 total
- age 3: 1274776 bytes, 4578456 total
- age 4: 114912 bytes, 4693368 total
- age 5: 208392 bytes, 4901760 total
- age 6: 16392 bytes, 4918152 total
- age 7: 1734600 bytes, 6652752 total
- age 8: 4263080 bytes, 10915832 total
- age 9: 42456 bytes, 10958288 total
: 127593K->12989K(142016K), 0.0144730 secs] 521320K->406716K(698568K), 0.0145540 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=144 (full 43):
par new generation total 142016K, used 12989K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 45% used [0x00000007b6f00000, 0x00000007b7baf660, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88683K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=144 (full 43):
par new generation total 142016K, used 126653K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 45% used [0x00000007b6f00000, 0x00000007b7baf660, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88719K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:30:24.080+0800: 527.550: [GC2014-01-31T23:30:24.080+0800: 527.550: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 365904 bytes, 365904 total
- age 2: 141624 bytes, 507528 total
- age 3: 565008 bytes, 1072536 total
- age 4: 1259944 bytes, 2332480 total
- age 5: 114800 bytes, 2447280 total
- age 6: 197568 bytes, 2644848 total
- age 7: 13192 bytes, 2658040 total
- age 8: 1718600 bytes, 4376640 total
- age 9: 4263080 bytes, 8639720 total
- age 10: 39256 bytes, 8678976 total
: 126653K->10129K(142016K), 0.0120450 secs] 520380K->403856K(698568K), 0.0121460 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=145 (full 43):
par new generation total 142016K, used 10129K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 35% used [0x00000007b8ab0000, 0x00000007b9494668, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88719K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=145 (full 43):
par new generation total 142016K, used 123793K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 35% used [0x00000007b8ab0000, 0x00000007b9494668, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88734K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:30:32.650+0800: 536.120: [GC2014-01-31T23:30:32.650+0800: 536.120: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 788896 bytes, 788896 total
- age 2: 179512 bytes, 968408 total
- age 3: 141352 bytes, 1109760 total
- age 4: 563224 bytes, 1672984 total
- age 5: 1237592 bytes, 2910576 total
- age 6: 98816 bytes, 3009392 total
- age 7: 161920 bytes, 3171312 total
- age 8: 12368 bytes, 3183680 total
- age 9: 1688752 bytes, 4872432 total
- age 10: 4242880 bytes, 9115312 total
- age 11: 31704 bytes, 9147016 total
: 123793K->13314K(142016K), 0.0127900 secs] 517520K->407042K(698568K), 0.0128520 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=146 (full 43):
par new generation total 142016K, used 13314K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 46% used [0x00000007b6f00000, 0x00000007b7c00b10, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88734K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=146 (full 43):
par new generation total 142016K, used 126978K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 46% used [0x00000007b6f00000, 0x00000007b7c00b10, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88745K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:30:40.480+0800: 543.949: [GC2014-01-31T23:30:40.480+0800: 543.949: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4656296 bytes, 4656296 total
- age 2: 395104 bytes, 5051400 total
- age 3: 178576 bytes, 5229976 total
- age 4: 118792 bytes, 5348768 total
- age 5: 422056 bytes, 5770824 total
- age 6: 1197808 bytes, 6968632 total
- age 7: 97456 bytes, 7066088 total
- age 8: 106752 bytes, 7172840 total
- age 9: 12368 bytes, 7185208 total
- age 10: 84208 bytes, 7269416 total
- age 11: 3663344 bytes, 10932760 total
- age 12: 31704 bytes, 10964464 total
: 126978K->13323K(142016K), 0.0128480 secs] 520706K->407051K(698568K), 0.0129630 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
Heap after GC invocations=147 (full 43):
par new generation total 142016K, used 13323K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 46% used [0x00000007b8ab0000, 0x00000007b97b2f00, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88745K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=147 (full 43):
par new generation total 142016K, used 126987K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 46% used [0x00000007b8ab0000, 0x00000007b97b2f00, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88752K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:30:46.582+0800: 550.051: [GC2014-01-31T23:30:46.582+0800: 550.051: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4567064 bytes, 4567064 total
- age 2: 4167272 bytes, 8734336 total
- age 3: 388304 bytes, 9122640 total
- age 4: 178032 bytes, 9300672 total
- age 5: 107888 bytes, 9408560 total
- age 6: 369576 bytes, 9778136 total
- age 7: 1188616 bytes, 10966752 total
- age 8: 95936 bytes, 11062688 total
- age 9: 94776 bytes, 11157464 total
- age 10: 12368 bytes, 11169832 total
- age 11: 73736 bytes, 11243568 total
- age 12: 414224 bytes, 11657792 total
- age 13: 31248 bytes, 11689040 total
: 126987K->15469K(142016K), 0.0160450 secs] 520715K->409197K(698568K), 0.0161150 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
Heap after GC invocations=148 (full 43):
par new generation total 142016K, used 15469K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 54% used [0x00000007b6f00000, 0x00000007b7e1b770, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88752K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=148 (full 43):
par new generation total 142016K, used 129133K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 54% used [0x00000007b6f00000, 0x00000007b7e1b770, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88753K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:30:53.731+0800: 557.201: [GC2014-01-31T23:30:53.731+0800: 557.201: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 592272 bytes, 592272 total
- age 2: 2434304 bytes, 3026576 total
- age 3: 4134040 bytes, 7160616 total
- age 4: 384952 bytes, 7545568 total
- age 5: 177248 bytes, 7722816 total
- age 6: 87520 bytes, 7810336 total
- age 7: 361576 bytes, 8171912 total
- age 8: 1178648 bytes, 9350560 total
- age 9: 77352 bytes, 9427912 total
- age 10: 94776 bytes, 9522688 total
- age 11: 12208 bytes, 9534896 total
- age 12: 73688 bytes, 9608584 total
- age 13: 406456 bytes, 10015040 total
- age 14: 31248 bytes, 10046288 total
: 129133K->16542K(142016K), 0.0135810 secs] 522861K->410269K(698568K), 0.0136760 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=149 (full 43):
par new generation total 142016K, used 16542K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 58% used [0x00000007b8ab0000, 0x00000007b9ad7888, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88753K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=149 (full 43):
par new generation total 142016K, used 130206K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 58% used [0x00000007b8ab0000, 0x00000007b9ad7888, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88756K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:31:01.305+0800: 564.775: [GC2014-01-31T23:31:01.305+0800: 564.775: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 462952 bytes, 462952 total
- age 2: 326552 bytes, 789504 total
- age 3: 2400720 bytes, 3190224 total
- age 4: 4052624 bytes, 7242848 total
- age 5: 373952 bytes, 7616800 total
- age 6: 173344 bytes, 7790144 total
- age 7: 87056 bytes, 7877200 total
- age 8: 340128 bytes, 8217328 total
- age 9: 1168720 bytes, 9386048 total
- age 10: 67648 bytes, 9453696 total
- age 11: 94776 bytes, 9548472 total
- age 12: 12208 bytes, 9560680 total
- age 13: 73688 bytes, 9634368 total
- age 14: 406456 bytes, 10040824 total
- age 15: 31248 bytes, 10072072 total
: 130206K->12858K(142016K), 0.0135830 secs] 523933K->406586K(698568K), 0.0136530 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=150 (full 43):
par new generation total 142016K, used 12858K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 45% used [0x00000007b6f00000, 0x00000007b7b8eb88, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88756K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=150 (full 43):
par new generation total 142016K, used 126522K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 45% used [0x00000007b6f00000, 0x00000007b7b8eb88, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 393727K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88761K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:31:08.791+0800: 572.261: [GC2014-01-31T23:31:08.791+0800: 572.261: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 762864 bytes, 762864 total
- age 2: 192456 bytes, 955320 total
- age 3: 236008 bytes, 1191328 total
- age 4: 377400 bytes, 1568728 total
- age 5: 3006320 bytes, 4575048 total
- age 6: 217624 bytes, 4792672 total
- age 7: 165472 bytes, 4958144 total
- age 8: 86384 bytes, 5044528 total
- age 9: 92520 bytes, 5137048 total
- age 10: 63608 bytes, 5200656 total
- age 11: 57896 bytes, 5258552 total
- age 12: 94776 bytes, 5353328 total
- age 13: 12208 bytes, 5365536 total
- age 14: 22664 bytes, 5388200 total
- age 15: 153440 bytes, 5541640 total
: 126522K->9016K(142016K), 0.0121250 secs] 520250K->402774K(698568K), 0.0122860 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=151 (full 43):
par new generation total 142016K, used 9016K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 31% used [0x00000007b8ab0000, 0x00000007b937e178, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 393758K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88761K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=151 (full 43):
par new generation total 142016K, used 122680K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 31% used [0x00000007b8ab0000, 0x00000007b937e178, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 393758K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88776K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:31:15.824+0800: 579.293: [GC2014-01-31T23:31:15.824+0800: 579.293: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 6175528 bytes, 6175528 total
- age 2: 482448 bytes, 6657976 total
- age 3: 183488 bytes, 6841464 total
- age 4: 219232 bytes, 7060696 total
- age 5: 361288 bytes, 7421984 total
- age 6: 2976896 bytes, 10398880 total
- age 7: 202936 bytes, 10601816 total
- age 8: 162048 bytes, 10763864 total
- age 9: 86096 bytes, 10849960 total
- age 10: 84584 bytes, 10934544 total
- age 11: 41928 bytes, 10976472 total
- age 12: 57896 bytes, 11034368 total
- age 13: 94712 bytes, 11129080 total
- age 14: 12208 bytes, 11141288 total
- age 15: 22664 bytes, 11163952 total
: 122680K->12748K(142016K), 0.0140260 secs] 516438K->406657K(698568K), 0.0141220 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=152 (full 43):
par new generation total 142016K, used 12748K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 44% used [0x00000007b6f00000, 0x00000007b7b731b0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 393909K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88776K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=152 (full 43):
par new generation total 142016K, used 126412K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 44% used [0x00000007b6f00000, 0x00000007b7b731b0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 393909K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88796K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:31:24.615+0800: 588.085: [GC2014-01-31T23:31:24.615+0800: 588.085: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2781448 bytes, 2781448 total
- age 2: 2513928 bytes, 5295376 total
- age 3: 468016 bytes, 5763392 total
- age 4: 183448 bytes, 5946840 total
- age 5: 164056 bytes, 6110896 total
- age 6: 318656 bytes, 6429552 total
- age 7: 2871584 bytes, 9301136 total
- age 8: 191176 bytes, 9492312 total
- age 9: 161856 bytes, 9654168 total
- age 10: 63128 bytes, 9717296 total
- age 11: 59680 bytes, 9776976 total
- age 12: 29744 bytes, 9806720 total
- age 13: 57704 bytes, 9864424 total
- age 14: 86904 bytes, 9951328 total
- age 15: 12208 bytes, 9963536 total
: 126412K->13803K(142016K), 0.0126370 secs] 520321K->407734K(698568K), 0.0127210 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=153 (full 43):
par new generation total 142016K, used 13803K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 48% used [0x00000007b8ab0000, 0x00000007b982ac98, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 393931K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88796K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=153 (full 43):
par new generation total 142016K, used 127467K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 48% used [0x00000007b8ab0000, 0x00000007b982ac98, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 393931K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88800K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:31:30.602+0800: 594.071: [GC2014-01-31T23:31:30.602+0800: 594.071: [ParNew
Desired survivor size 14516224 bytes, new threshold 8 (max 15)
- age 1: 8116232 bytes, 8116232 total
- age 2: 2507504 bytes, 10623736 total
- age 3: 2508248 bytes, 13131984 total
- age 4: 467920 bytes, 13599904 total
- age 5: 154592 bytes, 13754496 total
- age 6: 122496 bytes, 13876992 total
- age 7: 220856 bytes, 14097848 total
- age 8: 2842008 bytes, 16939856 total
- age 9: 187936 bytes, 17127792 total
- age 10: 161840 bytes, 17289632 total
- age 11: 62808 bytes, 17352440 total
- age 12: 51936 bytes, 17404376 total
- age 13: 29744 bytes, 17434120 total
- age 14: 48880 bytes, 17483000 total
- age 15: 85712 bytes, 17568712 total
: 127467K->19259K(142016K), 0.0190350 secs] 521398K->413203K(698568K), 0.0191330 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=154 (full 43):
par new generation total 142016K, used 19259K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 67% used [0x00000007b6f00000, 0x00000007b81cef18, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 393943K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88800K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=154 (full 43):
par new generation total 142016K, used 132923K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 67% used [0x00000007b6f00000, 0x00000007b81cef18, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 393943K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88811K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:31:36.933+0800: 600.402: [GC2014-01-31T23:31:36.933+0800: 600.402: [ParNew
Desired survivor size 14516224 bytes, new threshold 8 (max 15)
- age 1: 3966688 bytes, 3966688 total
- age 2: 4954808 bytes, 8921496 total
- age 3: 2313152 bytes, 11234648 total
- age 4: 2506736 bytes, 13741384 total
- age 5: 454504 bytes, 14195888 total
- age 6: 132544 bytes, 14328432 total
- age 7: 122344 bytes, 14450776 total
- age 8: 153440 bytes, 14604216 total
: 132923K->22729K(142016K), 0.0174990 secs] 526867K->419983K(698568K), 0.0175770 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=155 (full 43):
par new generation total 142016K, used 22729K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 80% used [0x00000007b8ab0000, 0x00000007ba0e2758, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 397253K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88811K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=155 (full 43):
par new generation total 142016K, used 136393K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 80% used [0x00000007b8ab0000, 0x00000007ba0e2758, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 397253K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88822K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:31:44.312+0800: 607.781: [GC2014-01-31T23:31:44.312+0800: 607.782: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 4019800 bytes, 4019800 total
- age 2: 738168 bytes, 4757968 total
- age 3: 4865272 bytes, 9623240 total
- age 4: 2312872 bytes, 11936112 total
- age 5: 2498544 bytes, 14434656 total
- age 6: 454392 bytes, 14889048 total
- age 7: 90168 bytes, 14979216 total
- age 8: 103888 bytes, 15083104 total
: 136393K->21655K(142016K), 0.0159980 secs] 533647K->419044K(698568K), 0.0161100 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
Heap after GC invocations=156 (full 43):
par new generation total 142016K, used 21655K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b8425d68, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 397389K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88822K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=156 (full 43):
par new generation total 142016K, used 135319K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b8425d68, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 397389K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88848K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:31:48.287+0800: 611.756: [GC2014-01-31T23:31:48.287+0800: 611.756: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 2535424 bytes, 2535424 total
- age 2: 3661480 bytes, 6196904 total
- age 3: 737752 bytes, 6934656 total
- age 4: 4838360 bytes, 11773016 total
- age 5: 2286808 bytes, 14059824 total
- age 6: 2491864 bytes, 16551688 total
: 135319K->21933K(142016K), 0.0153910 secs] 532708K->419929K(698568K), 0.0154650 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=157 (full 43):
par new generation total 142016K, used 21933K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b8ab0000, 0x00000007ba01b5f0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 397996K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88848K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=157 (full 43):
par new generation total 142016K, used 135597K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b8ab0000, 0x00000007ba01b5f0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 397996K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88865K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:31:54.260+0800: 617.729: [GC2014-01-31T23:31:54.260+0800: 617.729: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 2246416 bytes, 2246416 total
- age 2: 2191152 bytes, 4437568 total
- age 3: 3643056 bytes, 8080624 total
- age 4: 737608 bytes, 8818232 total
- age 5: 4830752 bytes, 13648984 total
- age 6: 2114456 bytes, 15763440 total
: 135597K->23651K(142016K), 0.0165500 secs] 533593K->424064K(698568K), 0.0166410 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=158 (full 43):
par new generation total 142016K, used 23651K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 83% used [0x00000007b6f00000, 0x00000007b8618d08, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 400412K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88865K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=158 (full 43):
par new generation total 142016K, used 137315K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 83% used [0x00000007b6f00000, 0x00000007b8618d08, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 400412K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88877K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:32:01.493+0800: 624.962: [GC2014-01-31T23:32:01.493+0800: 624.962: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 1727736 bytes, 1727736 total
- age 2: 2028352 bytes, 3756088 total
- age 3: 2149056 bytes, 5905144 total
- age 4: 3632728 bytes, 9537872 total
- age 5: 726656 bytes, 10264528 total
- age 6: 4790320 bytes, 15054848 total
: 137315K->23249K(142016K), 0.0150990 secs] 537728K->425680K(698568K), 0.0151710 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=159 (full 43):
par new generation total 142016K, used 23249K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 82% used [0x00000007b8ab0000, 0x00000007ba164428, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 402431K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88877K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=159 (full 43):
par new generation total 142016K, used 136913K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 82% used [0x00000007b8ab0000, 0x00000007ba164428, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 402431K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88891K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:32:07.045+0800: 630.514: [GC2014-01-31T23:32:07.045+0800: 630.514: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4852944 bytes, 4852944 total
- age 2: 1352184 bytes, 6205128 total
- age 3: 1858856 bytes, 8063984 total
- age 4: 224064 bytes, 8288048 total
- age 5: 3629368 bytes, 11917416 total
- age 6: 501128 bytes, 12418544 total
: 136913K->14929K(142016K), 0.0174050 secs] 539344K->421827K(698568K), 0.0175000 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=160 (full 43):
par new generation total 142016K, used 14929K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 52% used [0x00000007b6f00000, 0x00000007b7d94718, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 406898K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88891K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=160 (full 43):
par new generation total 142016K, used 128593K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 52% used [0x00000007b6f00000, 0x00000007b7d94718, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 406898K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88900K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:32:14.166+0800: 637.635: [GC2014-01-31T23:32:14.166+0800: 637.635: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 653832 bytes, 653832 total
- age 2: 3847184 bytes, 4501016 total
- age 3: 56224 bytes, 4557240 total
- age 4: 1840304 bytes, 6397544 total
- age 5: 215400 bytes, 6612944 total
- age 6: 3600840 bytes, 10213784 total
- age 7: 251336 bytes, 10465120 total
: 128593K->12793K(142016K), 0.0128230 secs] 535491K->419691K(698568K), 0.0128980 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=161 (full 43):
par new generation total 142016K, used 12793K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 45% used [0x00000007b8ab0000, 0x00000007b972e5e0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 406898K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88900K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=161 (full 43):
par new generation total 142016K, used 126457K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 45% used [0x00000007b8ab0000, 0x00000007b972e5e0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 406898K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88909K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:32:18.476+0800: 641.946: [GC2014-01-31T23:32:18.476+0800: 641.946: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2318280 bytes, 2318280 total
- age 2: 373232 bytes, 2691512 total
- age 3: 3837496 bytes, 6529008 total
- age 4: 51232 bytes, 6580240 total
- age 5: 1838168 bytes, 8418408 total
- age 6: 180368 bytes, 8598776 total
- age 7: 3565384 bytes, 12164160 total
- age 8: 234936 bytes, 12399096 total
: 126457K->16374K(142016K), 0.0138360 secs] 533355K->423272K(698568K), 0.0139070 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=162 (full 43):
par new generation total 142016K, used 16374K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 57% used [0x00000007b6f00000, 0x00000007b7efd9e8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 406898K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88909K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=162 (full 43):
par new generation total 142016K, used 130038K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 57% used [0x00000007b6f00000, 0x00000007b7efd9e8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 406898K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88921K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:32:25.470+0800: 648.939: [GC2014-01-31T23:32:25.470+0800: 648.939: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1593952 bytes, 1593952 total
- age 2: 1706584 bytes, 3300536 total
- age 3: 288088 bytes, 3588624 total
- age 4: 3821840 bytes, 7410464 total
- age 5: 51232 bytes, 7461696 total
- age 6: 1831752 bytes, 9293448 total
- age 7: 160960 bytes, 9454408 total
- age 8: 3550592 bytes, 13005000 total
- age 9: 234896 bytes, 13239896 total
: 130038K->17517K(142016K), 0.0133050 secs] 536936K->424416K(698568K), 0.0134060 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=163 (full 43):
par new generation total 142016K, used 17517K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 61% used [0x00000007b8ab0000, 0x00000007b9bcb7f8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 406898K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88921K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=163 (full 43):
par new generation total 142016K, used 131181K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 61% used [0x00000007b8ab0000, 0x00000007b9bcb7f8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 406898K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88923K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:32:31.969+0800: 655.438: [GC2014-01-31T23:32:31.969+0800: 655.438: [ParNew
Desired survivor size 14516224 bytes, new threshold 9 (max 15)
- age 1: 3621968 bytes, 3621968 total
- age 2: 1274344 bytes, 4896312 total
- age 3: 1608904 bytes, 6505216 total
- age 4: 178576 bytes, 6683792 total
- age 5: 3689064 bytes, 10372856 total
- age 6: 50960 bytes, 10423816 total
- age 7: 1816632 bytes, 12240448 total
- age 8: 147368 bytes, 12387816 total
- age 9: 3511992 bytes, 15899808 total
- age 10: 218856 bytes, 16118664 total
: 131181K->25110K(142016K), 0.0146450 secs] 538080K->432008K(698568K), 0.0147160 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=164 (full 43):
par new generation total 142016K, used 25110K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 88% used [0x00000007b6f00000, 0x00000007b8785978, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 406898K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88923K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=164 (full 43):
par new generation total 142016K, used 138774K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 88% used [0x00000007b6f00000, 0x00000007b8785978, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 406898K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88934K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:32:38.992+0800: 662.462: [GC2014-01-31T23:32:38.992+0800: 662.462: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 386928 bytes, 386928 total
- age 2: 3412944 bytes, 3799872 total
- age 3: 1259760 bytes, 5059632 total
- age 4: 1593112 bytes, 6652744 total
- age 5: 173376 bytes, 6826120 total
- age 6: 3678408 bytes, 10504528 total
- age 7: 50960 bytes, 10555488 total
- age 8: 1783920 bytes, 12339408 total
- age 9: 122864 bytes, 12462272 total
: 138774K->14976K(142016K), 0.0156220 secs] 545672K->425494K(698568K), 0.0157230 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=165 (full 43):
par new generation total 142016K, used 14976K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 52% used [0x00000007b8ab0000, 0x00000007b99503e8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 410517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88934K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=165 (full 43):
par new generation total 142016K, used 128640K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 52% used [0x00000007b8ab0000, 0x00000007b99503e8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 410517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88942K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:32:46.177+0800: 669.646: [GC2014-01-31T23:32:46.177+0800: 669.646: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1428544 bytes, 1428544 total
- age 2: 122184 bytes, 1550728 total
- age 3: 3329744 bytes, 4880472 total
- age 4: 1250280 bytes, 6130752 total
- age 5: 1572928 bytes, 7703680 total
- age 6: 132312 bytes, 7835992 total
- age 7: 3660808 bytes, 11496800 total
- age 8: 50960 bytes, 11547760 total
- age 9: 1747424 bytes, 13295184 total
- age 10: 95040 bytes, 13390224 total
: 128640K->19260K(142016K), 0.0141910 secs] 539158K->429777K(698568K), 0.0142610 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
Heap after GC invocations=166 (full 43):
par new generation total 142016K, used 19260K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 67% used [0x00000007b6f00000, 0x00000007b81cf170, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 410517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88942K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=166 (full 43):
par new generation total 142016K, used 132924K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 67% used [0x00000007b6f00000, 0x00000007b81cf170, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 410517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88945K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:32:53.239+0800: 676.709: [GC2014-01-31T23:32:53.239+0800: 676.709: [ParNew
Desired survivor size 14516224 bytes, new threshold 10 (max 15)
- age 1: 4190880 bytes, 4190880 total
- age 2: 1114920 bytes, 5305800 total
- age 3: 119792 bytes, 5425592 total
- age 4: 1128064 bytes, 6553656 total
- age 5: 1232024 bytes, 7785680 total
- age 6: 1500608 bytes, 9286288 total
- age 7: 78696 bytes, 9364984 total
- age 8: 3648928 bytes, 13013912 total
- age 9: 50960 bytes, 13064872 total
- age 10: 1736920 bytes, 14801792 total
- age 11: 74272 bytes, 14876064 total
: 132924K->19493K(142016K), 0.0136560 secs] 543441K->430010K(698568K), 0.0137280 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=167 (full 43):
par new generation total 142016K, used 19493K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 68% used [0x00000007b8ab0000, 0x00000007b9db9580, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 410517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88945K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=167 (full 43):
par new generation total 142016K, used 133157K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 68% used [0x00000007b8ab0000, 0x00000007b9db9580, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 410517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88949K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:32:59.412+0800: 682.882: [GC2014-01-31T23:32:59.412+0800: 682.882: [ParNew
Desired survivor size 14516224 bytes, new threshold 9 (max 15)
- age 1: 5090872 bytes, 5090872 total
- age 2: 3470024 bytes, 8560896 total
- age 3: 1106128 bytes, 9667024 total
- age 4: 118792 bytes, 9785816 total
- age 5: 210816 bytes, 9996632 total
- age 6: 1219968 bytes, 11216600 total
- age 7: 1489744 bytes, 12706344 total
- age 8: 59240 bytes, 12765584 total
- age 9: 3640944 bytes, 16406528 total
- age 10: 50912 bytes, 16457440 total
: 133157K->21246K(142016K), 0.0223010 secs] 543674K->433514K(698568K), 0.0224580 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=168 (full 43):
par new generation total 142016K, used 21246K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 74% used [0x00000007b6f00000, 0x00000007b83bf998, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 412268K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88949K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=168 (full 43):
par new generation total 142016K, used 134910K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 74% used [0x00000007b6f00000, 0x00000007b83bf998, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 412268K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88955K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:33:05.756+0800: 689.226: [GC2014-01-31T23:33:05.756+0800: 689.226: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 415032 bytes, 415032 total
- age 2: 1029816 bytes, 1444848 total
- age 3: 3468800 bytes, 4913648 total
- age 4: 1098240 bytes, 6011888 total
- age 5: 118792 bytes, 6130680 total
- age 6: 196448 bytes, 6327128 total
- age 7: 1204416 bytes, 7531544 total
- age 8: 1474824 bytes, 9006368 total
- age 9: 46280 bytes, 9052648 total
: 134910K->15533K(142016K), 0.0150910 secs] 547178K->431419K(698568K), 0.0151640 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=169 (full 43):
par new generation total 142016K, used 15533K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 54% used [0x00000007b8ab0000, 0x00000007b99db438, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 415886K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88955K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=169 (full 43):
par new generation total 142016K, used 129197K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 54% used [0x00000007b8ab0000, 0x00000007b99db438, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 415886K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88959K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:33:11.676+0800: 695.146: [GC2014-01-31T23:33:11.676+0800: 695.146: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4906912 bytes, 4906912 total
- age 2: 143616 bytes, 5050528 total
- age 3: 281240 bytes, 5331768 total
- age 4: 143208 bytes, 5474976 total
- age 5: 182424 bytes, 5657400 total
- age 6: 96720 bytes, 5754120 total
- age 7: 99584 bytes, 5853704 total
- age 8: 105520 bytes, 5959224 total
- age 9: 466736 bytes, 6425960 total
- age 10: 39992 bytes, 6465952 total
: 129197K->10806K(142016K), 0.0127150 secs] 545083K->426692K(698568K), 0.0128070 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=170 (full 43):
par new generation total 142016K, used 10806K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 38% used [0x00000007b6f00000, 0x00000007b798d840, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 415886K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88959K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=170 (full 43):
par new generation total 142016K, used 124470K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 38% used [0x00000007b6f00000, 0x00000007b798d840, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 415886K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88961K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:33:17.849+0800: 701.319: [GC2014-01-31T23:33:17.850+0800: 701.319: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1823248 bytes, 1823248 total
- age 2: 4544184 bytes, 6367432 total
- age 3: 143448 bytes, 6510880 total
- age 4: 224760 bytes, 6735640 total
- age 5: 142552 bytes, 6878192 total
- age 6: 168024 bytes, 7046216 total
- age 7: 96720 bytes, 7142936 total
- age 8: 73984 bytes, 7216920 total
- age 9: 87568 bytes, 7304488 total
- age 10: 432544 bytes, 7737032 total
- age 11: 39992 bytes, 7777024 total
: 124470K->8303K(142016K), 0.0107740 secs] 540356K->424189K(698568K), 0.0108450 secs] [Times: user=0.02 sys=0.01, real=0.02 secs]
Heap after GC invocations=171 (full 43):
par new generation total 142016K, used 8303K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 29% used [0x00000007b8ab0000, 0x00000007b92cbcd8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 415886K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88961K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=171 (full 43):
par new generation total 142016K, used 121967K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 29% used [0x00000007b8ab0000, 0x00000007b92cbcd8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 415886K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88965K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:33:24.608+0800: 708.077: [GC2014-01-31T23:33:24.608+0800: 708.077: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 5343192 bytes, 5343192 total
- age 2: 1605832 bytes, 6949024 total
- age 3: 4493536 bytes, 11442560 total
- age 4: 143368 bytes, 11585928 total
- age 5: 187208 bytes, 11773136 total
- age 6: 129752 bytes, 11902888 total
- age 7: 124864 bytes, 12027752 total
- age 8: 60936 bytes, 12088688 total
- age 9: 73512 bytes, 12162200 total
- age 10: 63584 bytes, 12225784 total
- age 11: 432504 bytes, 12658288 total
- age 12: 39952 bytes, 12698240 total
: 121967K->16763K(142016K), 0.0150270 secs] 537853K->432650K(698568K), 0.0151200 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=172 (full 43):
par new generation total 142016K, used 16763K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 59% used [0x00000007b6f00000, 0x00000007b7f5ed00, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 415886K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88965K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=172 (full 43):
par new generation total 142016K, used 130427K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 59% used [0x00000007b6f00000, 0x00000007b7f5ed00, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 415886K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88967K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:33:30.417+0800: 713.886: [GC2014-01-31T23:33:30.417+0800: 713.886: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1999176 bytes, 1999176 total
- age 2: 5006424 bytes, 7005600 total
- age 3: 1604456 bytes, 8610056 total
- age 4: 4339480 bytes, 12949536 total
- age 5: 143232 bytes, 13092768 total
- age 6: 132784 bytes, 13225552 total
- age 7: 109816 bytes, 13335368 total
- age 8: 102320 bytes, 13437688 total
- age 9: 60936 bytes, 13498624 total
- age 10: 64336 bytes, 13562960 total
- age 11: 63584 bytes, 13626544 total
- age 12: 432272 bytes, 14058816 total
- age 13: 27504 bytes, 14086320 total
: 130427K->16399K(142016K), 0.0129470 secs] 546314K->432286K(698568K), 0.0130170 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
Heap after GC invocations=173 (full 43):
par new generation total 142016K, used 16399K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 57% used [0x00000007b8ab0000, 0x00000007b9ab3f90, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 415886K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88967K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=173 (full 43):
par new generation total 142016K, used 130063K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 57% used [0x00000007b8ab0000, 0x00000007b9ab3f90, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 415886K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88967K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:33:37.235+0800: 720.705: [GC2014-01-31T23:33:37.235+0800: 720.705: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 587880 bytes, 587880 total
- age 2: 1721368 bytes, 2309248 total
- age 3: 4994264 bytes, 7303512 total
- age 4: 1595200 bytes, 8898712 total
- age 5: 4339384 bytes, 13238096 total
- age 6: 125048 bytes, 13363144 total
- age 7: 91080 bytes, 13454224 total
- age 8: 87672 bytes, 13541896 total
- age 9: 81360 bytes, 13623256 total
- age 10: 50624 bytes, 13673880 total
- age 11: 64240 bytes, 13738120 total
- age 12: 51704 bytes, 13789824 total
- age 13: 432272 bytes, 14222096 total
- age 14: 27504 bytes, 14249600 total
: 130063K->19541K(142016K), 0.0138590 secs] 545950K->435428K(698568K), 0.0139310 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=174 (full 43):
par new generation total 142016K, used 19541K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 68% used [0x00000007b6f00000, 0x00000007b8215578, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 415886K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88967K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=174 (full 43):
par new generation total 142016K, used 133205K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 68% used [0x00000007b6f00000, 0x00000007b8215578, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 415886K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88971K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:33:43.949+0800: 727.418: [GC2014-01-31T23:33:43.949+0800: 727.418: [ParNew
Desired survivor size 14516224 bytes, new threshold 14 (max 15)
- age 1: 1105024 bytes, 1105024 total
- age 2: 282120 bytes, 1387144 total
- age 3: 1721040 bytes, 3108184 total
- age 4: 4976784 bytes, 8084968 total
- age 5: 1567016 bytes, 9651984 total
- age 6: 4312888 bytes, 13964872 total
- age 7: 118600 bytes, 14083472 total
- age 8: 90664 bytes, 14174136 total
- age 9: 87152 bytes, 14261288 total
- age 10: 59728 bytes, 14321016 total
- age 11: 50624 bytes, 14371640 total
- age 12: 61040 bytes, 14432680 total
- age 13: 51648 bytes, 14484328 total
- age 14: 413856 bytes, 14898184 total
- age 15: 27504 bytes, 14925688 total
: 133205K->20513K(142016K), 0.0137700 secs] 549092K->436400K(698568K), 0.0138350 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
Heap after GC invocations=175 (full 43):
par new generation total 142016K, used 20513K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 72% used [0x00000007b8ab0000, 0x00000007b9eb8710, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 415886K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88971K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=175 (full 43):
par new generation total 142016K, used 134177K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 72% used [0x00000007b8ab0000, 0x00000007b9eb8710, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 415886K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88971K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:33:49.606+0800: 733.075: [GC2014-01-31T23:33:49.606+0800: 733.075: [ParNew
Desired survivor size 14516224 bytes, new threshold 13 (max 15)
- age 1: 700640 bytes, 700640 total
- age 2: 766096 bytes, 1466736 total
- age 3: 270400 bytes, 1737136 total
- age 4: 1632944 bytes, 3370080 total
- age 5: 4959176 bytes, 8329256 total
- age 6: 1545448 bytes, 9874704 total
- age 7: 4265000 bytes, 14139704 total
- age 8: 110752 bytes, 14250456 total
- age 9: 78888 bytes, 14329344 total
- age 10: 63336 bytes, 14392680 total
- age 11: 44664 bytes, 14437344 total
- age 12: 50624 bytes, 14487968 total
- age 13: 61024 bytes, 14548992 total
- age 14: 43736 bytes, 14592728 total
: 134177K->21609K(142016K), 0.0160450 secs] 550064K->437937K(698568K), 0.0161380 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=176 (full 43):
par new generation total 142016K, used 21609K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b841a5d0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 416327K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88971K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=176 (full 43):
par new generation total 142016K, used 135273K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b841a5d0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 416327K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88973K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:33:56.665+0800: 740.135: [GC2014-01-31T23:33:56.665+0800: 740.135: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 358248 bytes, 358248 total
- age 2: 202144 bytes, 560392 total
- age 3: 733072 bytes, 1293464 total
- age 4: 270400 bytes, 1563864 total
- age 5: 1622752 bytes, 3186616 total
- age 6: 4937488 bytes, 8124104 total
- age 7: 1539032 bytes, 9663136 total
- age 8: 4209664 bytes, 13872800 total
- age 9: 110752 bytes, 13983552 total
- age 10: 77448 bytes, 14061000 total
- age 11: 56216 bytes, 14117216 total
- age 12: 44664 bytes, 14161880 total
- age 13: 50624 bytes, 14212504 total
: 135273K->21243K(142016K), 0.0136350 secs] 551601K->437676K(698568K), 0.0137110 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=177 (full 43):
par new generation total 142016K, used 21243K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 74% used [0x00000007b8ab0000, 0x00000007b9f6ee48, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 416432K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88973K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=177 (full 43):
par new generation total 142016K, used 134907K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 74% used [0x00000007b8ab0000, 0x00000007b9f6ee48, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 416432K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88974K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:34:03.486+0800: 746.955: [GC2014-01-31T23:34:03.486+0800: 746.955: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3760792 bytes, 3760792 total
- age 2: 90136 bytes, 3850928 total
- age 3: 174864 bytes, 4025792 total
- age 4: 713440 bytes, 4739232 total
- age 5: 245176 bytes, 4984408 total
- age 6: 1532536 bytes, 6516944 total
- age 7: 4773880 bytes, 11290824 total
- age 8: 1490432 bytes, 12781256 total
- age 9: 1349360 bytes, 14130616 total
- age 10: 91472 bytes, 14222088 total
- age 11: 77368 bytes, 14299456 total
- age 12: 55544 bytes, 14355000 total
- age 13: 44624 bytes, 14399624 total
- age 14: 50624 bytes, 14450248 total
: 134907K->20876K(142016K), 0.0149190 secs] 551340K->437308K(698568K), 0.0149990 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=178 (full 43):
par new generation total 142016K, used 20876K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 73% used [0x00000007b6f00000, 0x00000007b8363080, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 416432K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88974K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=178 (full 43):
par new generation total 142016K, used 134540K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 73% used [0x00000007b6f00000, 0x00000007b8363080, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 416432K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88980K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:34:08.256+0800: 751.726: [GC2014-01-31T23:34:08.256+0800: 751.726: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 11491632 bytes, 11491632 total
- age 2: 378208 bytes, 11869840 total
- age 3: 89888 bytes, 11959728 total
- age 4: 164832 bytes, 12124560 total
- age 5: 657520 bytes, 12782080 total
- age 6: 231568 bytes, 13013648 total
- age 7: 85504 bytes, 13099152 total
- age 8: 380128 bytes, 13479280 total
- age 9: 134832 bytes, 13614112 total
- age 10: 200680 bytes, 13814792 total
- age 11: 51912 bytes, 13866704 total
- age 12: 77136 bytes, 13943840 total
- age 13: 55544 bytes, 13999384 total
- age 14: 44624 bytes, 14044008 total
- age 15: 38760 bytes, 14082768 total
: 134540K->21079K(142016K), 0.0138080 secs] 550972K->437512K(698568K), 0.0139010 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
Heap after GC invocations=179 (full 43):
par new generation total 142016K, used 21079K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 74% used [0x00000007b8ab0000, 0x00000007b9f45f08, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 416432K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88980K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=179 (full 43):
par new generation total 142016K, used 134743K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 74% used [0x00000007b8ab0000, 0x00000007b9f45f08, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 416432K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88982K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:34:14.903+0800: 758.372: [GC2014-01-31T23:34:14.903+0800: 758.372: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 3721072 bytes, 3721072 total
- age 2: 11023032 bytes, 14744104 total
- age 3: 367464 bytes, 15111568 total
- age 4: 89616 bytes, 15201184 total
- age 5: 164208 bytes, 15365392 total
- age 6: 649056 bytes, 16014448 total
- age 7: 223040 bytes, 16237488 total
- age 8: 84488 bytes, 16321976 total
- age 9: 109176 bytes, 16431152 total
- age 10: 63248 bytes, 16494400 total
- age 11: 191392 bytes, 16685792 total
- age 12: 39432 bytes, 16725224 total
- age 13: 76880 bytes, 16802104 total
- age 14: 55488 bytes, 16857592 total
- age 15: 34104 bytes, 16891696 total
: 134743K->20667K(142016K), 0.0161790 secs] 551176K->437129K(698568K), 0.0162770 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=180 (full 43):
par new generation total 142016K, used 20667K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 72% used [0x00000007b6f00000, 0x00000007b832ee68, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 416461K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88982K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=180 (full 43):
par new generation total 142016K, used 134331K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 72% used [0x00000007b6f00000, 0x00000007b832ee68, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 416461K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88985K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:34:24.298+0800: 767.767: [GC2014-01-31T23:34:24.298+0800: 767.767: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 542360 bytes, 542360 total
- age 2: 3491584 bytes, 4033944 total
: 134331K->15808K(142016K), 0.0235670 secs] 550793K->444962K(698568K), 0.0236480 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
Heap after GC invocations=181 (full 43):
par new generation total 142016K, used 15808K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 55% used [0x00000007b8ab0000, 0x00000007b9a20218, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 429154K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88985K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=181 (full 43):
par new generation total 142016K, used 129472K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 55% used [0x00000007b8ab0000, 0x00000007b9a20218, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 429154K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88989K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:34:30.229+0800: 773.698: [GC2014-01-31T23:34:30.229+0800: 773.698: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 8297544 bytes, 8297544 total
- age 2: 300216 bytes, 8597760 total
- age 3: 3481536 bytes, 12079296 total
: 129472K->14896K(142016K), 0.0164410 secs] 558626K->444050K(698568K), 0.0165700 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=182 (full 43):
par new generation total 142016K, used 14896K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 52% used [0x00000007b6f00000, 0x00000007b7d8c230, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 429154K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88989K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=182 (full 43):
par new generation total 142016K, used 128560K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 52% used [0x00000007b6f00000, 0x00000007b7d8c230, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 429154K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88991K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:34:35.344+0800: 778.814: [GC2014-01-31T23:34:35.344+0800: 778.814: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 670280 bytes, 670280 total
- age 2: 4589224 bytes, 5259504 total
- age 3: 275928 bytes, 5535432 total
- age 4: 3481200 bytes, 9016632 total
: 128560K->14967K(142016K), 0.0110850 secs] 557714K->444121K(698568K), 0.0111630 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=183 (full 43):
par new generation total 142016K, used 14967K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 52% used [0x00000007b8ab0000, 0x00000007b994ddf0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 429154K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88991K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=183 (full 43):
par new generation total 142016K, used 128631K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 52% used [0x00000007b8ab0000, 0x00000007b994ddf0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 429154K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88991K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:34:42.153+0800: 785.623: [GC2014-01-31T23:34:42.153+0800: 785.623: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1812336 bytes, 1812336 total
- age 2: 179408 bytes, 1991744 total
- age 3: 4579064 bytes, 6570808 total
- age 4: 265296 bytes, 6836104 total
- age 5: 3472680 bytes, 10308784 total
: 128631K->11594K(142016K), 0.0105170 secs] 557785K->440749K(698568K), 0.0106110 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=184 (full 43):
par new generation total 142016K, used 11594K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 40% used [0x00000007b6f00000, 0x00000007b7a52b50, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 429154K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88991K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=184 (full 43):
par new generation total 142016K, used 125234K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6ef9cf0, 0x00000007b6f00000)
from space 28352K, 40% used [0x00000007b6f00000, 0x00000007b7a52b50, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 429154K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88993K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:34:48.667+0800: 792.136: [GC2014-01-31T23:34:48.667+0800: 792.136: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 724864 bytes, 724864 total
- age 2: 1223136 bytes, 1948000 total
- age 3: 116488 bytes, 2064488 total
- age 4: 4531920 bytes, 6596408 total
- age 5: 261896 bytes, 6858304 total
- age 6: 3428768 bytes, 10287072 total
: 125234K->13477K(142016K), 0.0118570 secs] 554388K->442631K(698568K), 0.0119400 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=185 (full 43):
par new generation total 142016K, used 13477K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 47% used [0x00000007b8ab0000, 0x00000007b97d9438, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 429154K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 88993K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=185 (full 43):
par new generation total 142016K, used 121887K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 95% used [0x00000007b0000000, 0x00000007b69de9c0, 0x00000007b6f00000)
from space 28352K, 47% used [0x00000007b8ab0000, 0x00000007b97d9438, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 429154K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89001K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:34:54.269+0800: 797.738: [GC2014-01-31T23:34:54.269+0800: 797.738: [ParNew
Desired survivor size 14516224 bytes, new threshold 7 (max 15)
- age 1: 7082016 bytes, 7082016 total
- age 2: 130128 bytes, 7212144 total
- age 3: 1133320 bytes, 8345464 total
- age 4: 70896 bytes, 8416360 total
- age 5: 4320680 bytes, 12737040 total
- age 6: 243120 bytes, 12980160 total
- age 7: 3405088 bytes, 16385248 total
: 121887K->24309K(142016K), 0.0132370 secs] 551041K->453463K(698568K), 0.0133290 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=186 (full 43):
par new generation total 142016K, used 24309K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 85% used [0x00000007b6f00000, 0x00000007b86bd640, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 429154K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89001K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=186 (full 43):
par new generation total 142016K, used 137938K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6ef74b0, 0x00000007b6f00000)
from space 28352K, 85% used [0x00000007b6f00000, 0x00000007b86bd640, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 429154K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89001K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:34:57.223+0800: 800.692: [GC2014-01-31T23:34:57.223+0800: 800.692: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1819120 bytes, 1819120 total
- age 2: 6285824 bytes, 8104944 total
- age 3: 129848 bytes, 8234792 total
- age 4: 1118104 bytes, 9352896 total
- age 5: 70600 bytes, 9423496 total
- age 6: 4319648 bytes, 13743144 total
- age 7: 231376 bytes, 13974520 total
: 137938K->21672K(142016K), 0.0146270 secs] 567093K->454160K(698568K), 0.0147020 secs] [Times: user=0.03 sys=0.01, real=0.01 secs]
Heap after GC invocations=187 (full 43):
par new generation total 142016K, used 21672K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b8ab0000, 0x00000007b9fda3d8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 432487K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89001K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=187 (full 43):
par new generation total 142016K, used 121374K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 87% used [0x00000007b0000000, 0x00000007b615d648, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b8ab0000, 0x00000007b9fda3d8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 432487K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89009K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:35:01.671+0800: 805.140: [GC2014-01-31T23:35:01.671+0800: 805.140: [ParNew
Desired survivor size 14516224 bytes, new threshold 7 (max 15)
- age 1: 3541656 bytes, 3541656 total
- age 2: 1200192 bytes, 4741848 total
- age 3: 6248360 bytes, 10990208 total
- age 4: 129496 bytes, 11119704 total
- age 5: 1109032 bytes, 12228736 total
- age 6: 61920 bytes, 12290656 total
- age 7: 4248912 bytes, 16539568 total
- age 8: 217032 bytes, 16756600 total
: 121374K->22729K(142016K), 0.0132830 secs] 553862K->455217K(698568K), 0.0133660 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=188 (full 43):
par new generation total 142016K, used 22729K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 80% used [0x00000007b6f00000, 0x00000007b8532640, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 432487K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89009K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=188 (full 43):
par new generation total 142016K, used 136393K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 80% used [0x00000007b6f00000, 0x00000007b8532640, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 432487K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89022K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:35:07.259+0800: 810.728: [GC2014-01-31T23:35:07.259+0800: 810.728: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2780016 bytes, 2780016 total
- age 2: 553600 bytes, 3333616 total
- age 3: 376864 bytes, 3710480 total
- age 4: 6055080 bytes, 9765560 total
- age 5: 113688 bytes, 9879248 total
- age 6: 849392 bytes, 10728640 total
- age 7: 61808 bytes, 10790448 total
: 136393K->14234K(142016K), 0.0149620 secs] 568881K->450948K(698568K), 0.0150440 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=189 (full 43):
par new generation total 142016K, used 14234K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 50% used [0x00000007b8ab0000, 0x00000007b98969d0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 436714K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89022K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=189 (full 43):
par new generation total 142016K, used 127898K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 50% used [0x00000007b8ab0000, 0x00000007b98969d0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 436714K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89025K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:35:13.385+0800: 816.854: [GC2014-01-31T23:35:13.385+0800: 816.854: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4064920 bytes, 4064920 total
- age 2: 770440 bytes, 4835360 total
- age 3: 519888 bytes, 5355248 total
- age 4: 234048 bytes, 5589296 total
- age 5: 5875976 bytes, 11465272 total
- age 6: 113688 bytes, 11578960 total
- age 7: 186976 bytes, 11765936 total
- age 8: 61808 bytes, 11827744 total
: 127898K->17107K(142016K), 0.0124140 secs] 564612K->453821K(698568K), 0.0125320 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=190 (full 43):
par new generation total 142016K, used 17107K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 60% used [0x00000007b6f00000, 0x00000007b7fb4f18, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 436714K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89025K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=190 (full 43):
par new generation total 142016K, used 130771K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 60% used [0x00000007b6f00000, 0x00000007b7fb4f18, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 436714K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89027K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:35:18.652+0800: 822.121: [GC2014-01-31T23:35:18.652+0800: 822.121: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3380064 bytes, 3380064 total
- age 2: 2865152 bytes, 6245216 total
- age 3: 720856 bytes, 6966072 total
- age 4: 519384 bytes, 7485456 total
- age 5: 215456 bytes, 7700912 total
- age 6: 5812784 bytes, 13513696 total
- age 7: 106032 bytes, 13619728 total
- age 8: 163752 bytes, 13783480 total
- age 9: 58608 bytes, 13842088 total
: 130771K->17373K(142016K), 0.0142280 secs] 567485K->454087K(698568K), 0.0143020 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=191 (full 43):
par new generation total 142016K, used 17373K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 61% used [0x00000007b8ab0000, 0x00000007b9ba7530, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 436714K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89027K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=191 (full 43):
par new generation total 142016K, used 131037K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 61% used [0x00000007b8ab0000, 0x00000007b9ba7530, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 436714K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89031K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:35:25.341+0800: 828.811: [GC2014-01-31T23:35:25.341+0800: 828.811: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1562968 bytes, 1562968 total
- age 2: 1958176 bytes, 3521144 total
- age 3: 2864440 bytes, 6385584 total
- age 4: 720256 bytes, 7105840 total
- age 5: 519264 bytes, 7625104 total
- age 6: 215400 bytes, 7840504 total
- age 7: 5762240 bytes, 13602744 total
- age 8: 90792 bytes, 13693536 total
- age 9: 130328 bytes, 13823864 total
- age 10: 58608 bytes, 13882472 total
: 131037K->19330K(142016K), 0.0125600 secs] 567751K->456044K(698568K), 0.0126590 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=192 (full 43):
par new generation total 142016K, used 19330K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 68% used [0x00000007b6f00000, 0x00000007b81e08b0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 436714K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89031K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=192 (full 43):
par new generation total 142016K, used 132994K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 68% used [0x00000007b6f00000, 0x00000007b81e08b0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 436714K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89036K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:35:30.025+0800: 833.495: [GC2014-01-31T23:35:30.025+0800: 833.495: [ParNew
Desired survivor size 14516224 bytes, new threshold 8 (max 15)
- age 1: 3614176 bytes, 3614176 total
- age 2: 186888 bytes, 3801064 total
- age 3: 1957032 bytes, 5758096 total
- age 4: 2814648 bytes, 8572744 total
- age 5: 719984 bytes, 9292728 total
- age 6: 511168 bytes, 9803896 total
- age 7: 215360 bytes, 10019256 total
- age 8: 5733920 bytes, 15753176 total
- age 9: 90792 bytes, 15843968 total
- age 10: 130288 bytes, 15974256 total
- age 11: 58608 bytes, 16032864 total
: 132994K->20059K(142016K), 0.0157260 secs] 569708K->456773K(698568K), 0.0158170 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=193 (full 43):
par new generation total 142016K, used 20059K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 70% used [0x00000007b8ab0000, 0x00000007b9e46f10, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 436714K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89036K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=193 (full 43):
par new generation total 142016K, used 133723K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 70% used [0x00000007b8ab0000, 0x00000007b9e46f10, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 436714K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89042K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:35:37.431+0800: 840.900: [GC2014-01-31T23:35:37.431+0800: 840.900: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2160064 bytes, 2160064 total
- age 2: 2145752 bytes, 4305816 total
- age 3: 185184 bytes, 4491000 total
- age 4: 1956312 bytes, 6447312 total
- age 5: 2789320 bytes, 9236632 total
- age 6: 683048 bytes, 9919680 total
- age 7: 483192 bytes, 10402872 total
- age 8: 215360 bytes, 10618232 total
: 133723K->22585K(142016K), 0.0168320 secs] 570437K->465168K(698568K), 0.0170240 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=194 (full 43):
par new generation total 142016K, used 22585K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 79% used [0x00000007b6f00000, 0x00000007b850e5b0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 442583K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89042K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=194 (full 43):
par new generation total 142016K, used 136249K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 79% used [0x00000007b6f00000, 0x00000007b850e5b0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 442583K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89043K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:35:43.600+0800: 847.069: [GC2014-01-31T23:35:43.600+0800: 847.069: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1959960 bytes, 1959960 total
- age 2: 526432 bytes, 2486392 total
- age 3: 2143520 bytes, 4629912 total
- age 4: 185184 bytes, 4815096 total
- age 5: 1955096 bytes, 6770192 total
- age 6: 2766600 bytes, 9536792 total
- age 7: 640704 bytes, 10177496 total
- age 8: 403504 bytes, 10581000 total
- age 9: 212160 bytes, 10793160 total
: 136249K->11517K(142016K), 0.0116940 secs] 578832K->454100K(698568K), 0.0117660 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=195 (full 43):
par new generation total 142016K, used 11517K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 40% used [0x00000007b8ab0000, 0x00000007b95ef5d8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 442583K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89043K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=195 (full 43):
par new generation total 142016K, used 125181K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 40% used [0x00000007b8ab0000, 0x00000007b95ef5d8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 442583K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89044K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:35:50.712+0800: 854.181: [GC2014-01-31T23:35:50.712+0800: 854.182: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2144848 bytes, 2144848 total
- age 2: 200208 bytes, 2345056 total
- age 3: 525880 bytes, 2870936 total
- age 4: 2142048 bytes, 5012984 total
- age 5: 185144 bytes, 5198128 total
- age 6: 1944816 bytes, 7142944 total
- age 7: 2759952 bytes, 9902896 total
- age 8: 589312 bytes, 10492208 total
- age 9: 403504 bytes, 10895712 total
- age 10: 212160 bytes, 11107872 total
: 125181K->14673K(142016K), 0.0114700 secs] 567764K->457256K(698568K), 0.0115640 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=196 (full 43):
par new generation total 142016K, used 14673K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 51% used [0x00000007b6f00000, 0x00000007b7d54570, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 442583K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89044K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=196 (full 43):
par new generation total 142016K, used 128337K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 51% used [0x00000007b6f00000, 0x00000007b7d54570, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 442583K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89050K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:35:57.476+0800: 860.945: [GC2014-01-31T23:35:57.476+0800: 860.945: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 5586520 bytes, 5586520 total
- age 2: 339296 bytes, 5925816 total
- age 3: 183440 bytes, 6109256 total
- age 4: 460872 bytes, 6570128 total
- age 5: 2140736 bytes, 8710864 total
- age 6: 163408 bytes, 8874272 total
- age 7: 1905896 bytes, 10780168 total
- age 8: 143472 bytes, 10923640 total
- age 9: 567136 bytes, 11490776 total
- age 10: 393648 bytes, 11884424 total
- age 11: 203792 bytes, 12088216 total
: 128337K->15842K(142016K), 0.0150490 secs] 570920K->458425K(698568K), 0.0151280 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=197 (full 43):
par new generation total 142016K, used 15842K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 55% used [0x00000007b8ab0000, 0x00000007b9a28918, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 442583K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89050K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=197 (full 43):
par new generation total 142016K, used 129488K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6efba78, 0x00000007b6f00000)
from space 28352K, 55% used [0x00000007b8ab0000, 0x00000007b9a28918, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 442583K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89050K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:36:04.179+0800: 867.648: [GC2014-01-31T23:36:04.179+0800: 867.648: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1417560 bytes, 1417560 total
- age 2: 3666032 bytes, 5083592 total
- age 3: 271440 bytes, 5355032 total
- age 4: 181656 bytes, 5536688 total
- age 5: 451056 bytes, 5987744 total
- age 6: 2135720 bytes, 8123464 total
- age 7: 162192 bytes, 8285656 total
- age 8: 1895600 bytes, 10181256 total
- age 9: 142392 bytes, 10323648 total
- age 10: 538648 bytes, 10862296 total
- age 11: 378872 bytes, 11241168 total
- age 12: 203792 bytes, 11444960 total
: 129488K->17334K(142016K), 0.0127550 secs] 572072K->459917K(698568K), 0.0128480 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=198 (full 43):
par new generation total 142016K, used 17334K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 61% used [0x00000007b6f00000, 0x00000007b7fed890, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 442583K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89050K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=198 (full 43):
par new generation total 142016K, used 130998K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 61% used [0x00000007b6f00000, 0x00000007b7fed890, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 442583K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89055K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:36:09.884+0800: 873.354: [GC2014-01-31T23:36:09.884+0800: 873.354: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 5747888 bytes, 5747888 total
- age 2: 112208 bytes, 5860096 total
- age 3: 3160920 bytes, 9021016 total
- age 4: 263360 bytes, 9284376 total
- age 5: 181440 bytes, 9465816 total
- age 6: 444504 bytes, 9910320 total
- age 7: 81272 bytes, 9991592 total
- age 8: 99808 bytes, 10091400 total
- age 9: 57152 bytes, 10148552 total
- age 10: 142360 bytes, 10290912 total
- age 11: 121624 bytes, 10412536 total
- age 12: 323480 bytes, 10736016 total
- age 13: 199552 bytes, 10935568 total
: 130998K->16776K(142016K), 0.0125880 secs] 573581K->459359K(698568K), 0.0126640 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=199 (full 43):
par new generation total 142016K, used 16776K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 59% used [0x00000007b8ab0000, 0x00000007b9b12138, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 442583K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89055K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=199 (full 43):
par new generation total 142016K, used 130440K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 59% used [0x00000007b8ab0000, 0x00000007b9b12138, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 442583K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89059K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:36:15.863+0800: 879.333: [GC2014-01-31T23:36:15.863+0800: 879.333: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 7968792 bytes, 7968792 total
- age 2: 3437528 bytes, 11406320 total
- age 3: 111872 bytes, 11518192 total
- age 4: 3050656 bytes, 14568848 total
- age 5: 253368 bytes, 14822216 total
- age 6: 181400 bytes, 15003616 total
- age 7: 444424 bytes, 15448040 total
- age 8: 72904 bytes, 15520944 total
- age 9: 91296 bytes, 15612240 total
- age 10: 55088 bytes, 15667328 total
- age 11: 142360 bytes, 15809688 total
- age 12: 83520 bytes, 15893208 total
- age 13: 323480 bytes, 16216688 total
- age 14: 199552 bytes, 16416240 total
: 130440K->21527K(142016K), 0.0131740 secs] 573023K->464110K(698568K), 0.0132670 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=200 (full 43):
par new generation total 142016K, used 21527K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 75% used [0x00000007b6f00000, 0x00000007b8405f18, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 442583K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89059K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=200 (full 43):
par new generation total 142016K, used 135191K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 75% used [0x00000007b6f00000, 0x00000007b8405f18, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 442583K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89060K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:36:21.353+0800: 884.822: [GC2014-01-31T23:36:21.353+0800: 884.822: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 5690512 bytes, 5690512 total
- age 2: 3711696 bytes, 9402208 total
- age 3: 3308928 bytes, 12711136 total
- age 4: 95152 bytes, 12806288 total
: 135191K->14695K(142016K), 0.0159310 secs] 577774K->462012K(698568K), 0.0160030 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=201 (full 43):
par new generation total 142016K, used 14695K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 51% used [0x00000007b8ab0000, 0x00000007b9909f58, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 447317K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89060K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=201 (full 43):
par new generation total 142016K, used 128345K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6efc800, 0x00000007b6f00000)
from space 28352K, 51% used [0x00000007b8ab0000, 0x00000007b9909f58, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 447317K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89064K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:36:27.371+0800: 890.841: [GC2014-01-31T23:36:27.372+0800: 890.841: [ParNew
Desired survivor size 14516224 bytes, new threshold 5 (max 15)
- age 1: 4078848 bytes, 4078848 total
- age 2: 3368256 bytes, 7447104 total
- age 3: 3707184 bytes, 11154288 total
- age 4: 3298160 bytes, 14452448 total
- age 5: 95152 bytes, 14547600 total
: 128345K->19616K(142016K), 0.0117330 secs] 575662K->466933K(698568K), 0.0118280 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=202 (full 43):
par new generation total 142016K, used 19616K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 69% used [0x00000007b6f00000, 0x00000007b8228340, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 447317K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89064K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=202 (full 43):
par new generation total 142016K, used 133280K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 69% used [0x00000007b6f00000, 0x00000007b8228340, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 447317K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89064K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:36:32.700+0800: 896.169: [GC2014-01-31T23:36:32.700+0800: 896.169: [ParNew
Desired survivor size 14516224 bytes, new threshold 5 (max 15)
- age 1: 2952488 bytes, 2952488 total
- age 2: 2614352 bytes, 5566840 total
- age 3: 3352248 bytes, 8919088 total
- age 4: 3687584 bytes, 12606672 total
- age 5: 3258360 bytes, 15865032 total
: 133280K->20828K(142016K), 0.0128340 secs] 580597K->468241K(698568K), 0.0129180 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=203 (full 43):
par new generation total 142016K, used 20828K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 73% used [0x00000007b8ab0000, 0x00000007b9f070e0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 447413K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89064K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=203 (full 43):
par new generation total 142016K, used 134492K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 73% used [0x00000007b8ab0000, 0x00000007b9f070e0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 447413K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89066K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:36:41.386+0800: 904.856: [GC2014-01-31T23:36:41.386+0800: 904.856: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1858192 bytes, 1858192 total
- age 2: 264968 bytes, 2123160 total
- age 3: 2613728 bytes, 4736888 total
- age 4: 3351912 bytes, 8088800 total
- age 5: 3639976 bytes, 11728776 total
: 134492K->22592K(142016K), 0.0136250 secs] 581905K->473144K(698568K), 0.0137610 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
Heap after GC invocations=204 (full 43):
par new generation total 142016K, used 22592K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 79% used [0x00000007b6f00000, 0x00000007b85103e8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 450551K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89066K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=204 (full 43):
par new generation total 142016K, used 136256K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 79% used [0x00000007b6f00000, 0x00000007b85103e8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 450551K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89070K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:36:47.565+0800: 911.035: [GC2014-01-31T23:36:47.565+0800: 911.035: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 4332792 bytes, 4332792 total
- age 2: 1627936 bytes, 5960728 total
- age 3: 249840 bytes, 6210568 total
- age 4: 2578464 bytes, 8789032 total
- age 5: 3239112 bytes, 12028144 total
- age 6: 3606944 bytes, 15635088 total
: 136256K->20239K(142016K), 0.0135030 secs] 586808K->470791K(698568K), 0.0135790 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=205 (full 43):
par new generation total 142016K, used 20239K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 71% used [0x00000007b8ab0000, 0x00000007b9e73e10, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 450551K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89070K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=205 (full 43):
par new generation total 142016K, used 133903K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 71% used [0x00000007b8ab0000, 0x00000007b9e73e10, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 450551K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89071K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:36:54.307+0800: 917.776: [GC2014-01-31T23:36:54.307+0800: 917.776: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 432160 bytes, 432160 total
- age 2: 3017600 bytes, 3449760 total
- age 3: 1624616 bytes, 5074376 total
- age 4: 248728 bytes, 5323104 total
- age 5: 2574800 bytes, 7897904 total
- age 6: 3225216 bytes, 11123120 total
: 133903K->13418K(142016K), 0.0156980 secs] 584455K->467394K(698568K), 0.0158140 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=206 (full 43):
par new generation total 142016K, used 13418K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 47% used [0x00000007b6f00000, 0x00000007b7c1aa20, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 453976K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89071K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=206 (full 43):
par new generation total 142016K, used 127048K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6ef77e8, 0x00000007b6f00000)
from space 28352K, 47% used [0x00000007b6f00000, 0x00000007b7c1aa20, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 453976K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89074K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:37:01.264+0800: 924.733: [GC2014-01-31T23:37:01.264+0800: 924.734: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 580392 bytes, 580392 total
- age 2: 204200 bytes, 784592 total
- age 3: 3013912 bytes, 3798504 total
- age 4: 1624112 bytes, 5422616 total
- age 5: 238832 bytes, 5661448 total
- age 6: 2559832 bytes, 8221280 total
- age 7: 3204080 bytes, 11425360 total
: 127048K->17227K(142016K), 0.0124330 secs] 581024K->471203K(698568K), 0.0125080 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=207 (full 43):
par new generation total 142016K, used 17227K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 60% used [0x00000007b8ab0000, 0x00000007b9b82df8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 453976K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89074K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=207 (full 43):
par new generation total 142016K, used 130891K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 60% used [0x00000007b8ab0000, 0x00000007b9b82df8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 453976K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89077K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:37:08.207+0800: 931.677: [GC2014-01-31T23:37:08.207+0800: 931.677: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2887960 bytes, 2887960 total
- age 2: 215960 bytes, 3103920 total
- age 3: 159240 bytes, 3263160 total
- age 4: 2796976 bytes, 6060136 total
- age 5: 1594184 bytes, 7654320 total
- age 6: 193176 bytes, 7847496 total
- age 7: 1623032 bytes, 9470528 total
- age 8: 3080448 bytes, 12550976 total
: 130891K->22410K(142016K), 0.0132810 secs] 584867K->476386K(698568K), 0.0134000 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=208 (full 43):
par new generation total 142016K, used 22410K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 79% used [0x00000007b6f00000, 0x00000007b84e2880, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 453976K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89077K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=208 (full 43):
par new generation total 142016K, used 136054K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6efb1b8, 0x00000007b6f00000)
from space 28352K, 79% used [0x00000007b6f00000, 0x00000007b84e2880, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 453976K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89078K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:37:15.367+0800: 938.836: [GC2014-01-31T23:37:15.367+0800: 938.836: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 675600 bytes, 675600 total
- age 2: 2545480 bytes, 3221080 total
- age 3: 215024 bytes, 3436104 total
- age 4: 157328 bytes, 3593432 total
- age 5: 2763632 bytes, 6357064 total
- age 6: 1540792 bytes, 7897856 total
- age 7: 158776 bytes, 8056632 total
- age 8: 1615120 bytes, 9671752 total
- age 9: 3046040 bytes, 12717792 total
: 136054K->14753K(142016K), 0.0121230 secs] 590030K->468729K(698568K), 0.0122310 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=209 (full 43):
par new generation total 142016K, used 14753K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 52% used [0x00000007b8ab0000, 0x00000007b9918608, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 453976K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89078K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=209 (full 43):
par new generation total 142016K, used 128417K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 52% used [0x00000007b8ab0000, 0x00000007b9918608, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 453976K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89085K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:37:20.879+0800: 944.349: [GC2014-01-31T23:37:20.879+0800: 944.349: [ParNew
Desired survivor size 14516224 bytes, new threshold 9 (max 15)
- age 1: 6330408 bytes, 6330408 total
- age 2: 312528 bytes, 6642936 total
- age 3: 2448512 bytes, 9091448 total
- age 4: 206088 bytes, 9297536 total
- age 5: 147288 bytes, 9444824 total
- age 6: 2671008 bytes, 12115832 total
- age 7: 1540632 bytes, 13656464 total
- age 8: 158776 bytes, 13815240 total
- age 9: 1607496 bytes, 15422736 total
- age 10: 3046040 bytes, 18468776 total
: 128417K->27859K(142016K), 0.0159760 secs] 582393K->481835K(698568K), 0.0160800 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=210 (full 43):
par new generation total 142016K, used 27859K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 98% used [0x00000007b6f00000, 0x00000007b8a34cf0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 453976K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89085K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=210 (full 43):
par new generation total 142016K, used 141523K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 98% used [0x00000007b6f00000, 0x00000007b8a34cf0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 453976K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89087K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:37:26.455+0800: 949.925: [GC2014-01-31T23:37:26.455+0800: 949.925: [ParNew
Desired survivor size 14516224 bytes, new threshold 8 (max 15)
- age 1: 4157800 bytes, 4157800 total
- age 2: 6037528 bytes, 10195328 total
- age 3: 227184 bytes, 10422512 total
- age 4: 294856 bytes, 10717368 total
- age 5: 185352 bytes, 10902720 total
- age 6: 94488 bytes, 10997208 total
- age 7: 2667184 bytes, 13664392 total
- age 8: 1510232 bytes, 15174624 total
- age 9: 158720 bytes, 15333344 total
: 141523K->24421K(142016K), 0.0160200 secs] 595499K->482221K(698568K), 0.0160970 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=211 (full 43):
par new generation total 142016K, used 24421K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 86% used [0x00000007b8ab0000, 0x00000007ba2897e8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 457799K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89087K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:37:26.472+0800: 949.941: [GC [1 CMS-initial-mark: 457799K(556552K)] 483032K(698568K), 0.0092550 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:37:26.481+0800: 949.950: [CMS-concurrent-mark-start]
2014-01-31T23:37:26.671+0800: 950.141: [CMS-concurrent-mark: 0.190/0.190 secs] [Times: user=0.55 sys=0.03, real=0.19 secs]
2014-01-31T23:37:26.672+0800: 950.141: [GC[YG occupancy: 29041 K (142016 K)]2014-01-31T23:37:26.672+0800: 950.141: [Rescan (parallel) , 0.0071040 secs]2014-01-31T23:37:26.679+0800: 950.148: [weak refs processing, 0.0002620 secs]2014-01-31T23:37:26.679+0800: 950.148: [scrub string table, 0.0011690 secs] [1 CMS-remark: 457799K(556552K)] 486840K(698568K), 0.0086300 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-31T23:37:26.680+0800: 950.150: [CMS-concurrent-sweep-start]
2014-01-31T23:37:26.782+0800: 950.251: [CMS-concurrent-sweep: 0.102/0.102 secs] [Times: user=0.17 sys=0.00, real=0.10 secs]
2014-01-31T23:37:26.782+0800: 950.251: [CMS-concurrent-reset-start]
2014-01-31T23:37:26.784+0800: 950.254: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=211 (full 44):
par new generation total 142016K, used 138086K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 86% used [0x00000007b8ab0000, 0x00000007ba289808, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 385913K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89096K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:37:30.601+0800: 954.070: [GC2014-01-31T23:37:30.601+0800: 954.070: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 9035472 bytes, 9035472 total
- age 2: 3933656 bytes, 12969128 total
- age 3: 5992952 bytes, 18962080 total
- age 4: 226112 bytes, 19188192 total
- age 5: 283608 bytes, 19471800 total
- age 6: 155440 bytes, 19627240 total
- age 7: 93240 bytes, 19720480 total
- age 8: 2631872 bytes, 22352352 total
: 138086K->28352K(142016K), 0.0229070 secs] 523999K->416044K(698568K), 0.0229770 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=212 (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 [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 387692K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89096K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=212 (full 44):
par new generation total 142016K, used 28426K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0012aa8, 0x00000007b6f00000)
from space 28352K, 100% used [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 387692K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89096K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:37:30.624+0800: 954.093: [GC2014-01-31T23:37:30.624+0800: 954.094: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 9264 bytes, 9264 total
- age 2: 9027072 bytes, 9036336 total
- age 3: 3933656 bytes, 12969992 total
: 28426K->20179K(142016K), 0.0195720 secs] 416119K->417076K(698568K), 0.0196310 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=213 (full 44):
par new generation total 142016K, used 20179K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 71% used [0x00000007b8ab0000, 0x00000007b9e64c00, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 396897K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89096K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=213 (full 44):
par new generation total 142016K, used 132840K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6e056a0, 0x00000007b6f00000)
from space 28352K, 71% used [0x00000007b8ab0000, 0x00000007b9e64c00, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 396897K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89110K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:37:32.014+0800: 955.484: [GC2014-01-31T23:37:32.015+0800: 955.484: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 19889336 bytes, 19889336 total
- age 2: 40 bytes, 19889376 total
- age 3: 5379424 bytes, 25268800 total
- age 4: 3759928 bytes, 29028728 total
: 132840K->28352K(142016K), 0.0734890 secs] 529738K->444052K(698568K), 0.0735900 secs] [Times: user=0.14 sys=0.00, real=0.07 secs]
Heap after GC invocations=214 (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 [0x00000007b6f00000, 0x00000007b8ab0000, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 415700K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89110K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=214 (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 556552K, used 415700K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89111K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:37:33.649+0800: 957.119: [GC2014-01-31T23:37:33.649+0800: 957.119: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4106872 bytes, 4106872 total
: 142016K->24940K(142016K), 0.0381810 secs] 557716K->467898K(698568K), 0.0382540 secs] [Times: user=0.07 sys=0.01, real=0.04 secs]
Heap after GC invocations=215 (full 44):
par new generation total 142016K, used 24940K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 87% used [0x00000007b8ab0000, 0x00000007ba30b1f0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 442958K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89111K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=215 (full 44):
par new generation total 142016K, used 138604K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 87% used [0x00000007b8ab0000, 0x00000007ba30b1f0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 442958K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89111K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:37:36.461+0800: 959.930: [GC2014-01-31T23:37:36.461+0800: 959.930: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4127176 bytes, 4127176 total
- age 2: 3142496 bytes, 7269672 total
: 138604K->10488K(142016K), 0.0176120 secs] 581562K->453446K(698568K), 0.0177040 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=216 (full 44):
par new generation total 142016K, used 10488K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 36% used [0x00000007b6f00000, 0x00000007b793e200, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 442958K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89111K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=216 (full 44):
par new generation total 142016K, used 124152K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 36% used [0x00000007b6f00000, 0x00000007b793e200, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 442958K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89111K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:37:39.840+0800: 963.310: [GC2014-01-31T23:37:39.840+0800: 963.310: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 14459336 bytes, 14459336 total
- age 2: 1051552 bytes, 15510888 total
- age 3: 3132624 bytes, 18643512 total
: 124152K->21167K(142016K), 0.0454460 secs] 567110K->464125K(698568K), 0.0455370 secs] [Times: user=0.09 sys=0.00, real=0.04 secs]
Heap after GC invocations=217 (full 44):
par new generation total 142016K, used 21167K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 74% used [0x00000007b8ab0000, 0x00000007b9f5bd58, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 442958K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89111K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=217 (full 44):
par new generation total 142016K, used 134320K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6e802c8, 0x00000007b6f00000)
from space 28352K, 74% used [0x00000007b8ab0000, 0x00000007b9f5bd58, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 442958K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89113K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:37:43.047+0800: 966.516: [GC2014-01-31T23:37:43.047+0800: 966.516: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 15342016 bytes, 15342016 total
- age 2: 165304 bytes, 15507320 total
: 134320K->23116K(142016K), 0.0460190 secs] 577278K->470428K(698568K), 0.0461010 secs] [Times: user=0.09 sys=0.00, real=0.05 secs]
Heap after GC invocations=218 (full 44):
par new generation total 142016K, used 23116K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 81% used [0x00000007b6f00000, 0x00000007b85933f8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 447311K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89113K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=218 (full 44):
par new generation total 142016K, used 136780K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 81% used [0x00000007b6f00000, 0x00000007b85933f8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 447311K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89113K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:37:47.603+0800: 971.073: [GC2014-01-31T23:37:47.603+0800: 971.073: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 321576 bytes, 321576 total
: 136780K->15233K(142016K), 0.0089330 secs] 584092K->463337K(698568K), 0.0090300 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=219 (full 44):
par new generation total 142016K, used 15233K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 53% used [0x00000007b8ab0000, 0x00000007b9990618, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 448104K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89113K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=219 (full 44):
par new generation total 142016K, used 128897K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 53% used [0x00000007b8ab0000, 0x00000007b9990618, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 448104K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89113K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:37:51.509+0800: 974.978: [GC2014-01-31T23:37:51.509+0800: 974.978: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 831464 bytes, 831464 total
- age 2: 64312 bytes, 895776 total
: 128897K->3899K(142016K), 0.0074480 secs] 577001K->452003K(698568K), 0.0075160 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=220 (full 44):
par new generation total 142016K, used 3899K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 13% used [0x00000007b6f00000, 0x00000007b72cedb8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 448104K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89113K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=220 (full 44):
par new generation total 142016K, used 117563K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 13% used [0x00000007b6f00000, 0x00000007b72cedb8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 448104K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89120K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:37:56.610+0800: 980.079: [GC2014-01-31T23:37:56.610+0800: 980.080: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3433808 bytes, 3433808 total
- age 2: 605040 bytes, 4038848 total
- age 3: 40768 bytes, 4079616 total
: 117563K->4718K(142016K), 0.0146890 secs] 565667K->452822K(698568K), 0.0147890 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=221 (full 44):
par new generation total 142016K, used 4718K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 16% used [0x00000007b8ab0000, 0x00000007b8f4ba38, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 448104K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89120K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=221 (full 44):
par new generation total 142016K, used 118382K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 16% used [0x00000007b8ab0000, 0x00000007b8f4ba38, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 448104K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89129K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:37:59.566+0800: 983.035: [GC2014-01-31T23:37:59.566+0800: 983.035: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 12735352 bytes, 12735352 total
- age 2: 457672 bytes, 13193024 total
- age 3: 597432 bytes, 13790456 total
- age 4: 40728 bytes, 13831184 total
: 118382K->15598K(142016K), 0.0344470 secs] 566486K->463702K(698568K), 0.0345570 secs] [Times: user=0.07 sys=0.00, real=0.04 secs]
Heap after GC invocations=222 (full 44):
par new generation total 142016K, used 15598K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 55% used [0x00000007b6f00000, 0x00000007b7e3b8b8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 448104K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89129K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=222 (full 44):
par new generation total 142016K, used 129262K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 55% used [0x00000007b6f00000, 0x00000007b7e3b8b8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 448104K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89138K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:03.692+0800: 987.162: [GC2014-01-31T23:38:03.692+0800: 987.162: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4051112 bytes, 4051112 total
- age 2: 2001832 bytes, 6052944 total
- age 3: 440312 bytes, 6493256 total
- age 4: 585832 bytes, 7079088 total
- age 5: 32176 bytes, 7111264 total
: 129262K->10175K(142016K), 0.0099650 secs] 577366K->458279K(698568K), 0.0100640 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=223 (full 44):
par new generation total 142016K, used 10175K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 35% used [0x00000007b8ab0000, 0x00000007b949fd18, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 448104K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89138K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=223 (full 44):
par new generation total 142016K, used 123839K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 35% used [0x00000007b8ab0000, 0x00000007b949fd18, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 448104K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89142K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:08.123+0800: 991.592: [GC2014-01-31T23:38:08.123+0800: 991.592: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3342760 bytes, 3342760 total
- age 2: 3258688 bytes, 6601448 total
- age 3: 1652464 bytes, 8253912 total
- age 4: 171880 bytes, 8425792 total
- age 5: 31864 bytes, 8457656 total
- age 6: 31472 bytes, 8489128 total
: 123839K->11752K(142016K), 0.0143140 secs] 571943K->459856K(698568K), 0.0144060 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=224 (full 44):
par new generation total 142016K, used 11752K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 41% used [0x00000007b6f00000, 0x00000007b7a7a108, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 448104K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89142K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=224 (full 44):
par new generation total 142016K, used 125416K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 41% used [0x00000007b6f00000, 0x00000007b7a7a108, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 448104K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89152K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:11.002+0800: 994.472: [GC2014-01-31T23:38:11.002+0800: 994.472: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 11480408 bytes, 11480408 total
- age 2: 1506344 bytes, 12986752 total
- age 3: 2165488 bytes, 15152240 total
- age 4: 1652176 bytes, 16804416 total
- age 5: 162080 bytes, 16966496 total
- age 6: 31616 bytes, 16998112 total
- age 7: 31472 bytes, 17029584 total
: 125416K->20115K(142016K), 0.0140200 secs] 573520K->468219K(698568K), 0.0140830 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=225 (full 44):
par new generation total 142016K, used 20115K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 70% used [0x00000007b8ab0000, 0x00000007b9e54c70, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 448104K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89152K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=225 (full 44):
par new generation total 142016K, used 133779K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 70% used [0x00000007b8ab0000, 0x00000007b9e54c70, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 448104K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89153K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:14.429+0800: 997.898: [GC2014-01-31T23:38:14.429+0800: 997.898: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1064000 bytes, 1064000 total
- age 2: 10995160 bytes, 12059160 total
- age 3: 716632 bytes, 12775792 total
: 133779K->21642K(142016K), 0.0164410 secs] 581883K->473595K(698568K), 0.0165070 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=226 (full 44):
par new generation total 142016K, used 21642K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b8422b30, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 451952K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89153K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=226 (full 44):
par new generation total 142016K, used 135306K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b6f00000, 0x00000007b8422b30, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 451952K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89155K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:18.524+0800: 1001.994: [GC2014-01-31T23:38:18.524+0800: 1001.994: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 2407104 bytes, 2407104 total
- age 2: 821088 bytes, 3228192 total
- age 3: 10979400 bytes, 14207592 total
- age 4: 697552 bytes, 14905144 total
: 135306K->16700K(142016K), 0.0161080 secs] 587259K->468653K(698568K), 0.0161820 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=227 (full 44):
par new generation total 142016K, used 16700K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 58% used [0x00000007b8ab0000, 0x00000007b9aff1e8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 451952K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89155K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=227 (full 44):
par new generation total 142016K, used 130364K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 58% used [0x00000007b8ab0000, 0x00000007b9aff1e8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 451952K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89155K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:19.792+0800: 1003.261: [GC2014-01-31T23:38:19.792+0800: 1003.262: [ParNew
Desired survivor size 14516224 bytes, new threshold 4 (max 15)
- age 1: 3552584 bytes, 3552584 total
- age 2: 182648 bytes, 3735232 total
- age 3: 819984 bytes, 4555216 total
- age 4: 10978664 bytes, 15533880 total
: 130364K->19266K(142016K), 0.0214720 secs] 582317K->471905K(698568K), 0.0219570 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=228 (full 44):
par new generation total 142016K, used 19266K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 67% used [0x00000007b6f00000, 0x00000007b81d0a38, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 452639K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89155K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=228 (full 44):
par new generation total 142016K, used 132930K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 67% used [0x00000007b6f00000, 0x00000007b81d0a38, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 452639K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89155K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:21.075+0800: 1004.545: [GC2014-01-31T23:38:21.076+0800: 1004.545: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4191280 bytes, 4191280 total
- age 2: 29648 bytes, 4220928 total
- age 3: 176496 bytes, 4397424 total
- age 4: 818096 bytes, 5215520 total
: 132930K->14586K(142016K), 0.0245860 secs] 585569K->477978K(698568K), 0.0246660 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
Heap after GC invocations=229 (full 44):
par new generation total 142016K, used 14586K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 51% used [0x00000007b8ab0000, 0x00000007b98eeaf8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 463392K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89155K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:38:21.101+0800: 1004.570: [GC [1 CMS-initial-mark: 463392K(556552K)] 479473K(698568K), 0.0106180 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:38:21.111+0800: 1004.581: [CMS-concurrent-mark-start]
2014-01-31T23:38:21.336+0800: 1004.805: [CMS-concurrent-mark: 0.225/0.225 secs] [Times: user=0.77 sys=0.02, real=0.22 secs]
2014-01-31T23:38:21.336+0800: 1004.806: [GC[YG occupancy: 30872 K (142016 K)]2014-01-31T23:38:21.336+0800: 1004.806: [Rescan (parallel) , 0.0152000 secs]2014-01-31T23:38:21.351+0800: 1004.821: [weak refs processing, 0.0003080 secs]2014-01-31T23:38:21.352+0800: 1004.821: [scrub string table, 0.0017530 secs] [1 CMS-remark: 463392K(556552K)] 494264K(698568K), 0.0173570 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
2014-01-31T23:38:21.354+0800: 1004.823: [CMS-concurrent-sweep-start]
2014-01-31T23:38:21.488+0800: 1004.957: [CMS-concurrent-sweep: 0.134/0.134 secs] [Times: user=0.33 sys=0.00, real=0.13 secs]
2014-01-31T23:38:21.488+0800: 1004.957: [CMS-concurrent-reset-start]
2014-01-31T23:38:21.490+0800: 1004.960: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
{Heap before GC invocations=229 (full 45):
par new generation total 142016K, used 128250K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 51% used [0x00000007b8ab0000, 0x00000007b98eeaf8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89155K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:22.550+0800: 1006.019: [GC2014-01-31T23:38:22.550+0800: 1006.019: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4513568 bytes, 4513568 total
- age 2: 12448 bytes, 4526016 total
- age 3: 29648 bytes, 4555664 total
- age 4: 176096 bytes, 4731760 total
- age 5: 817880 bytes, 5549640 total
: 128250K->9836K(142016K), 0.0181500 secs] 537768K->419354K(698568K), 0.0182270 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=230 (full 45):
par new generation total 142016K, used 9836K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 34% used [0x00000007b6f00000, 0x00000007b789b3b8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89155K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=230 (full 45):
par new generation total 142016K, used 123500K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 34% used [0x00000007b6f00000, 0x00000007b789b3b8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89155K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:23.930+0800: 1007.399: [GC2014-01-31T23:38:23.930+0800: 1007.399: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4548600 bytes, 4548600 total
- age 2: 110480 bytes, 4659080 total
- age 3: 7632 bytes, 4666712 total
- age 4: 29632 bytes, 4696344 total
- age 5: 171032 bytes, 4867376 total
- age 6: 817864 bytes, 5685240 total
: 123500K->8148K(142016K), 0.0168760 secs] 533018K->417665K(698568K), 0.0169510 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=231 (full 45):
par new generation total 142016K, used 8148K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 28% used [0x00000007b8ab0000, 0x00000007b92a51d0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89155K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=231 (full 45):
par new generation total 142016K, used 121812K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 28% used [0x00000007b8ab0000, 0x00000007b92a51d0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89155K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:25.311+0800: 1008.781: [GC2014-01-31T23:38:25.311+0800: 1008.781: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 889376 bytes, 889376 total
- age 2: 6696 bytes, 896072 total
- age 3: 110448 bytes, 1006520 total
- age 4: 7632 bytes, 1014152 total
- age 5: 29632 bytes, 1043784 total
- age 6: 169248 bytes, 1213032 total
- age 7: 817864 bytes, 2030896 total
: 121812K->4981K(142016K), 0.0102930 secs] 531329K->414498K(698568K), 0.0103990 secs] [Times: user=0.02 sys=0.01, real=0.01 secs]
Heap after GC invocations=232 (full 45):
par new generation total 142016K, used 4981K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 17% used [0x00000007b6f00000, 0x00000007b73dd490, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89155K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=232 (full 45):
par new generation total 142016K, used 118645K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 17% used [0x00000007b6f00000, 0x00000007b73dd490, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89157K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:26.801+0800: 1010.271: [GC2014-01-31T23:38:26.801+0800: 1010.271: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 581152 bytes, 581152 total
- age 2: 3864 bytes, 585016 total
- age 3: 3312 bytes, 588328 total
- age 4: 110128 bytes, 698456 total
- age 5: 7632 bytes, 706088 total
- age 6: 5400 bytes, 711488 total
- age 7: 125536 bytes, 837024 total
- age 8: 802296 bytes, 1639320 total
: 118645K->2618K(142016K), 0.0080420 secs] 528162K->412135K(698568K), 0.0081140 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
Heap after GC invocations=233 (full 45):
par new generation total 142016K, used 2618K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 9% used [0x00000007b8ab0000, 0x00000007b8d3e838, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89157K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=233 (full 45):
par new generation total 142016K, used 116282K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 9% used [0x00000007b8ab0000, 0x00000007b8d3e838, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89158K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:30.745+0800: 1014.214: [GC2014-01-31T23:38:30.745+0800: 1014.214: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 744768 bytes, 744768 total
- age 2: 410832 bytes, 1155600 total
- age 3: 1256 bytes, 1156856 total
- age 4: 1136 bytes, 1157992 total
- age 5: 109064 bytes, 1267056 total
- age 6: 4728 bytes, 1271784 total
- age 7: 2176 bytes, 1273960 total
- age 8: 120120 bytes, 1394080 total
- age 9: 802296 bytes, 2196376 total
: 116282K->3301K(142016K), 0.0103110 secs] 525799K->412819K(698568K), 0.0104160 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=234 (full 45):
par new generation total 142016K, used 3301K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 11% used [0x00000007b6f00000, 0x00000007b7239748, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89158K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=234 (full 45):
par new generation total 142016K, used 116965K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 11% used [0x00000007b6f00000, 0x00000007b7239748, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89162K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:37.224+0800: 1020.693: [GC2014-01-31T23:38:37.224+0800: 1020.693: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 511008 bytes, 511008 total
- age 2: 554360 bytes, 1065368 total
- age 3: 408888 bytes, 1474256 total
- age 4: 256 bytes, 1474512 total
- age 5: 1064 bytes, 1475576 total
- age 6: 109064 bytes, 1584640 total
- age 7: 4728 bytes, 1589368 total
- age 8: 2176 bytes, 1591544 total
- age 9: 120024 bytes, 1711568 total
- age 10: 792944 bytes, 2504512 total
: 116965K->4039K(142016K), 0.0096500 secs] 526483K->413557K(698568K), 0.0097270 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=235 (full 45):
par new generation total 142016K, used 4039K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 14% used [0x00000007b8ab0000, 0x00000007b8ea1f60, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89162K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=235 (full 45):
par new generation total 142016K, used 117703K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 14% used [0x00000007b8ab0000, 0x00000007b8ea1f60, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89163K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:43.737+0800: 1027.207: [GC2014-01-31T23:38:43.738+0800: 1027.207: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1050048 bytes, 1050048 total
- age 2: 216728 bytes, 1266776 total
- age 3: 513640 bytes, 1780416 total
- age 4: 408184 bytes, 2188600 total
- age 5: 256 bytes, 2188856 total
- age 6: 1064 bytes, 2189920 total
- age 7: 108984 bytes, 2298904 total
- age 8: 4728 bytes, 2303632 total
- age 9: 2176 bytes, 2305808 total
- age 10: 119736 bytes, 2425544 total
- age 11: 742384 bytes, 3167928 total
: 117703K->4168K(142016K), 0.0091790 secs] 527221K->413685K(698568K), 0.0092760 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=236 (full 45):
par new generation total 142016K, used 4168K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 14% used [0x00000007b6f00000, 0x00000007b7312058, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89163K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=236 (full 45):
par new generation total 142016K, used 117832K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 14% used [0x00000007b6f00000, 0x00000007b7312058, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89163K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:45.618+0800: 1029.088: [GC2014-01-31T23:38:45.618+0800: 1029.088: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2863576 bytes, 2863576 total
- age 2: 891696 bytes, 3755272 total
- age 3: 195856 bytes, 3951128 total
- age 4: 513640 bytes, 4464768 total
- age 5: 407952 bytes, 4872720 total
- age 6: 256 bytes, 4872976 total
- age 7: 1064 bytes, 4874040 total
- age 8: 108984 bytes, 4983024 total
- age 9: 4728 bytes, 4987752 total
- age 10: 2176 bytes, 4989928 total
- age 11: 119736 bytes, 5109664 total
- age 12: 742384 bytes, 5852048 total
: 117832K->6601K(142016K), 0.0146250 secs] 527349K->416118K(698568K), 0.0147000 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
Heap after GC invocations=237 (full 45):
par new generation total 142016K, used 6601K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 23% used [0x00000007b8ab0000, 0x00000007b91225a0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89163K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=237 (full 45):
par new generation total 142016K, used 120265K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 23% used [0x00000007b8ab0000, 0x00000007b91225a0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89163K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:46.922+0800: 1030.391: [GC2014-01-31T23:38:46.922+0800: 1030.392: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3068800 bytes, 3068800 total
- age 2: 52912 bytes, 3121712 total
- age 3: 890552 bytes, 4012264 total
- age 4: 195592 bytes, 4207856 total
- age 5: 513640 bytes, 4721496 total
- age 6: 407816 bytes, 5129312 total
- age 7: 256 bytes, 5129568 total
- age 8: 1064 bytes, 5130632 total
- age 9: 108984 bytes, 5239616 total
- age 10: 4728 bytes, 5244344 total
- age 11: 2176 bytes, 5246520 total
- age 12: 119736 bytes, 5366256 total
- age 13: 742384 bytes, 6108640 total
: 120265K->7410K(142016K), 0.0140410 secs] 529782K->416927K(698568K), 0.0141220 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=238 (full 45):
par new generation total 142016K, used 7410K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 26% used [0x00000007b6f00000, 0x00000007b763c8c8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89163K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=238 (full 45):
par new generation total 142016K, used 121047K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6ef9350, 0x00000007b6f00000)
from space 28352K, 26% used [0x00000007b6f00000, 0x00000007b763c8c8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89164K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:48.268+0800: 1031.738: [GC2014-01-31T23:38:48.268+0800: 1031.738: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3923304 bytes, 3923304 total
- age 2: 2792 bytes, 3926096 total
- age 3: 27928 bytes, 3954024 total
- age 4: 887360 bytes, 4841384 total
- age 5: 161544 bytes, 5002928 total
- age 6: 513640 bytes, 5516568 total
- age 7: 407792 bytes, 5924360 total
- age 8: 256 bytes, 5924616 total
- age 9: 1064 bytes, 5925680 total
- age 10: 108984 bytes, 6034664 total
- age 11: 4728 bytes, 6039392 total
- age 12: 2176 bytes, 6041568 total
- age 13: 119736 bytes, 6161304 total
- age 14: 742384 bytes, 6903688 total
: 121047K->8557K(142016K), 0.0160350 secs] 530564K->418074K(698568K), 0.0161550 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=239 (full 45):
par new generation total 142016K, used 8557K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 30% used [0x00000007b8ab0000, 0x00000007b930b4d0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89164K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=239 (full 45):
par new generation total 142016K, used 122221K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 30% used [0x00000007b8ab0000, 0x00000007b930b4d0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89164K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:49.652+0800: 1033.122: [GC2014-01-31T23:38:49.652+0800: 1033.122: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 6070200 bytes, 6070200 total
- age 2: 54192 bytes, 6124392 total
- age 3: 2776 bytes, 6127168 total
- age 4: 27888 bytes, 6155056 total
- age 5: 886512 bytes, 7041568 total
- age 6: 145304 bytes, 7186872 total
- age 7: 513640 bytes, 7700512 total
- age 8: 407712 bytes, 8108224 total
- age 9: 256 bytes, 8108480 total
- age 10: 1064 bytes, 8109544 total
- age 11: 108984 bytes, 8218528 total
- age 12: 4728 bytes, 8223256 total
- age 13: 2176 bytes, 8225432 total
- age 14: 119440 bytes, 8344872 total
- age 15: 742384 bytes, 9087256 total
: 122221K->12947K(142016K), 0.0203080 secs] 531738K->422464K(698568K), 0.0203970 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=240 (full 45):
par new generation total 142016K, used 12947K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 45% used [0x00000007b6f00000, 0x00000007b7ba4d80, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89164K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=240 (full 45):
par new generation total 142016K, used 126611K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 45% used [0x00000007b6f00000, 0x00000007b7ba4d80, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 409517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89164K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:50.937+0800: 1034.407: [GC2014-01-31T23:38:50.937+0800: 1034.407: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4739408 bytes, 4739408 total
- age 2: 105232 bytes, 4844640 total
- age 3: 53864 bytes, 4898504 total
- age 4: 2752 bytes, 4901256 total
- age 5: 27592 bytes, 4928848 total
- age 6: 881080 bytes, 5809928 total
- age 7: 145304 bytes, 5955232 total
- age 8: 513640 bytes, 6468872 total
- age 9: 407712 bytes, 6876584 total
- age 10: 256 bytes, 6876840 total
- age 11: 1064 bytes, 6877904 total
- age 12: 108984 bytes, 6986888 total
- age 13: 4728 bytes, 6991616 total
- age 14: 2176 bytes, 6993792 total
- age 15: 119440 bytes, 7113232 total
: 126611K->12415K(142016K), 0.0178940 secs] 536128K->422665K(698568K), 0.0179890 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=241 (full 45):
par new generation total 142016K, used 12415K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 43% used [0x00000007b8ab0000, 0x00000007b96cfc20, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 410250K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89164K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=241 (full 45):
par new generation total 142016K, used 126079K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 43% used [0x00000007b8ab0000, 0x00000007b96cfc20, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 410250K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89164K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:52.210+0800: 1035.679: [GC2014-01-31T23:38:52.210+0800: 1035.679: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4699872 bytes, 4699872 total
- age 2: 54656 bytes, 4754528 total
- age 3: 104920 bytes, 4859448 total
- age 4: 53840 bytes, 4913288 total
- age 5: 2752 bytes, 4916040 total
- age 6: 27592 bytes, 4943632 total
- age 7: 879000 bytes, 5822632 total
- age 8: 145304 bytes, 5967936 total
- age 9: 513640 bytes, 6481576 total
- age 10: 407712 bytes, 6889288 total
- age 11: 256 bytes, 6889544 total
- age 12: 1064 bytes, 6890608 total
- age 13: 108984 bytes, 6999592 total
- age 14: 4728 bytes, 7004320 total
- age 15: 2176 bytes, 7006496 total
: 126079K->9347K(142016K), 0.0176570 secs] 536329K->419728K(698568K), 0.0177330 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=242 (full 45):
par new generation total 142016K, used 9347K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 32% used [0x00000007b6f00000, 0x00000007b7820f20, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 410380K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89164K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=242 (full 45):
par new generation total 142016K, used 123011K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 32% used [0x00000007b6f00000, 0x00000007b7820f20, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 410380K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89164K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:53.364+0800: 1036.833: [GC2014-01-31T23:38:53.364+0800: 1036.833: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 10500328 bytes, 10500328 total
- age 2: 7184 bytes, 10507512 total
- age 3: 52424 bytes, 10559936 total
- age 4: 104768 bytes, 10664704 total
- age 5: 53840 bytes, 10718544 total
- age 6: 2752 bytes, 10721296 total
- age 7: 26952 bytes, 10748248 total
- age 8: 877368 bytes, 11625616 total
- age 9: 145304 bytes, 11770920 total
- age 10: 513640 bytes, 12284560 total
- age 11: 407712 bytes, 12692272 total
- age 12: 256 bytes, 12692528 total
- age 13: 1024 bytes, 12693552 total
- age 14: 108984 bytes, 12802536 total
- age 15: 4728 bytes, 12807264 total
: 123011K->15737K(142016K), 0.0260780 secs] 533392K->426120K(698568K), 0.0262040 secs] [Times: user=0.06 sys=0.00, real=0.03 secs]
Heap after GC invocations=243 (full 45):
par new generation total 142016K, used 15737K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 55% used [0x00000007b8ab0000, 0x00000007b9a0e428, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 410383K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89164K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=243 (full 45):
par new generation total 142016K, used 129401K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 55% used [0x00000007b8ab0000, 0x00000007b9a0e428, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 410383K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89164K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:54.626+0800: 1038.095: [GC2014-01-31T23:38:54.626+0800: 1038.095: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 9026600 bytes, 9026600 total
- age 2: 1028368 bytes, 10054968 total
- age 3: 3416 bytes, 10058384 total
- age 4: 52360 bytes, 10110744 total
- age 5: 103584 bytes, 10214328 total
- age 6: 53840 bytes, 10268168 total
- age 7: 2752 bytes, 10270920 total
- age 8: 26952 bytes, 10297872 total
- age 9: 876088 bytes, 11173960 total
- age 10: 145304 bytes, 11319264 total
- age 11: 513416 bytes, 11832680 total
- age 12: 407712 bytes, 12240392 total
- age 13: 256 bytes, 12240648 total
- age 14: 1024 bytes, 12241672 total
- age 15: 108984 bytes, 12350656 total
: 129401K->21865K(142016K), 0.0243350 secs] 539784K->432253K(698568K), 0.0244070 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
Heap after GC invocations=244 (full 45):
par new generation total 142016K, used 21865K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b6f00000, 0x00000007b845a7f8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 410387K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89164K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=244 (full 45):
par new generation total 142016K, used 135529K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 77% used [0x00000007b6f00000, 0x00000007b845a7f8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 410387K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89168K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:38:57.303+0800: 1040.773: [GC2014-01-31T23:38:57.304+0800: 1040.773: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 499168 bytes, 499168 total
- age 2: 778048 bytes, 1277216 total
- age 3: 1025200 bytes, 2302416 total
- age 4: 1392 bytes, 2303808 total
- age 5: 52136 bytes, 2355944 total
- age 6: 95776 bytes, 2451720 total
- age 7: 53464 bytes, 2505184 total
- age 8: 2752 bytes, 2507936 total
- age 9: 23576 bytes, 2531512 total
- age 10: 847384 bytes, 3378896 total
- age 11: 144952 bytes, 3523848 total
- age 12: 513224 bytes, 4037072 total
- age 13: 407672 bytes, 4444744 total
- age 14: 256 bytes, 4445000 total
- age 15: 1024 bytes, 4446024 total
: 135529K->7264K(142016K), 0.0093230 secs] 545917K->417731K(698568K), 0.0094200 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=245 (full 45):
par new generation total 142016K, used 7264K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 25% used [0x00000007b8ab0000, 0x00000007b91c80e0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 410466K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89168K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=245 (full 45):
par new generation total 142016K, used 120928K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 25% used [0x00000007b8ab0000, 0x00000007b91c80e0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 410466K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89180K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:39:02.748+0800: 1046.218: [GC2014-01-31T23:39:02.748+0800: 1046.218: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 6459104 bytes, 6459104 total
- age 2: 315976 bytes, 6775080 total
- age 3: 61064 bytes, 6836144 total
- age 4: 175896 bytes, 7012040 total
- age 5: 1392 bytes, 7013432 total
- age 6: 39144 bytes, 7052576 total
- age 7: 68984 bytes, 7121560 total
- age 8: 12096 bytes, 7133656 total
- age 9: 2752 bytes, 7136408 total
- age 10: 7176 bytes, 7143584 total
- age 11: 819496 bytes, 7963080 total
- age 12: 126464 bytes, 8089544 total
- age 13: 502024 bytes, 8591568 total
- age 14: 386080 bytes, 8977648 total
- age 15: 256 bytes, 8977904 total
: 120928K->10528K(142016K), 0.0139430 secs] 531395K->420996K(698568K), 0.0140340 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=246 (full 45):
par new generation total 142016K, used 10528K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 37% used [0x00000007b6f00000, 0x00000007b7948280, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 410467K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89180K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=246 (full 45):
par new generation total 142016K, used 124192K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 37% used [0x00000007b6f00000, 0x00000007b7948280, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 410467K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89181K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:39:07.546+0800: 1051.016: [GC2014-01-31T23:39:07.546+0800: 1051.016: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 327592 bytes, 327592 total
- age 2: 3607592 bytes, 3935184 total
- age 3: 314936 bytes, 4250120 total
- age 4: 60600 bytes, 4310720 total
- age 5: 60160 bytes, 4370880 total
- age 6: 1392 bytes, 4372272 total
- age 7: 38864 bytes, 4411136 total
- age 8: 66808 bytes, 4477944 total
- age 9: 11816 bytes, 4489760 total
- age 10: 2752 bytes, 4492512 total
- age 11: 3040 bytes, 4495552 total
- age 12: 818736 bytes, 5314288 total
- age 13: 124248 bytes, 5438536 total
- age 14: 502024 bytes, 5940560 total
- age 15: 385816 bytes, 6326376 total
: 124192K->10980K(142016K), 0.0108720 secs] 534660K->421448K(698568K), 0.0109540 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=247 (full 45):
par new generation total 142016K, used 10980K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 38% used [0x00000007b8ab0000, 0x00000007b9569168, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 410468K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89181K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=247 (full 45):
par new generation total 142016K, used 124644K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 38% used [0x00000007b8ab0000, 0x00000007b9569168, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 410468K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89181K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:39:15.413+0800: 1058.882: [GC2014-01-31T23:39:15.413+0800: 1058.883: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 544232 bytes, 544232 total
- age 2: 133880 bytes, 678112 total
- age 3: 3585448 bytes, 4263560 total
- age 4: 295976 bytes, 4559536 total
- age 5: 24928 bytes, 4584464 total
- age 6: 53200 bytes, 4637664 total
- age 7: 1392 bytes, 4639056 total
- age 8: 2704 bytes, 4641760 total
- age 9: 66808 bytes, 4708568 total
- age 10: 4136 bytes, 4712704 total
- age 11: 2752 bytes, 4715456 total
- age 12: 3040 bytes, 4718496 total
- age 13: 189624 bytes, 4908120 total
- age 14: 79672 bytes, 4987792 total
- age 15: 18800 bytes, 5006592 total
: 124644K->6338K(142016K), 0.0117940 secs] 535112K->416848K(698568K), 0.0118660 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=248 (full 45):
par new generation total 142016K, used 6338K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 22% used [0x00000007b6f00000, 0x00000007b75308c8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 410510K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89181K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=248 (full 45):
par new generation total 142016K, used 120002K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 22% used [0x00000007b6f00000, 0x00000007b75308c8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 410510K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89205K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:39:20.128+0800: 1063.597: [GC2014-01-31T23:39:20.128+0800: 1063.597: [ParNew
Desired survivor size 14516224 bytes, new threshold 14 (max 15)
- age 1: 13439568 bytes, 13439568 total
- age 2: 202656 bytes, 13642224 total
- age 3: 118216 bytes, 13760440 total
- age 4: 295320 bytes, 14055760 total
- age 5: 231000 bytes, 14286760 total
- age 6: 24928 bytes, 14311688 total
- age 7: 53160 bytes, 14364848 total
- age 8: 1392 bytes, 14366240 total
- age 9: 2704 bytes, 14368944 total
- age 10: 52568 bytes, 14421512 total
- age 11: 4136 bytes, 14425648 total
- age 12: 2752 bytes, 14428400 total
- age 13: 2984 bytes, 14431384 total
- age 14: 124024 bytes, 14555408 total
- age 15: 51288 bytes, 14606696 total
: 120002K->16074K(142016K), 0.0160290 secs] 530512K->426591K(698568K), 0.0161000 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=249 (full 45):
par new generation total 142016K, used 16074K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 56% used [0x00000007b8ab0000, 0x00000007b9a62bf0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 410517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89205K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=249 (full 45):
par new generation total 142016K, used 129738K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 56% used [0x00000007b8ab0000, 0x00000007b9a62bf0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 410517K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89208K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:39:27.146+0800: 1070.615: [GC2014-01-31T23:39:27.146+0800: 1070.615: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 6350280 bytes, 6350280 total
- age 2: 12639944 bytes, 18990224 total
- age 3: 178688 bytes, 19168912 total
- age 4: 118120 bytes, 19287032 total
- age 5: 256888 bytes, 19543920 total
- age 6: 164712 bytes, 19708632 total
- age 7: 24928 bytes, 19733560 total
- age 8: 53160 bytes, 19786720 total
- age 9: 1392 bytes, 19788112 total
- age 10: 2704 bytes, 19790816 total
- age 11: 23016 bytes, 19813832 total
- age 12: 936 bytes, 19814768 total
- age 13: 2752 bytes, 19817520 total
- age 14: 2984 bytes, 19820504 total
: 129738K->23586K(142016K), 0.0180000 secs] 540255K->434277K(698568K), 0.0180890 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=250 (full 45):
par new generation total 142016K, used 23586K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 83% used [0x00000007b6f00000, 0x00000007b8608858, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 410691K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89208K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=250 (full 45):
par new generation total 142016K, used 137250K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 83% used [0x00000007b6f00000, 0x00000007b8608858, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 410691K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89209K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:39:32.940+0800: 1076.409: [GC2014-01-31T23:39:32.940+0800: 1076.409: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2327664 bytes, 2327664 total
- age 2: 6115584 bytes, 8443248 total
: 137250K->17492K(142016K), 0.0222730 secs] 547941K->441310K(698568K), 0.0223520 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=251 (full 45):
par new generation total 142016K, used 17492K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 61% used [0x00000007b8ab0000, 0x00000007b9bc5378, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 423817K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89209K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=251 (full 45):
par new generation total 142016K, used 131156K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 61% used [0x00000007b8ab0000, 0x00000007b9bc5378, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 423817K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89212K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:39:40.663+0800: 1084.132: [GC2014-01-31T23:39:40.663+0800: 1084.132: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1252008 bytes, 1252008 total
- age 2: 2026008 bytes, 3278016 total
- age 3: 6051080 bytes, 9329096 total
: 131156K->11220K(142016K), 0.0112640 secs] 554974K->435037K(698568K), 0.0113720 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=252 (full 45):
par new generation total 142016K, used 11220K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 39% used [0x00000007b6f00000, 0x00000007b79f5120, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 423817K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89212K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=252 (full 45):
par new generation total 142016K, used 124884K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 39% used [0x00000007b6f00000, 0x00000007b79f5120, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 423817K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89215K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:39:47.167+0800: 1090.636: [GC2014-01-31T23:39:47.167+0800: 1090.636: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3449816 bytes, 3449816 total
- age 2: 933512 bytes, 4383328 total
- age 3: 2025656 bytes, 6408984 total
- age 4: 6050296 bytes, 12459280 total
: 124884K->13147K(142016K), 0.0166140 secs] 548701K->436965K(698568K), 0.0167050 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=253 (full 45):
par new generation total 142016K, used 13147K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 46% used [0x00000007b8ab0000, 0x00000007b9786f80, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 423817K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89215K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=253 (full 45):
par new generation total 142016K, used 126811K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 46% used [0x00000007b8ab0000, 0x00000007b9786f80, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 423817K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89222K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:39:54.717+0800: 1098.187: [GC2014-01-31T23:39:54.717+0800: 1098.187: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 814280 bytes, 814280 total
- age 2: 282856 bytes, 1097136 total
- age 3: 846392 bytes, 1943528 total
- age 4: 2018824 bytes, 3962352 total
- age 5: 6016016 bytes, 9978368 total
: 126811K->16764K(142016K), 0.0121000 secs] 550629K->440582K(698568K), 0.0122010 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=254 (full 45):
par new generation total 142016K, used 16764K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 59% used [0x00000007b6f00000, 0x00000007b7f5f238, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 423817K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89222K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=254 (full 45):
par new generation total 142016K, used 130428K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 59% used [0x00000007b6f00000, 0x00000007b7f5f238, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 423817K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89225K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:40:00.907+0800: 1104.376: [GC2014-01-31T23:40:00.907+0800: 1104.376: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 9187664 bytes, 9187664 total
- age 2: 394872 bytes, 9582536 total
- age 3: 241920 bytes, 9824456 total
- age 4: 799488 bytes, 10623944 total
- age 5: 2016848 bytes, 12640792 total
- age 6: 2857800 bytes, 15498592 total
: 130428K->16065K(142016K), 0.0117290 secs] 554246K->439883K(698568K), 0.0118000 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=255 (full 45):
par new generation total 142016K, used 16065K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 56% used [0x00000007b8ab0000, 0x00000007b9a607e0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 423817K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89225K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=255 (full 45):
par new generation total 142016K, used 129729K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 56% used [0x00000007b8ab0000, 0x00000007b9a607e0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 423817K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89225K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:40:06.943+0800: 1110.412: [GC2014-01-31T23:40:06.943+0800: 1110.412: [ParNew
Desired survivor size 14516224 bytes, new threshold 6 (max 15)
- age 1: 3669520 bytes, 3669520 total
- age 2: 8961256 bytes, 12630776 total
- age 3: 384632 bytes, 13015408 total
- age 4: 186632 bytes, 13202040 total
- age 5: 799448 bytes, 14001488 total
- age 6: 2013088 bytes, 16014576 total
: 129729K->19392K(142016K), 0.0146580 secs] 553547K->445789K(698568K), 0.0147640 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=256 (full 45):
par new generation total 142016K, used 19392K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 68% used [0x00000007b6f00000, 0x00000007b81f0178, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 426397K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89225K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=256 (full 45):
par new generation total 142016K, used 133056K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 68% used [0x00000007b6f00000, 0x00000007b81f0178, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 426397K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89249K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:40:11.015+0800: 1114.484: [GC2014-01-31T23:40:11.015+0800: 1114.484: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 4852760 bytes, 4852760 total
- age 2: 3299032 bytes, 8151792 total
- age 3: 8465056 bytes, 16616848 total
- age 4: 357472 bytes, 16974320 total
- age 5: 185912 bytes, 17160232 total
- age 6: 618304 bytes, 17778536 total
: 133056K->28352K(142016K), 0.0161190 secs] 559453K->455900K(698568K), 0.0161860 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=257 (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 556552K, used 427548K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89249K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=257 (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 556552K, used 427548K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89269K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:40:21.152+0800: 1124.622: [GC2014-01-31T23:40:21.152+0800: 1124.622: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 376432 bytes, 376432 total
- age 2: 4680352 bytes, 5056784 total
- age 3: 3285040 bytes, 8341824 total
: 142016K->16819K(142016K), 0.0210520 secs] 569564K->453711K(698568K), 0.0211300 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=258 (full 45):
par new generation total 142016K, used 16819K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 59% used [0x00000007b6f00000, 0x00000007b7f6ce88, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 436892K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89269K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=258 (full 45):
par new generation total 142016K, used 130483K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 59% used [0x00000007b6f00000, 0x00000007b7f6ce88, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 436892K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89269K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:40:30.079+0800: 1133.548: [GC2014-01-31T23:40:30.079+0800: 1133.548: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4048880 bytes, 4048880 total
- age 2: 140064 bytes, 4188944 total
- age 3: 1401080 bytes, 5590024 total
- age 4: 3276152 bytes, 8866176 total
: 130483K->10885K(142016K), 0.0122290 secs] 567375K->447777K(698568K), 0.0123400 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=259 (full 45):
par new generation total 142016K, used 10885K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 38% used [0x00000007b8ab0000, 0x00000007b95515b0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 436892K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89269K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=259 (full 45):
par new generation total 142016K, used 124549K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 38% used [0x00000007b8ab0000, 0x00000007b95515b0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 436892K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89270K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:40:36.565+0800: 1140.034: [GC2014-01-31T23:40:36.565+0800: 1140.034: [ParNew
Desired survivor size 14516224 bytes, new threshold 5 (max 15)
- age 1: 7825832 bytes, 7825832 total
- age 2: 3720936 bytes, 11546768 total
- age 3: 138504 bytes, 11685272 total
- age 4: 1379904 bytes, 13065176 total
- age 5: 3240104 bytes, 16305280 total
: 124549K->16721K(142016K), 0.0149000 secs] 561441K->453613K(698568K), 0.0149760 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=260 (full 45):
par new generation total 142016K, used 16721K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 58% used [0x00000007b6f00000, 0x00000007b7f54518, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 436892K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89270K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=260 (full 45):
par new generation total 142016K, used 130034K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 99% used [0x00000007b0000000, 0x00000007b6ea8380, 0x00000007b6f00000)
from space 28352K, 58% used [0x00000007b6f00000, 0x00000007b7f54518, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 436892K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89273K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:40:44.667+0800: 1148.137: [GC2014-01-31T23:40:44.667+0800: 1148.137: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4929840 bytes, 4929840 total
- age 2: 7369680 bytes, 12299520 total
- age 3: 725592 bytes, 13025112 total
- age 4: 130032 bytes, 13155144 total
- age 5: 1332376 bytes, 14487520 total
: 130034K->20821K(142016K), 0.0153670 secs] 566926K->460830K(698568K), 0.0154790 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=261 (full 45):
par new generation total 142016K, used 20821K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 73% used [0x00000007b8ab0000, 0x00000007b9f05500, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 440009K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89273K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=261 (full 45):
par new generation total 142016K, used 126200K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 92% used [0x00000007b0000000, 0x00000007b66e8eb0, 0x00000007b6f00000)
from space 28352K, 73% used [0x00000007b8ab0000, 0x00000007b9f05500, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 440009K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89296K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:40:47.519+0800: 1150.988: [GC2014-01-31T23:40:47.519+0800: 1150.988: [ParNew
Desired survivor size 14516224 bytes, new threshold 3 (max 15)
- age 1: 11324088 bytes, 11324088 total
- age 2: 2747184 bytes, 14071272 total
- age 3: 6126792 bytes, 20198064 total
- age 4: 724560 bytes, 20922624 total
- age 5: 129712 bytes, 21052336 total
- age 6: 1327528 bytes, 22379864 total
: 126200K->28105K(142016K), 0.0188050 secs] 566210K->468114K(698568K), 0.0188790 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=262 (full 45):
par new generation total 142016K, used 28105K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 99% used [0x00000007b6f00000, 0x00000007b8a72648, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 440009K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89296K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=262 (full 45):
par new generation total 142016K, used 141769K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 99% used [0x00000007b6f00000, 0x00000007b8a72648, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 440009K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89313K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:40:53.336+0800: 1156.805: [GC2014-01-31T23:40:53.336+0800: 1156.805: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 4382424 bytes, 4382424 total
- age 2: 10366856 bytes, 14749280 total
- age 3: 706712 bytes, 15455992 total
: 141769K->28352K(142016K), 0.0180970 secs] 581778K->475548K(698568K), 0.0182030 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=263 (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 556552K, used 447196K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89313K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=263 (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 556552K, used 447196K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89317K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:41:02.617+0800: 1166.087: [GC2014-01-31T23:41:02.617+0800: 1166.087: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3321984 bytes, 3321984 total
- age 2: 4238144 bytes, 7560128 total
: 142016K->10681K(142016K), 0.0187250 secs] 589212K->468482K(698568K), 0.0187980 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=264 (full 45):
par new generation total 142016K, used 10681K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 37% used [0x00000007b6f00000, 0x00000007b796e560, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 457801K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89317K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:41:02.636+0800: 1166.106: [GC [1 CMS-initial-mark: 457801K(556552K)] 468482K(698568K), 0.0082430 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:41:02.645+0800: 1166.114: [CMS-concurrent-mark-start]
2014-01-31T23:41:02.834+0800: 1166.304: [CMS-concurrent-mark: 0.189/0.189 secs] [Times: user=0.58 sys=0.01, real=0.19 secs]
2014-01-31T23:41:02.834+0800: 1166.304: [GC[YG occupancy: 21457 K (142016 K)]2014-01-31T23:41:02.834+0800: 1166.304: [Rescan (parallel) , 0.0110700 secs]2014-01-31T23:41:02.845+0800: 1166.315: [weak refs processing, 0.0002440 secs]2014-01-31T23:41:02.846+0800: 1166.315: [scrub string table, 0.0014220 secs] [1 CMS-remark: 457801K(556552K)] 479258K(698568K), 0.0128490 secs] [Times: user=0.03 sys=0.01, real=0.01 secs]
2014-01-31T23:41:02.847+0800: 1166.317: [CMS-concurrent-sweep-start]
2014-01-31T23:41:02.956+0800: 1166.425: [CMS-concurrent-sweep: 0.109/0.109 secs] [Times: user=0.19 sys=0.01, real=0.11 secs]
2014-01-31T23:41:02.956+0800: 1166.425: [CMS-concurrent-reset-start]
2014-01-31T23:41:02.958+0800: 1166.428: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
{Heap before GC invocations=264 (full 46):
par new generation total 142016K, used 124345K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 37% used [0x00000007b6f00000, 0x00000007b796e560, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 407608K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89323K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:41:09.059+0800: 1172.529: [GC2014-01-31T23:41:09.059+0800: 1172.529: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2593688 bytes, 2593688 total
- age 2: 2873104 bytes, 5466792 total
- age 3: 3971400 bytes, 9438192 total
: 124345K->12379K(142016K), 0.0133100 secs] 531954K->419988K(698568K), 0.0133830 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
Heap after GC invocations=265 (full 46):
par new generation total 142016K, used 12379K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 43% used [0x00000007b8ab0000, 0x00000007b96c6fd0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 407608K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89323K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=265 (full 46):
par new generation total 142016K, used 126043K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 43% used [0x00000007b8ab0000, 0x00000007b96c6fd0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 407608K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89327K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:41:15.725+0800: 1179.195: [GC2014-01-31T23:41:15.725+0800: 1179.195: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4231896 bytes, 4231896 total
- age 2: 1023808 bytes, 5255704 total
- age 3: 2849272 bytes, 8104976 total
- age 4: 3248728 bytes, 11353704 total
: 126043K->17780K(142016K), 0.0121720 secs] 533652K->425389K(698568K), 0.0122600 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=266 (full 46):
par new generation total 142016K, used 17780K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 62% used [0x00000007b6f00000, 0x00000007b805d220, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 407608K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89327K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=266 (full 46):
par new generation total 142016K, used 131444K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 62% used [0x00000007b6f00000, 0x00000007b805d220, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 407608K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89331K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:41:21.662+0800: 1185.131: [GC2014-01-31T23:41:21.662+0800: 1185.131: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3853536 bytes, 3853536 total
- age 2: 1772184 bytes, 5625720 total
- age 3: 385944 bytes, 6011664 total
- age 4: 2458032 bytes, 8469696 total
- age 5: 3201704 bytes, 11671400 total
: 131444K->15857K(142016K), 0.0147730 secs] 539053K->423466K(698568K), 0.0148660 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=267 (full 46):
par new generation total 142016K, used 15857K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 55% used [0x00000007b8ab0000, 0x00000007b9a2c510, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 407608K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89331K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=267 (full 46):
par new generation total 142016K, used 129521K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 55% used [0x00000007b8ab0000, 0x00000007b9a2c510, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 407608K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89332K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:41:29.863+0800: 1193.332: [GC2014-01-31T23:41:29.863+0800: 1193.332: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4004280 bytes, 4004280 total
- age 2: 3257408 bytes, 7261688 total
- age 3: 1754016 bytes, 9015704 total
- age 4: 360824 bytes, 9376528 total
- age 5: 422968 bytes, 9799496 total
- age 6: 3166160 bytes, 12965656 total
: 129521K->16625K(142016K), 0.0163210 secs] 537130K->424234K(698568K), 0.0164040 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=268 (full 46):
par new generation total 142016K, used 16625K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 58% used [0x00000007b6f00000, 0x00000007b7f3c7d0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 407608K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89332K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=268 (full 46):
par new generation total 142016K, used 130289K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 58% used [0x00000007b6f00000, 0x00000007b7f3c7d0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 407608K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89342K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:41:37.595+0800: 1201.064: [GC2014-01-31T23:41:37.595+0800: 1201.064: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 532992 bytes, 532992 total
- age 2: 3758424 bytes, 4291416 total
- age 3: 3217192 bytes, 7508608 total
- age 4: 1729088 bytes, 9237696 total
- age 5: 360608 bytes, 9598304 total
- age 6: 358272 bytes, 9956576 total
- age 7: 3145832 bytes, 13102408 total
: 130289K->18356K(142016K), 0.0126570 secs] 537898K->425965K(698568K), 0.0127560 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=269 (full 46):
par new generation total 142016K, used 18356K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 64% used [0x00000007b8ab0000, 0x00000007b9c9d150, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 407608K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89342K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=269 (full 46):
par new generation total 142016K, used 132020K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 64% used [0x00000007b8ab0000, 0x00000007b9c9d150, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 407608K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89352K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:41:44.281+0800: 1207.751: [GC2014-01-31T23:41:44.281+0800: 1207.751: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1632680 bytes, 1632680 total
- age 2: 282064 bytes, 1914744 total
- age 3: 3757184 bytes, 5671928 total
- age 4: 3214992 bytes, 8886920 total
- age 5: 1688432 bytes, 10575352 total
- age 6: 341816 bytes, 10917168 total
- age 7: 302896 bytes, 11220064 total
- age 8: 3129320 bytes, 14349384 total
: 132020K->18965K(142016K), 0.0158390 secs] 539629K->426574K(698568K), 0.0159270 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=270 (full 46):
par new generation total 142016K, used 18965K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 66% used [0x00000007b6f00000, 0x00000007b81854e0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 407608K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89352K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=270 (full 46):
par new generation total 142016K, used 132629K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 66% used [0x00000007b6f00000, 0x00000007b81854e0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 407608K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89353K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:41:51.533+0800: 1215.003: [GC2014-01-31T23:41:51.533+0800: 1215.003: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 474800 bytes, 474800 total
- age 2: 1323760 bytes, 1798560 total
- age 3: 211160 bytes, 2009720 total
- age 4: 3748216 bytes, 5757936 total
- age 5: 3195016 bytes, 8952952 total
- age 6: 1675528 bytes, 10628480 total
- age 7: 323840 bytes, 10952320 total
- age 8: 302896 bytes, 11255216 total
- age 9: 3126120 bytes, 14381336 total
: 132629K->20467K(142016K), 0.0140920 secs] 540238K->428076K(698568K), 0.0142000 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=271 (full 46):
par new generation total 142016K, used 20467K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 72% used [0x00000007b8ab0000, 0x00000007b9eacf78, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 407608K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89353K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=271 (full 46):
par new generation total 142016K, used 134131K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 72% used [0x00000007b8ab0000, 0x00000007b9eacf78, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 407608K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89355K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:41:58.564+0800: 1222.034: [GC2014-01-31T23:41:58.564+0800: 1222.034: [ParNew
Desired survivor size 14516224 bytes, new threshold 10 (max 15)
- age 1: 839240 bytes, 839240 total
- age 2: 178984 bytes, 1018224 total
- age 3: 1322664 bytes, 2340888 total
- age 4: 210776 bytes, 2551664 total
- age 5: 3747984 bytes, 6299648 total
- age 6: 3189696 bytes, 9489344 total
- age 7: 1656696 bytes, 11146040 total
- age 8: 321888 bytes, 11467928 total
- age 9: 228368 bytes, 11696296 total
- age 10: 3114200 bytes, 14810496 total
: 134131K->20872K(142016K), 0.0138800 secs] 541740K->428481K(698568K), 0.0139580 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=272 (full 46):
par new generation total 142016K, used 20872K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 73% used [0x00000007b6f00000, 0x00000007b8362060, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 407608K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89355K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=272 (full 46):
par new generation total 142016K, used 134536K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 73% used [0x00000007b6f00000, 0x00000007b8362060, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 407608K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89355K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:42:04.686+0800: 1228.155: [GC2014-01-31T23:42:04.686+0800: 1228.155: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 670952 bytes, 670952 total
- age 2: 387344 bytes, 1058296 total
- age 3: 178544 bytes, 1236840 total
- age 4: 1320576 bytes, 2557416 total
- age 5: 190144 bytes, 2747560 total
- age 6: 3723720 bytes, 6471280 total
- age 7: 3175160 bytes, 9646440 total
- age 8: 1637096 bytes, 11283536 total
- age 9: 321888 bytes, 11605424 total
- age 10: 201512 bytes, 11806936 total
: 134536K->21562K(142016K), 0.0159690 secs] 542145K->432218K(698568K), 0.0160430 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=273 (full 46):
par new generation total 142016K, used 21562K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b8ab0000, 0x00000007b9fbeb68, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 410655K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89355K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=273 (full 46):
par new generation total 142016K, used 120304K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 86% used [0x00000007b0000000, 0x00000007b606d840, 0x00000007b6f00000)
from space 28352K, 76% used [0x00000007b8ab0000, 0x00000007b9fbeb68, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 410655K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89363K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:42:10.600+0800: 1234.069: [GC2014-01-31T23:42:10.600+0800: 1234.069: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1068672 bytes, 1068672 total
- age 2: 222584 bytes, 1291256 total
- age 3: 345528 bytes, 1636784 total
- age 4: 170768 bytes, 1807552 total
- age 5: 464960 bytes, 2272512 total
- age 6: 190088 bytes, 2462600 total
- age 7: 3585288 bytes, 6047888 total
- age 8: 3168984 bytes, 9216872 total
- age 9: 276464 bytes, 9493336 total
- age 10: 20616 bytes, 9513952 total
- age 11: 160304 bytes, 9674256 total
: 120304K->11815K(142016K), 0.0127180 secs] 530960K->422471K(698568K), 0.0128160 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=274 (full 46):
par new generation total 142016K, used 11815K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 41% used [0x00000007b6f00000, 0x00000007b7a89fc0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 410655K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89363K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=274 (full 46):
par new generation total 142016K, used 125479K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 41% used [0x00000007b6f00000, 0x00000007b7a89fc0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 410655K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89366K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:42:16.622+0800: 1240.091: [GC2014-01-31T23:42:16.622+0800: 1240.091: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1435656 bytes, 1435656 total
- age 2: 757816 bytes, 2193472 total
- age 3: 188920 bytes, 2382392 total
- age 4: 270736 bytes, 2653128 total
- age 5: 170528 bytes, 2823656 total
- age 6: 432856 bytes, 3256512 total
- age 7: 172032 bytes, 3428544 total
- age 8: 3585232 bytes, 7013776 total
- age 9: 3141864 bytes, 10155640 total
- age 10: 276464 bytes, 10432104 total
- age 11: 20576 bytes, 10452680 total
- age 12: 160264 bytes, 10612944 total
: 125479K->13520K(142016K), 0.0130960 secs] 536135K->424175K(698568K), 0.0131910 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=275 (full 46):
par new generation total 142016K, used 13520K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 47% used [0x00000007b8ab0000, 0x00000007b97e40e8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 410655K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89366K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=275 (full 46):
par new generation total 142016K, used 127184K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 47% used [0x00000007b8ab0000, 0x00000007b97e40e8, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 410655K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89372K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:42:17.840+0800: 1241.309: [GC2014-01-31T23:42:17.840+0800: 1241.309: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 18220960 bytes, 18220960 total
- age 2: 928016 bytes, 19148976 total
- age 3: 732520 bytes, 19881496 total
- age 4: 188360 bytes, 20069856 total
- age 5: 232640 bytes, 20302496 total
- age 6: 169048 bytes, 20471544 total
- age 7: 421824 bytes, 20893368 total
- age 8: 145456 bytes, 21038824 total
- age 9: 3307712 bytes, 24346536 total
- age 10: 3089056 bytes, 27435592 total
- age 11: 275344 bytes, 27710936 total
- age 12: 19160 bytes, 27730096 total
- age 13: 87000 bytes, 27817096 total
: 127184K->28352K(142016K), 0.0221990 secs] 537839K->442845K(698568K), 0.0223000 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=276 (full 46):
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 556552K, used 414493K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89372K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=276 (full 46):
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 556552K, used 414493K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89372K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:42:22.617+0800: 1246.087: [GC2014-01-31T23:42:22.617+0800: 1246.087: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 7868384 bytes, 7868384 total
: 142016K->22919K(142016K), 0.0442190 secs] 556509K->463337K(698568K), 0.0443060 secs] [Times: user=0.09 sys=0.00, real=0.05 secs]
Heap after GC invocations=277 (full 46):
par new generation total 142016K, used 22919K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 80% used [0x00000007b8ab0000, 0x00000007ba111da0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 440417K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89372K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=277 (full 46):
par new generation total 142016K, used 136583K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 80% used [0x00000007b8ab0000, 0x00000007ba111da0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 440417K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89378K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:42:29.330+0800: 1252.799: [GC2014-01-31T23:42:29.330+0800: 1252.799: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1801856 bytes, 1801856 total
- age 2: 7609304 bytes, 9411160 total
: 136583K->15351K(142016K), 0.0229990 secs] 577001K->455769K(698568K), 0.0230870 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=278 (full 46):
par new generation total 142016K, used 15351K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 54% used [0x00000007b6f00000, 0x00000007b7dfdf50, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 440417K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89378K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=278 (full 46):
par new generation total 142016K, used 129015K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 54% used [0x00000007b6f00000, 0x00000007b7dfdf50, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 440417K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89390K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:42:35.457+0800: 1258.927: [GC2014-01-31T23:42:35.457+0800: 1258.927: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 1133928 bytes, 1133928 total
- age 2: 1519992 bytes, 2653920 total
- age 3: 7606488 bytes, 10260408 total
: 129015K->13369K(142016K), 0.0199580 secs] 569433K->453787K(698568K), 0.0200420 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=279 (full 46):
par new generation total 142016K, used 13369K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 47% used [0x00000007b8ab0000, 0x00000007b97be720, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 440417K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89390K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=279 (full 46):
par new generation total 142016K, used 127033K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 47% used [0x00000007b8ab0000, 0x00000007b97be720, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 440417K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89393K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:42:41.515+0800: 1264.985: [GC2014-01-31T23:42:41.515+0800: 1264.985: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2208704 bytes, 2208704 total
- age 2: 839824 bytes, 3048528 total
- age 3: 1418720 bytes, 4467248 total
- age 4: 7605808 bytes, 12073056 total
: 127033K->17639K(142016K), 0.0210220 secs] 567451K->458057K(698568K), 0.0211030 secs] [Times: user=0.05 sys=0.00, real=0.02 secs]
Heap after GC invocations=280 (full 46):
par new generation total 142016K, used 17639K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 62% used [0x00000007b6f00000, 0x00000007b8039eb0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 440417K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89393K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=280 (full 46):
par new generation total 142016K, used 131303K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 62% used [0x00000007b6f00000, 0x00000007b8039ed0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 440417K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89394K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:42:46.633+0800: 1270.102: [GC2014-01-31T23:42:46.633+0800: 1270.102: [ParNew
Desired survivor size 14516224 bytes, new threshold 5 (max 15)
- age 1: 4027016 bytes, 4027016 total
- age 2: 1865448 bytes, 5892464 total
- age 3: 818848 bytes, 6711312 total
- age 4: 1416824 bytes, 8128136 total
- age 5: 7604144 bytes, 15732280 total
: 131303K->22130K(142016K), 0.0280540 secs] 571721K->462548K(698568K), 0.0281250 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
Heap after GC invocations=281 (full 46):
par new generation total 142016K, used 22130K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 78% used [0x00000007b8ab0000, 0x00000007ba04cb68, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 440417K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89394K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=281 (full 46):
par new generation total 142016K, used 135794K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 78% used [0x00000007b8ab0000, 0x00000007ba04cb68, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 440417K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89394K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:42:51.665+0800: 1275.135: [GC2014-01-31T23:42:51.665+0800: 1275.135: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 936840 bytes, 936840 total
- age 2: 210064 bytes, 1146904 total
- age 3: 1856008 bytes, 3002912 total
- age 4: 790680 bytes, 3793592 total
- age 5: 1416704 bytes, 5210296 total
: 135794K->14208K(142016K), 0.0299090 secs] 576212K->462922K(698568K), 0.0300180 secs] [Times: user=0.06 sys=0.00, real=0.03 secs]
Heap after GC invocations=282 (full 46):
par new generation total 142016K, used 14208K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 50% used [0x00000007b6f00000, 0x00000007b7ce01a8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 448713K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89394K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=282 (full 46):
par new generation total 142016K, used 127872K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 50% used [0x00000007b6f00000, 0x00000007b7ce01a8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 448713K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89400K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:42:57.535+0800: 1281.005: [GC2014-01-31T23:42:57.535+0800: 1281.005: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 382984 bytes, 382984 total
- age 2: 691608 bytes, 1074592 total
- age 3: 209888 bytes, 1284480 total
- age 4: 1855384 bytes, 3139864 total
- age 5: 790664 bytes, 3930528 total
- age 6: 1410264 bytes, 5340792 total
: 127872K->7250K(142016K), 0.0106730 secs] 576586K->455963K(698568K), 0.0107740 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=283 (full 46):
par new generation total 142016K, used 7250K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 25% used [0x00000007b8ab0000, 0x00000007b91c48c0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 448713K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89400K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=283 (full 46):
par new generation total 142016K, used 120914K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 25% used [0x00000007b8ab0000, 0x00000007b91c48c0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 448713K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89406K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:43:03.671+0800: 1287.141: [GC2014-01-31T23:43:03.671+0800: 1287.141: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 454504 bytes, 454504 total
- age 2: 124192 bytes, 578696 total
- age 3: 663944 bytes, 1242640 total
- age 4: 208328 bytes, 1450968 total
- age 5: 1854912 bytes, 3305880 total
- age 6: 759448 bytes, 4065328 total
- age 7: 1366488 bytes, 5431816 total
: 120914K->7642K(142016K), 0.0130360 secs] 569627K->456355K(698568K), 0.0131330 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=284 (full 46):
par new generation total 142016K, used 7642K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 26% used [0x00000007b6f00000, 0x00000007b7676998, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 448713K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89406K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=284 (full 46):
par new generation total 142016K, used 121306K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 26% used [0x00000007b6f00000, 0x00000007b7676998, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 448713K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89412K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:43:08.762+0800: 1292.231: [GC2014-01-31T23:43:08.762+0800: 1292.231: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3554464 bytes, 3554464 total
- age 2: 221352 bytes, 3775816 total
- age 3: 122944 bytes, 3898760 total
- age 4: 551016 bytes, 4449776 total
- age 5: 198168 bytes, 4647944 total
- age 6: 1642376 bytes, 6290320 total
- age 7: 356680 bytes, 6647000 total
- age 8: 943808 bytes, 7590808 total
: 121306K->10519K(142016K), 0.0145550 secs] 570019K->459232K(698568K), 0.0146290 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=285 (full 46):
par new generation total 142016K, used 10519K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 37% used [0x00000007b8ab0000, 0x00000007b94f5d50, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 448713K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89412K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=285 (full 46):
par new generation total 142016K, used 124183K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 37% used [0x00000007b8ab0000, 0x00000007b94f5d50, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 448713K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89412K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:43:14.199+0800: 1297.669: [GC2014-01-31T23:43:14.200+0800: 1297.669: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3245752 bytes, 3245752 total
- age 2: 1188696 bytes, 4434448 total
- age 3: 213280 bytes, 4647728 total
- age 4: 122672 bytes, 4770400 total
- age 5: 123776 bytes, 4894176 total
- age 6: 181440 bytes, 5075616 total
- age 7: 224936 bytes, 5300552 total
- age 8: 220264 bytes, 5520816 total
- age 9: 71808 bytes, 5592624 total
: 124183K->10150K(142016K), 0.0114620 secs] 572896K->458863K(698568K), 0.0115620 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
Heap after GC invocations=286 (full 46):
par new generation total 142016K, used 10150K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 35% used [0x00000007b6f00000, 0x00000007b78e9890, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 448713K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89412K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=286 (full 46):
par new generation total 142016K, used 123814K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 35% used [0x00000007b6f00000, 0x00000007b78e9890, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 448713K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89422K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:43:20.068+0800: 1303.537: [GC2014-01-31T23:43:20.068+0800: 1303.537: [ParNew
Desired survivor size 14516224 bytes, new threshold 2 (max 15)
- age 1: 11993008 bytes, 11993008 total
- age 2: 3033912 bytes, 15026920 total
- age 3: 1141024 bytes, 16167944 total
- age 4: 184544 bytes, 16352488 total
- age 5: 112792 bytes, 16465280 total
- age 6: 84208 bytes, 16549488 total
- age 7: 173344 bytes, 16722832 total
- age 8: 215600 bytes, 16938432 total
- age 9: 161368 bytes, 17099800 total
- age 10: 38400 bytes, 17138200 total
: 123814K->18614K(142016K), 0.0173670 secs] 572527K->467328K(698568K), 0.0174370 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=287 (full 46):
par new generation total 142016K, used 18614K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 65% used [0x00000007b8ab0000, 0x00000007b9cddab0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 448713K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89422K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=287 (full 46):
par new generation total 142016K, used 132278K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 65% used [0x00000007b8ab0000, 0x00000007b9cddab0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 448713K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89428K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:43:23.860+0800: 1307.330: [GC2014-01-31T23:43:23.860+0800: 1307.330: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 17819800 bytes, 17819800 total
- age 2: 11209592 bytes, 29029392 total
: 132278K->28352K(142016K), 0.0259040 secs] 580992K->484932K(698568K), 0.0259940 secs] [Times: user=0.04 sys=0.00, real=0.02 secs]
Heap after GC invocations=288 (full 46):
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 556552K, used 456580K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89428K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:43:23.886+0800: 1307.356: [GC [1 CMS-initial-mark: 456580K(556552K)] 484932K(698568K), 0.0115370 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-31T23:43:23.898+0800: 1307.367: [CMS-concurrent-mark-start]
2014-01-31T23:43:24.109+0800: 1307.578: [CMS-concurrent-mark: 0.211/0.211 secs] [Times: user=0.64 sys=0.02, real=0.21 secs]
2014-01-31T23:43:24.109+0800: 1307.578: [GC[YG occupancy: 33414 K (142016 K)]2014-01-31T23:43:24.109+0800: 1307.578: [Rescan (parallel) , 0.0084280 secs]2014-01-31T23:43:24.117+0800: 1307.587: [weak refs processing, 0.0002310 secs]2014-01-31T23:43:24.117+0800: 1307.587: [scrub string table, 0.0011840 secs] [1 CMS-remark: 456580K(556552K)] 489994K(698568K), 0.0099280 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-01-31T23:43:24.119+0800: 1307.588: [CMS-concurrent-sweep-start]
2014-01-31T23:43:24.234+0800: 1307.703: [CMS-concurrent-sweep: 0.115/0.115 secs] [Times: user=0.22 sys=0.01, real=0.12 secs]
2014-01-31T23:43:24.234+0800: 1307.703: [CMS-concurrent-reset-start]
2014-01-31T23:43:24.237+0800: 1307.706: [CMS-concurrent-reset: 0.003/0.003 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
{Heap before GC invocations=288 (full 47):
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 556552K, used 402689K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89431K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:43:30.425+0800: 1313.895: [GC2014-01-31T23:43:30.425+0800: 1313.895: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4604896 bytes, 4604896 total
: 142016K->24691K(142016K), 0.0259620 secs] 544705K->455646K(698568K), 0.0260510 secs] [Times: user=0.04 sys=0.01, real=0.03 secs]
Heap after GC invocations=289 (full 47):
par new generation total 142016K, used 24691K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 87% used [0x00000007b8ab0000, 0x00000007ba2ccd60, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 430955K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89431K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=289 (full 47):
par new generation total 142016K, used 138355K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 87% used [0x00000007b8ab0000, 0x00000007ba2ccd60, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 430955K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89434K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:43:35.484+0800: 1318.953: [GC2014-01-31T23:43:35.484+0800: 1318.953: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2956808 bytes, 2956808 total
- age 2: 4372360 bytes, 7329168 total
: 138355K->10726K(142016K), 0.0117180 secs] 569310K->441682K(698568K), 0.0118140 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=290 (full 47):
par new generation total 142016K, used 10726K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 37% used [0x00000007b6f00000, 0x00000007b7979ab8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 430955K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89434K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=290 (full 47):
par new generation total 142016K, used 124390K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 37% used [0x00000007b6f00000, 0x00000007b7979ab8, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 430955K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89439K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:43:41.940+0800: 1325.410: [GC2014-01-31T23:43:41.940+0800: 1325.410: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2433304 bytes, 2433304 total
- age 2: 1897656 bytes, 4330960 total
- age 3: 4328040 bytes, 8659000 total
: 124390K->10501K(142016K), 0.0113020 secs] 555346K->441457K(698568K), 0.0113890 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=291 (full 47):
par new generation total 142016K, used 10501K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 37% used [0x00000007b8ab0000, 0x00000007b94f1740, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 430955K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89439K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=291 (full 47):
par new generation total 142016K, used 124165K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 37% used [0x00000007b8ab0000, 0x00000007b94f1740, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 430955K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89442K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:43:45.348+0800: 1328.817: [GC2014-01-31T23:43:45.348+0800: 1328.817: [ParNew
Desired survivor size 14516224 bytes, new threshold 1 (max 15)
- age 1: 16412344 bytes, 16412344 total
- age 2: 2154448 bytes, 18566792 total
- age 3: 1879768 bytes, 20446560 total
- age 4: 4327784 bytes, 24774344 total
: 124165K->28100K(142016K), 0.0235920 secs] 555121K->459055K(698568K), 0.0236960 secs] [Times: user=0.05 sys=0.00, real=0.03 secs]
Heap after GC invocations=292 (full 47):
par new generation total 142016K, used 28100K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 99% used [0x00000007b6f00000, 0x00000007b8a71160, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 430955K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89442K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=292 (full 47):
par new generation total 142016K, used 141764K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 99% used [0x00000007b6f00000, 0x00000007b8a71160, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 430955K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89442K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:43:49.024+0800: 1332.493: [GC2014-01-31T23:43:49.024+0800: 1332.493: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 618776 bytes, 618776 total
: 141764K->20057K(142016K), 0.0181440 secs] 572719K->470562K(698568K), 0.0182160 secs] [Times: user=0.03 sys=0.01, real=0.02 secs]
Heap after GC invocations=293 (full 47):
par new generation total 142016K, used 20057K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 70% used [0x00000007b8ab0000, 0x00000007b9e46718, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 450504K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89442K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=293 (full 47):
par new generation total 142016K, used 133721K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 70% used [0x00000007b8ab0000, 0x00000007b9e46718, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 450504K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89450K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:43:54.687+0800: 1338.157: [GC2014-01-31T23:43:54.687+0800: 1338.157: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 7871360 bytes, 7871360 total
- age 2: 457824 bytes, 8329184 total
: 133721K->10316K(142016K), 0.0165640 secs] 584226K->460820K(698568K), 0.0166430 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=294 (full 47):
par new generation total 142016K, used 10316K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 36% used [0x00000007b6f00000, 0x00000007b7913008, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 450504K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89450K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=294 (full 47):
par new generation total 142016K, used 123980K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 36% used [0x00000007b6f00000, 0x00000007b7913008, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 450504K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89450K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:43:59.793+0800: 1343.262: [GC2014-01-31T23:43:59.793+0800: 1343.262: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 2081712 bytes, 2081712 total
- age 2: 3901144 bytes, 5982856 total
- age 3: 447280 bytes, 6430136 total
: 123980K->11026K(142016K), 0.0098970 secs] 574484K->461531K(698568K), 0.0099780 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=295 (full 47):
par new generation total 142016K, used 11026K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 38% used [0x00000007b8ab0000, 0x00000007b95749d0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 450504K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89450K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=295 (full 47):
par new generation total 142016K, used 124690K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 38% used [0x00000007b8ab0000, 0x00000007b95749d0, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 450504K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89456K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:44:06.656+0800: 1350.125: [GC2014-01-31T23:44:06.656+0800: 1350.125: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 874288 bytes, 874288 total
- age 2: 1882640 bytes, 2756928 total
- age 3: 3876944 bytes, 6633872 total
- age 4: 447280 bytes, 7081152 total
: 124690K->8376K(142016K), 0.0097050 secs] 575195K->458881K(698568K), 0.0097780 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=296 (full 47):
par new generation total 142016K, used 8376K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 29% used [0x00000007b6f00000, 0x00000007b772e1e0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 450504K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89456K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=296 (full 47):
par new generation total 142016K, used 122040K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 29% used [0x00000007b6f00000, 0x00000007b772e1e0, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 450504K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89460K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:44:12.814+0800: 1356.284: [GC2014-01-31T23:44:12.815+0800: 1356.284: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3673864 bytes, 3673864 total
- age 2: 673640 bytes, 4347504 total
- age 3: 566672 bytes, 4914176 total
- age 4: 2168384 bytes, 7082560 total
- age 5: 32824 bytes, 7115384 total
: 122040K->9653K(142016K), 0.0141960 secs] 572545K->460157K(698568K), 0.0145990 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=297 (full 47):
par new generation total 142016K, used 9653K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 34% used [0x00000007b8ab0000, 0x00000007b941d478, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 450504K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89460K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=297 (full 47):
par new generation total 142016K, used 123317K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 34% used [0x00000007b8ab0000, 0x00000007b941d478, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 450504K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89460K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:44:18.524+0800: 1361.993: [GC2014-01-31T23:44:18.524+0800: 1361.993: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 3287648 bytes, 3287648 total
- age 2: 723344 bytes, 4010992 total
- age 3: 368792 bytes, 4379784 total
- age 4: 131000 bytes, 4510784 total
- age 5: 1758360 bytes, 6269144 total
- age 6: 32528 bytes, 6301672 total
: 123317K->9959K(142016K), 0.0141030 secs] 573821K->460464K(698568K), 0.0141730 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
Heap after GC invocations=298 (full 47):
par new generation total 142016K, used 9959K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 35% used [0x00000007b6f00000, 0x00000007b78b9e90, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 450504K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89460K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=298 (full 47):
par new generation total 142016K, used 123623K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 100% used [0x00000007b0000000, 0x00000007b6f00000, 0x00000007b6f00000)
from space 28352K, 35% used [0x00000007b6f00000, 0x00000007b78b9e90, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 450504K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89492K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:44:25.114+0800: 1368.583: [GC2014-01-31T23:44:25.114+0800: 1368.583: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 4095432 bytes, 4095432 total
- age 2: 170184 bytes, 4265616 total
- age 3: 723008 bytes, 4988624 total
- age 4: 297176 bytes, 5285800 total
- age 5: 130984 bytes, 5416784 total
- age 6: 1743672 bytes, 7160456 total
- age 7: 26256 bytes, 7186712 total
: 123623K->9405K(142016K), 0.0181030 secs] 574128K->459910K(698568K), 0.0182010 secs] [Times: user=0.03 sys=0.00, real=0.02 secs]
Heap after GC invocations=299 (full 47):
par new generation total 142016K, used 9405K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 33% used [0x00000007b8ab0000, 0x00000007b93df718, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 450504K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89492K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
{Heap before GC invocations=299 (full 47):
par new generation total 142016K, used 24061K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 12% used [0x00000007b0000000, 0x00000007b0e4ff90, 0x00000007b6f00000)
from space 28352K, 33% used [0x00000007b8ab0000, 0x00000007b93df718, 0x00000007ba660000)
to space 28352K, 0% used [0x00000007b6f00000, 0x00000007b6f00000, 0x00000007b8ab0000)
concurrent mark-sweep generation total 556552K, used 450504K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89492K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
2014-01-31T23:44:26.302+0800: 1369.772: [GC2014-01-31T23:44:26.302+0800: 1369.772: [ParNew
Desired survivor size 14516224 bytes, new threshold 15 (max 15)
- age 1: 39736 bytes, 39736 total
- age 2: 264352 bytes, 304088 total
- age 3: 170184 bytes, 474272 total
- age 4: 723008 bytes, 1197280 total
- age 5: 297176 bytes, 1494456 total
- age 6: 130984 bytes, 1625440 total
- age 7: 1743672 bytes, 3369112 total
- age 8: 26256 bytes, 3395368 total
: 24061K->6578K(142016K), 0.0097670 secs] 474566K->457082K(698568K), 0.0098570 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
Heap after GC invocations=300 (full 47):
par new generation total 142016K, used 6578K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 0% used [0x00000007b0000000, 0x00000007b0000000, 0x00000007b6f00000)
from space 28352K, 23% used [0x00000007b6f00000, 0x00000007b756c878, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 450504K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89492K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
}
2014-01-31T23:44:26.312+0800: 1369.782: [GC [1 CMS-initial-mark: 450504K(556552K)] 457089K(698568K), 0.0088800 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-01-31T23:44:26.321+0800: 1369.791: [CMS-concurrent-mark-start]
2014-01-31T23:44:26.478+0800: 1369.947: [CMS-concurrent-mark: 0.155/0.156 secs] [Times: user=0.32 sys=0.00, real=0.15 secs]
2014-01-31T23:44:26.478+0800: 1369.947: [GC[YG occupancy: 7436 K (142016 K)]2014-01-31T23:44:26.478+0800: 1369.947: [Rescan (parallel) , 0.0056230 secs]2014-01-31T23:44:26.483+0800: 1369.953: [weak refs processing, 0.0001900 secs]2014-01-31T23:44:26.484+0800: 1369.953: [class unloading, 0.0078860 secs]2014-01-31T23:44:26.491+0800: 1369.961: [scrub symbol table, 0.0146010 secs]2014-01-31T23:44:26.506+0800: 1369.976: [scrub string table, 0.0012070 secs] [1 CMS-remark: 450504K(556552K)] 457941K(698568K), 0.0336370 secs] [Times: user=0.04 sys=0.01, real=0.04 secs]
2014-01-31T23:44:26.512+0800: 1369.981: [CMS-concurrent-sweep-start]
2014-01-31T23:44:26.627+0800: 1370.096: [CMS-concurrent-sweep: 0.115/0.115 secs] [Times: user=0.12 sys=0.00, real=0.11 secs]
2014-01-31T23:44:26.627+0800: 1370.096: [CMS-concurrent-reset-start]
2014-01-31T23:44:26.629+0800: 1370.099: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
Heap
par new generation total 142016K, used 97090K [0x00000007b0000000, 0x00000007ba660000, 0x00000007ba660000)
eden space 113664K, 79% used [0x00000007b0000000, 0x00000007b58641f8, 0x00000007b6f00000)
from space 28352K, 23% used [0x00000007b6f00000, 0x00000007b756c878, 0x00000007b8ab0000)
to space 28352K, 0% used [0x00000007b8ab0000, 0x00000007b8ab0000, 0x00000007ba660000)
concurrent mark-sweep generation total 556552K, used 398832K [0x00000007ba660000, 0x00000007dc5e2000, 0x00000007f0000000)
concurrent-mark-sweep perm gen total 262144K, used 89492K [0x00000007f0000000, 0x0000000800000000, 0x0000000800000000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment