赵志浩
Published on 2020-04-27 / 22 Visits
1
0

GC日志分析详解

GC日志分析详解

以ParallelGC为例,YoungGC日志解释如下

FullGC日志解释如下

GC LOG

原创声明:作者:赵志浩、个人博客地址:https://zhaozhihao.com

原创声明:笔名:陈咬金、 博客园地址:https://www.cnblogs.com/zh94/

下述为本人UAT环境所取出来的CMS GC log,为了便于理解已增加相关注释

请注意,这是一个很长的GC日志,滚动下拉框查看所有

如果需要下载该log文件,可查看该链接下载:https://www.cnblogs.com/zh94/p/10499820.html

{Heap before GC invocations=0 (full 0):
 par new generation   total 436928K, used 207485K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  59% used [0x00000000b0600000, 0x00000000bd09f7d8, 0x00000000c5b60000)
  from space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 0K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 21248K, used 15940K [0x00000000f0600000, 0x00000000f1ac0000, 0x0000000100000000)
2018-12-12T10:40:05.989+0800: 6.418:  
							FUllGC的含义介绍:CMS收集前老年代使用 0K ->收集后使用老年代15089K(老年代共(524288K))  GC前整堆使用207485K内存,GC后使用15089K(堆内存共961216K)此处堆内存的总和不包含永久代即Perm区,jdk6的版本永久代是在堆之外的内存分配区域
[Full GC2018-12-12T10:40:05.989+0800: 6.418: [CMS: 0K->15089K(524288K), 0.0913930 secs]                                 207485K->15089K(961216K),    

     [CMS Perm : 15940K->15898K(21248K)], 0.0919160 secs] [Times: user=0.09 sys=0.00, real=0.09 secs] 

Heap after GC invocations=1 (full 1):
 par new generation   total 436928K, used 0K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 15089K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 26500K, used 15898K [0x00000000f0600000, 0x00000000f1fe1000, 0x0000000100000000)
}


{Heap before GC invocations=1 (full 1):
 par new generation   total 436928K, used 349567K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffc0, 0x00000000c5b60000)
  from space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 15089K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 38980K, used 38763K [0x00000000f0600000, 0x00000000f2c11000, 0x0000000100000000)
2018-12-12T10:40:11.307+0800: 11.736: 
[GC2018-12-12T10:40:11.307+0800: 11.737: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   24302336 bytes,   24302336 total
ParNewGC前使用349567K,GC后年轻代使用23818K,年轻代共(436928K)        整堆内存使用364657K,GC后使用38907K(整堆内存共961216K)
: 349567K->23818K(436928K), 0.0299900 secs]                             364657K->38907K(961216K), 0.0300700 secs] [Times: user=0.06 sys=0.01, real=0.03 secs] 
Heap after GC invocations=2 (full 1):
 par new generation   total 436928K, used 23818K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  27% used [0x00000000cb0b0000, 0x00000000cc7f2930, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 15089K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 38980K, used 38763K [0x00000000f0600000, 0x00000000f2c11000, 0x0000000100000000)
}

{Heap before GC invocations=2 (full 1):
 par new generation   total 436928K, used 373386K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff8, 0x00000000c5b60000)
  from space 87360K,  27% used [0x00000000cb0b0000, 0x00000000cc7f2930, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 15089K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 48196K, used 47963K [0x00000000f0600000, 0x00000000f3511000, 0x0000000100000000)
2018-12-12T10:40:19.164+0800: 19.593: [GC2018-12-12T10:40:19.164+0800: 19.593: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   22760688 bytes,   22760688 total
- age   2:   11241200 bytes,   34001888 total
此处age表示,经过1次MinorGC的对象存在22760688 B,年龄为2的对象 存在有11241200B,
- age   2:   11241200 bytes,   34001888 total 此处经过两次GC仍存活的对象表示有11241200 bytes,其中34001888 total表示,目前经过多次GC后仍存活对象的总和,
为34001888 B,此处则当然是经过一次GC的对象的大小22760688 bytes,加上经过两次GC的对象的大小11241200 bytes的总和,34001888 total,所以此处total 表示当前年轻代存活对象的
大小,需要注意的是:此处的对象大小单位为Bytes,而并非KB,1KB=1024Bytes(字节),另外对象晋升到老年代的年龄除了是超出所设置大小15的晋升外,当前年龄大小的总和超出
Survivor大小的一半是也会自动晋升,这个在美团之前的文章中也有做过介绍,也可以再参考下该文章:http://blog.sina.com.cn/s/blog_9ca9623b0102wbf0.html
日志的详解和区间也可以查看这里:https://blog.csdn.net/wanglha/article/details/48713217

: 373386K->38280K(436928K), 0.0434690 secs] 388475K->53370K(961216K), 0.0435590 secs] [Times: user=0.11 sys=0.01, real=0.05 secs] 
Heap after GC invocations=3 (full 1):
 par new generation   total 436928K, used 38280K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  43% used [0x00000000c5b60000, 0x00000000c80c2300, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 15089K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 48196K, used 47963K [0x00000000f0600000, 0x00000000f3511000, 0x0000000100000000)
}
{Heap before GC invocations=3 (full 1):
 par new generation   total 436928K, used 387848K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffe8, 0x00000000c5b60000)
  from space 87360K,  43% used [0x00000000c5b60000, 0x00000000c80c2300, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 15089K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 56452K, used 56200K [0x00000000f0600000, 0x00000000f3d21000, 0x0000000100000000)
2018-12-12T10:40:23.801+0800: 24.231: [GC2018-12-12T10:40:23.801+0800: 24.231: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   18089848 bytes,   18089848 total
- age   2:   19671128 bytes,   37760976 total
- age   3:   11014896 bytes,   48775872 total
: 387848K->56814K(436928K), 0.0412470 secs] 402938K->71903K(961216K), 0.0413360 secs] [Times: user=0.14 sys=0.01, real=0.04 secs] 
Heap after GC invocations=4 (full 1):
 par new generation   total 436928K, used 56814K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  65% used [0x00000000cb0b0000, 0x00000000ce82b8f0, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 15089K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 56452K, used 56200K [0x00000000f0600000, 0x00000000f3d21000, 0x0000000100000000)
}
{Heap before GC invocations=4 (full 1):
 par new generation   total 436928K, used 406382K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff8, 0x00000000c5b60000)
  from space 87360K,  65% used [0x00000000cb0b0000, 0x00000000ce82b8f0, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 15089K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 60292K, used 60179K [0x00000000f0600000, 0x00000000f40e1000, 0x0000000100000000)
2018-12-12T10:40:27.981+0800: 28.411: [GC2018-12-12T10:40:27.981+0800: 28.411: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   17421784 bytes,   17421784 total
- age   2:   12078544 bytes,   29500328 total
- age   3:   19659384 bytes,   49159712 total
- age   4:   10926168 bytes,   60085880 total
: 406382K->77878K(436928K), 0.0515530 secs] 421471K->92967K(961216K), 0.0516490 secs] [Times: user=0.18 sys=0.00, real=0.05 secs] 
Heap after GC invocations=5 (full 1):
 par new generation   total 436928K, used 77878K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  89% used [0x00000000c5b60000, 0x00000000ca76d8c8, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 15089K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 60292K, used 60179K [0x00000000f0600000, 0x00000000f40e1000, 0x0000000100000000)
}
{Heap before GC invocations=5 (full 1):
 par new generation   total 436928K, used 427446K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K, 100% used [0x00000000b0600000, 0x00000000c5b60000, 0x00000000c5b60000)
  from space 87360K,  89% used [0x00000000c5b60000, 0x00000000ca76d8c8, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 15089K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 62596K, used 62408K [0x00000000f0600000, 0x00000000f4321000, 0x0000000100000000)
2018-12-12T10:40:32.719+0800: 33.148: [GC2018-12-12T10:40:32.719+0800: 33.148: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   10204040 bytes,   10204040 total
- age   2:   15249336 bytes,   25453376 total
- age   3:   12051200 bytes,   37504576 total
- age   4:   19657064 bytes,   57161640 total
- age   5:   10901832 bytes,   68063472 total
: 427446K->87360K(436928K), 0.0570320 secs] 442535K->103373K(961216K), 0.0571320 secs] [Times: user=0.20 sys=0.00, real=0.06 secs] 
Heap after GC invocations=6 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 16013K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 62596K, used 62408K [0x00000000f0600000, 0x00000000f4321000, 0x0000000100000000)
}
{Heap before GC invocations=6 (full 1):
 par new generation   total 436928K, used 436927K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff8, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 16013K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 63940K, used 63869K [0x00000000f0600000, 0x00000000f4471000, 0x0000000100000000)
2018-12-12T10:40:35.580+0800: 36.010: [GC2018-12-12T10:40:35.580+0800: 36.010: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    9414160 bytes,    9414160 total
- age   2:    9774896 bytes,   19189056 total
- age   3:   15221864 bytes,   34410920 total
- age   4:   11998304 bytes,   46409224 total
- age   5:   19619400 bytes,   66028624 total
- age   6:   10490912 bytes,   76519536 total
: 436927K->87360K(436928K), 0.0629280 secs] 452941K->105279K(961216K), 0.0630170 secs] [Times: user=0.23 sys=0.00, real=0.06 secs] 
Heap after GC invocations=7 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 17919K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 63940K, used 63869K [0x00000000f0600000, 0x00000000f4471000, 0x0000000100000000)
}
{Heap before GC invocations=7 (full 1):
 par new generation   total 436928K, used 436927K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ff48, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 17919K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 66052K, used 65919K [0x00000000f0600000, 0x00000000f4681000, 0x0000000100000000)
2018-12-12T10:40:38.249+0800: 38.679: [GC2018-12-12T10:40:38.249+0800: 38.679: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    6742392 bytes,    6742392 total
- age   2:    6747072 bytes,   13489464 total
- age   3:    9483040 bytes,   22972504 total
- age   4:   14966120 bytes,   37938624 total
- age   5:   11872632 bytes,   49811256 total
- age   6:   19552440 bytes,   69363696 total
- age   7:   10073640 bytes,   79437336 total
: 436927K->87360K(436928K), 0.0808400 secs] 454847K->114114K(961216K), 0.0809630 secs] [Times: user=0.27 sys=0.00, real=0.09 secs] 
Heap after GC invocations=8 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 26754K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 66052K, used 65919K [0x00000000f0600000, 0x00000000f4681000, 0x0000000100000000)
}
{Heap before GC invocations=8 (full 1):
 par new generation   total 436928K, used 436927K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff8, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 26754K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 68164K, used 67936K [0x00000000f0600000, 0x00000000f4891000, 0x0000000100000000)
2018-12-12T10:40:40.817+0800: 41.246: [GC2018-12-12T10:40:40.817+0800: 41.246: [ParNew
Desired survivor size 80510976 bytes, new threshold 8 (max 15)
- age   1:   10110224 bytes,   10110224 total
- age   2:    6319880 bytes,   16430104 total
- age   3:    6154312 bytes,   22584416 total
- age   4:    9393488 bytes,   31977904 total
- age   5:   13462696 bytes,   45440600 total
- age   6:   11776656 bytes,   57217256 total
- age   7:   19482872 bytes,   76700128 total
- age   8:    8941768 bytes,   85641896 total
: 436927K->87360K(436928K), 0.1045270 secs] 463682K->120325K(961216K), 0.1046810 secs] [Times: user=0.30 sys=0.00, real=0.11 secs] 
Heap after GC invocations=9 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 32965K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 68164K, used 67936K [0x00000000f0600000, 0x00000000f4891000, 0x0000000100000000)
}
{Heap before GC invocations=9 (full 1):
 par new generation   total 436928K, used 436927K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffa8, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 32965K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 69700K, used 69448K [0x00000000f0600000, 0x00000000f4a11000, 0x0000000100000000)
2018-12-12T10:40:42.726+0800: 43.155: [GC2018-12-12T10:40:42.726+0800: 43.155: [ParNew
Desired survivor size 80510976 bytes, new threshold 8 (max 15)
- age   1:    9093024 bytes,    9093024 total
- age   2:    8701704 bytes,   17794728 total
- age   3:    5369152 bytes,   23163880 total
- age   4:    5907296 bytes,   29071176 total
- age   5:    9377248 bytes,   38448424 total
- age   6:   13436064 bytes,   51884488 total
- age   7:   11767696 bytes,   63652184 total
- age   8:   19479464 bytes,   83131648 total
: 436927K->87360K(436928K), 0.1003320 secs] 469893K->134753K(961216K), 0.1004750 secs] [Times: user=0.32 sys=0.00, real=0.10 secs] 
Heap after GC invocations=10 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 47393K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 69700K, used 69448K [0x00000000f0600000, 0x00000000f4a11000, 0x0000000100000000)
}
{Heap before GC invocations=10 (full 1):
 par new generation   total 436928K, used 436927K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffd8, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 47393K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 73732K, used 73653K [0x00000000f0600000, 0x00000000f4e01000, 0x0000000100000000)
2018-12-12T10:40:46.135+0800: 46.564: [GC2018-12-12T10:40:46.135+0800: 46.564: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   10105952 bytes,   10105952 total
- age   2:    8944872 bytes,   19050824 total
- age   3:    8701656 bytes,   27752480 total
- age   4:    5367520 bytes,   33120000 total
- age   5:    5907056 bytes,   39027056 total
- age   6:    9376688 bytes,   48403744 total
- age   7:   13435160 bytes,   61838904 total
- age   8:   11767288 bytes,   73606192 total
: 436927K->87360K(436928K), 0.1143450 secs] 484321K->158259K(961216K), 0.1144390 secs] [Times: user=0.31 sys=0.00, real=0.11 secs] 
Heap after GC invocations=11 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 70899K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 73732K, used 73653K [0x00000000f0600000, 0x00000000f4e01000, 0x0000000100000000)
}
{Heap before GC invocations=11 (full 1):
 par new generation   total 436928K, used 436927K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fe90, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 70899K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 88324K, used 88053K [0x00000000f0600000, 0x00000000f5c41000, 0x0000000100000000)
2018-12-12T10:40:52.837+0800: 53.267: [GC2018-12-12T10:40:52.837+0800: 53.267: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    8970024 bytes,    8970024 total
- age   2:    9451792 bytes,   18421816 total
- age   3:    8874432 bytes,   27296248 total
- age   4:    8696616 bytes,   35992864 total
- age   5:    5355840 bytes,   41348704 total
- age   6:    5873976 bytes,   47222680 total
- age   7:    9033768 bytes,   56256448 total
- age   8:   12938040 bytes,   69194488 total
- age   9:   11259088 bytes,   80453576 total
: 436927K->87360K(436928K), 0.0810000 secs] 507827K->174469K(961216K), 0.0811010 secs] [Times: user=0.27 sys=0.00, real=0.08 secs] 
Heap after GC invocations=12 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 87109K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 88324K, used 88053K [0x00000000f0600000, 0x00000000f5c41000, 0x0000000100000000)
}
{Heap before GC invocations=12 (full 1):
 par new generation   total 436928K, used 436927K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ff88, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 87109K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 103300K, used 103116K [0x00000000f0600000, 0x00000000f6ae1000, 0x0000000100000000)
2018-12-12T10:40:59.120+0800: 59.549: [GC2018-12-12T10:40:59.120+0800: 59.549: [ParNew
Desired survivor size 80510976 bytes, new threshold 10 (max 15)
- age   1:    7462224 bytes,    7462224 total
- age   2:    8399696 bytes,   15861920 total
- age   3:    9207256 bytes,   25069176 total
- age   4:    8682520 bytes,   33751696 total
- age   5:    8578760 bytes,   42330456 total
- age   6:    5242576 bytes,   47573032 total
- age   7:    5748056 bytes,   53321088 total
- age   8:    8595576 bytes,   61916664 total
- age   9:   12139504 bytes,   74056168 total
- age  10:   10776344 bytes,   84832512 total
: 436927K->87360K(436928K), 0.0906220 secs] 524037K->194460K(961216K), 0.0907210 secs] [Times: user=0.28 sys=0.00, real=0.09 secs] 
Heap after GC invocations=13 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 107100K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 103300K, used 103116K [0x00000000f0600000, 0x00000000f6ae1000, 0x0000000100000000)
}
{Heap before GC invocations=13 (full 1):
 par new generation   total 436928K, used 436927K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffc0, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 107100K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 107524K, used 107221K [0x00000000f0600000, 0x00000000f6f01000, 0x0000000100000000)
2018-12-12T10:41:03.229+0800: 63.658: [GC2018-12-12T10:41:03.229+0800: 63.658: [ParNew
Desired survivor size 80510976 bytes, new threshold 10 (max 15)
- age   1:   10493328 bytes,   10493328 total
- age   2:    6756112 bytes,   17249440 total
- age   3:    8215104 bytes,   25464544 total
- age   4:    9113008 bytes,   34577552 total
- age   5:    8665728 bytes,   43243280 total
- age   6:    8534240 bytes,   51777520 total
- age   7:    5216440 bytes,   56993960 total
- age   8:    5742216 bytes,   62736176 total
- age   9:    8286880 bytes,   71023056 total
- age  10:   11716424 bytes,   82739480 total
: 436927K->87360K(436928K), 0.1135080 secs] 544028K->213485K(961216K), 0.1136420 secs] [Times: user=0.35 sys=0.00, real=0.11 secs] 
Heap after GC invocations=14 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 126125K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 107524K, used 107221K [0x00000000f0600000, 0x00000000f6f01000, 0x0000000100000000)
}
{Heap before GC invocations=14 (full 1):
 par new generation   total 436928K, used 436927K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffb8, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 126125K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 110404K, used 110115K [0x00000000f0600000, 0x00000000f71d1000, 0x0000000100000000)
2018-12-12T10:41:11.389+0800: 71.818: [GC2018-12-12T10:41:11.389+0800: 71.819: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    9181488 bytes,    9181488 total
- age   2:   10069464 bytes,   19250952 total
- age   3:    6711560 bytes,   25962512 total
- age   4:    8212000 bytes,   34174512 total
- age   5:    8967328 bytes,   43141840 total
- age   6:    8415088 bytes,   51556928 total
- age   7:    8526792 bytes,   60083720 total
- age   8:    5093552 bytes,   65177272 total
- age   9:    5721704 bytes,   70898976 total
- age  10:    8248800 bytes,   79147776 total
: 436927K->87360K(436928K), 0.0981120 secs] 563053K->227928K(961216K), 0.0982050 secs] [Times: user=0.33 sys=0.00, real=0.10 secs] 
Heap after GC invocations=15 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 140568K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 110404K, used 110115K [0x00000000f0600000, 0x00000000f71d1000, 0x0000000100000000)
}
{Heap before GC invocations=15 (full 1):
 par new generation   total 436928K, used 436927K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffd0, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 140568K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 112324K, used 112189K [0x00000000f0600000, 0x00000000f73b1000, 0x0000000100000000)
2018-12-12T10:41:13.491+0800: 73.920: [GC2018-12-12T10:41:13.491+0800: 73.920: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    8695608 bytes,    8695608 total
- age   2:    8995904 bytes,   17691512 total
- age   3:    9943704 bytes,   27635216 total
- age   4:    6527744 bytes,   34162960 total
- age   5:    7712592 bytes,   41875552 total
- age   6:    5989640 bytes,   47865192 total
- age   7:    6924992 bytes,   54790184 total
- age   8:    7678424 bytes,   62468608 total
- age   9:    4450968 bytes,   66919576 total
- age  10:    5206240 bytes,   72125816 total
- age  11:    8074760 bytes,   80200576 total
: 436927K->87360K(436928K), 0.1093290 secs] 577496K->242884K(961216K), 0.1094200 secs] [Times: user=0.31 sys=0.00, real=0.11 secs] 
Heap after GC invocations=16 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 155524K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 112324K, used 112189K [0x00000000f0600000, 0x00000000f73b1000, 0x0000000100000000)
}
{Heap before GC invocations=16 (full 1):
 par new generation   total 436928K, used 436927K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffa8, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 155524K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 113668K, used 113452K [0x00000000f0600000, 0x00000000f7501000, 0x0000000100000000)
2018-12-12T10:41:17.793+0800: 78.222: [GC2018-12-12T10:41:17.793+0800: 78.223: [ParNew
Desired survivor size 80510976 bytes, new threshold 12 (max 15)
- age   1:    8306168 bytes,    8306168 total
- age   2:    6844624 bytes,   15150792 total
- age   3:    8677208 bytes,   23828000 total
- age   4:    8609696 bytes,   32437696 total
- age   5:    6427496 bytes,   38865192 total
- age   6:    7654192 bytes,   46519384 total
- age   7:    5893192 bytes,   52412576 total
- age   8:    6894208 bytes,   59306784 total
- age   9:    7289136 bytes,   66595920 total
- age  10:    3736296 bytes,   70332216 total
- age  11:    5093944 bytes,   75426160 total
- age  12:    7785920 bytes,   83212080 total
: 436927K->87360K(436928K), 0.0918800 secs] 592452K->250815K(961216K), 0.0919890 secs] [Times: user=0.32 sys=0.00, real=0.09 secs] 
Heap after GC invocations=17 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 163455K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 113668K, used 113452K [0x00000000f0600000, 0x00000000f7501000, 0x0000000100000000)
}
{Heap before GC invocations=17 (full 1):
 par new generation   total 436928K, used 436927K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff8, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 163455K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 115588K, used 115336K [0x00000000f0600000, 0x00000000f76e1000, 0x0000000100000000)
2018-12-12T10:41:20.217+0800: 80.646: [GC2018-12-12T10:41:20.217+0800: 80.646: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    7470168 bytes,    7470168 total
- age   2:    6244584 bytes,   13714752 total
- age   3:    5966840 bytes,   19681592 total
- age   4:    7880000 bytes,   27561592 total
- age   5:    7721256 bytes,   35282848 total
- age   6:    6120600 bytes,   41403448 total
- age   7:    6596352 bytes,   47999800 total
- age   8:    5874904 bytes,   53874704 total
- age   9:    6890248 bytes,   60764952 total
- age  10:    7285088 bytes,   68050040 total
- age  11:    3611008 bytes,   71661048 total
- age  12:    5027120 bytes,   76688168 total
: 436927K->87360K(436928K), 0.1266310 secs] 600383K->268852K(961216K), 0.1268050 secs] [Times: user=0.36 sys=0.00, real=0.12 secs] 
Heap after GC invocations=18 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 181492K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 115588K, used 115336K [0x00000000f0600000, 0x00000000f76e1000, 0x0000000100000000)
}
{Heap before GC invocations=18 (full 1):
 par new generation   total 436928K, used 436927K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff0, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 181492K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 130948K, used 130749K [0x00000000f0600000, 0x00000000f85e1000, 0x0000000100000000)
2018-12-12T10:42:48.694+0800: 169.123: [GC2018-12-12T10:42:48.694+0800: 169.123: [ParNew
Desired survivor size 80510976 bytes, new threshold 13 (max 15)
- age   1:   13661560 bytes,   13661560 total
- age   2:    6588504 bytes,   20250064 total
- age   3:    5555632 bytes,   25805696 total
- age   4:    5285600 bytes,   31091296 total
- age   5:    6998936 bytes,   38090232 total
- age   6:    7359104 bytes,   45449336 total
- age   7:    5795664 bytes,   51245000 total
- age   8:    6434320 bytes,   57679320 total
- age   9:    5261592 bytes,   62940912 total
- age  10:    4975048 bytes,   67915960 total
- age  11:    5997352 bytes,   73913312 total
- age  12:    3357176 bytes,   77270488 total
- age  13:    4835024 bytes,   82105512 total
: 436927K->87360K(436928K), 0.1295970 secs] 618420K->288961K(961216K), 0.1297160 secs] [Times: user=0.39 sys=0.00, real=0.13 secs] 
Heap after GC invocations=19 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 201601K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 130948K, used 130749K [0x00000000f0600000, 0x00000000f85e1000, 0x0000000100000000)
}
{Heap before GC invocations=19 (full 1):
 par new generation   total 436928K, used 436887K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b55e90, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 201601K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 133636K, used 133434K [0x00000000f0600000, 0x00000000f8881000, 0x0000000100000000)
2018-12-12T10:42:51.691+0800: 172.120: [GC2018-12-12T10:42:51.691+0800: 172.120: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    4894944 bytes,    4894944 total
- age   2:   12502872 bytes,   17397816 total
- age   3:    6222744 bytes,   23620560 total
- age   4:    5344184 bytes,   28964744 total
- age   5:    5283440 bytes,   34248184 total
- age   6:    6023776 bytes,   40271960 total
- age   7:    7348968 bytes,   47620928 total
- age   8:    5758784 bytes,   53379712 total
- age   9:    6330608 bytes,   59710320 total
- age  10:    5161552 bytes,   64871872 total
- age  11:    4934728 bytes,   69806600 total
- age  12:    5258848 bytes,   75065448 total
- age  13:    3013656 bytes,   78079104 total
: 436887K->87360K(436928K), 0.1100920 secs] 638489K->299972K(961216K), 0.1101900 secs] [Times: user=0.32 sys=0.00, real=0.11 secs] 
Heap after GC invocations=20 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 212612K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 133636K, used 133434K [0x00000000f0600000, 0x00000000f8881000, 0x0000000100000000)
}
{Heap before GC invocations=20 (full 1):
 par new generation   total 436928K, used 436927K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffd8, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 212612K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 139204K, used 138913K [0x00000000f0600000, 0x00000000f8df1000, 0x0000000100000000)
2018-12-12T11:00:07.745+0800: 1208.174: [GC2018-12-12T11:00:07.745+0800: 1208.174: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    3404944 bytes,    3404944 total
- age   2:    3969744 bytes,    7374688 total
- age   3:   12354440 bytes,   19729128 total
- age   4:    6106352 bytes,   25835480 total
- age   5:    5128944 bytes,   30964424 total
- age   6:    5172552 bytes,   36136976 total
- age   7:    5887312 bytes,   42024288 total
- age   8:    7252872 bytes,   49277160 total
- age   9:    5658184 bytes,   54935344 total
- age  10:    6325272 bytes,   61260616 total
- age  11:    5145728 bytes,   66406344 total
- age  12:    4906976 bytes,   71313320 total
- age  13:    5233448 bytes,   76546768 total
- age  14:    2849144 bytes,   79395912 total
: 436927K->87360K(436928K), 0.0812660 secs] 649540K->308195K(961216K), 0.0813840 secs] [Times: user=0.30 sys=0.01, real=0.08 secs] 
Heap after GC invocations=21 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 220835K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 139204K, used 138913K [0x00000000f0600000, 0x00000000f8df1000, 0x0000000100000000)
}
{Heap before GC invocations=21 (full 1):
 par new generation   total 436928K, used 436928K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K, 100% used [0x00000000b0600000, 0x00000000c5b60000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 220835K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 140932K, used 140666K [0x00000000f0600000, 0x00000000f8fa1000, 0x0000000100000000)
2018-12-12T11:03:00.002+0800: 1380.431: [GC2018-12-12T11:03:00.002+0800: 1380.431: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    7159224 bytes,    7159224 total
- age   2:    2674272 bytes,    9833496 total
- age   3:    3686080 bytes,   13519576 total
- age   4:   11955592 bytes,   25475168 total
- age   5:    5348160 bytes,   30823328 total
- age   6:    4503120 bytes,   35326448 total
- age   7:    4645048 bytes,   39971496 total
- age   8:    4951080 bytes,   44922576 total
- age   9:    6843712 bytes,   51766288 total
- age  10:    5193560 bytes,   56959848 total
- age  11:    5890176 bytes,   62850024 total
- age  12:    4661408 bytes,   67511432 total
- age  13:    4090808 bytes,   71602240 total
- age  14:    4240744 bytes,   75842984 total
- age  15:    2302296 bytes,   78145280 total
: 436928K->87360K(436928K), 0.1114000 secs] 657763K->315346K(961216K), 0.1115120 secs] [Times: user=0.36 sys=0.00, real=0.11 secs] 
Heap after GC invocations=22 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 227986K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 140932K, used 140666K [0x00000000f0600000, 0x00000000f8fa1000, 0x0000000100000000)
}
{Heap before GC invocations=22 (full 1):
 par new generation   total 436928K, used 436927K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffe0, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 227986K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 141700K, used 141504K [0x00000000f0600000, 0x00000000f9061000, 0x0000000100000000)
2018-12-12T11:03:42.902+0800: 1423.331: [GC2018-12-12T11:03:42.902+0800: 1423.331: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    2744168 bytes,    2744168 total
- age   2:    6551872 bytes,    9296040 total
- age   3:    2565368 bytes,   11861408 total
- age   4:    3304448 bytes,   15165856 total
- age   5:   11668208 bytes,   26834064 total
- age   6:    4932480 bytes,   31766544 total
- age   7:    4414480 bytes,   36181024 total
- age   8:    3223200 bytes,   39404224 total
- age   9:    4846576 bytes,   44250800 total
- age  10:    6803328 bytes,   51054128 total
- age  11:    4970536 bytes,   56024664 total
- age  12:    5875016 bytes,   61899680 total
- age  13:    4580248 bytes,   66479928 total
- age  14:    3846096 bytes,   70326024 total
- age  15:    3971840 bytes,   74297864 total
: 436927K->87360K(436928K), 0.0878410 secs] 664914K->322464K(961216K), 0.0879760 secs] [Times: user=0.29 sys=0.00, real=0.09 secs] 
Heap after GC invocations=23 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 235104K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 141700K, used 141504K [0x00000000f0600000, 0x00000000f9061000, 0x0000000100000000)
}
{Heap before GC invocations=23 (full 1):
 par new generation   total 436928K, used 436928K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K, 100% used [0x00000000b0600000, 0x00000000c5b60000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 235104K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 141892K, used 141742K [0x00000000f0600000, 0x00000000f9091000, 0x0000000100000000)
2018-12-12T11:20:02.890+0800: 2403.319: [GC2018-12-12T11:20:02.890+0800: 2403.319: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    4904360 bytes,    4904360 total
- age   2:    2408456 bytes,    7312816 total
- age   3:    6535584 bytes,   13848400 total
- age   4:    2530064 bytes,   16378464 total
- age   5:    3290392 bytes,   19668856 total
- age   6:    8796544 bytes,   28465400 total
- age   7:    4930640 bytes,   33396040 total
- age   8:    4413856 bytes,   37809896 total
- age   9:    3223032 bytes,   41032928 total
- age  10:    4846408 bytes,   45879336 total
- age  11:    6802408 bytes,   52681744 total
- age  12:    4970144 bytes,   57651888 total
- age  13:    5875016 bytes,   63526904 total
- age  14:    4579768 bytes,   68106672 total
- age  15:    3846096 bytes,   71952768 total
: 436928K->87360K(436928K), 0.0728610 secs] 672032K->326579K(961216K), 0.0729930 secs] [Times: user=0.27 sys=0.00, real=0.07 secs] 
Heap after GC invocations=24 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 239219K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 141892K, used 141742K [0x00000000f0600000, 0x00000000f9091000, 0x0000000100000000)
}
{Heap before GC invocations=24 (full 1):
 par new generation   total 436928K, used 436928K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K, 100% used [0x00000000b0600000, 0x00000000c5b60000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 239219K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 142084K, used 141850K [0x00000000f0600000, 0x00000000f90c1000, 0x0000000100000000)
2018-12-12T11:20:18.419+0800: 2418.849: [GC2018-12-12T11:20:18.419+0800: 2418.849: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    7311912 bytes,    7311912 total
- age   2:    1708936 bytes,    9020848 total
- age   3:    1929040 bytes,   10949888 total
- age   4:    6250856 bytes,   17200744 total
- age   5:    2520296 bytes,   19721040 total
- age   6:    3260928 bytes,   22981968 total
- age   7:    8769360 bytes,   31751328 total
- age   8:    4929312 bytes,   36680640 total
- age   9:    4412232 bytes,   41092872 total
- age  10:    3221008 bytes,   44313880 total
- age  11:    4843656 bytes,   49157536 total
- age  12:    6795896 bytes,   55953432 total
- age  13:    4968224 bytes,   60921656 total
- age  14:    5865280 bytes,   66786936 total
- age  15:    4528800 bytes,   71315736 total
: 436928K->87360K(436928K), 0.0828010 secs] 676147K->331909K(961216K), 0.0829430 secs] [Times: user=0.28 sys=0.00, real=0.09 secs] 
Heap after GC invocations=25 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 244549K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 142084K, used 141850K [0x00000000f0600000, 0x00000000f90c1000, 0x0000000100000000)
}
{Heap before GC invocations=25 (full 1):
 par new generation   total 436928K, used 436927K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff0, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 244549K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 142276K, used 142050K [0x00000000f0600000, 0x00000000f90f1000, 0x0000000100000000)
2018-12-12T11:24:25.675+0800: 2666.105: [GC2018-12-12T11:24:25.675+0800: 2666.105: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    4839744 bytes,    4839744 total
- age   2:    4852152 bytes,    9691896 total
- age   3:    1597200 bytes,   11289096 total
- age   4:    1916464 bytes,   13205560 total
- age   5:    6250776 bytes,   19456336 total
- age   6:    2519928 bytes,   21976264 total
- age   7:    3254448 bytes,   25230712 total
- age   8:    8759608 bytes,   33990320 total
- age   9:    4928920 bytes,   38919240 total
- age  10:    4412120 bytes,   43331360 total
- age  11:    3220800 bytes,   46552160 total
- age  12:    4843416 bytes,   51395576 total
- age  13:    6795896 bytes,   58191472 total
- age  14:    4968224 bytes,   63159696 total
- age  15:    5865280 bytes,   69024976 total
: 436927K->87360K(436928K), 0.0638650 secs] 681477K->336530K(961216K), 0.0639770 secs] [Times: user=0.24 sys=0.01, real=0.07 secs] 
Heap after GC invocations=26 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 249170K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 142276K, used 142050K [0x00000000f0600000, 0x00000000f90f1000, 0x0000000100000000)
}
{Heap before GC invocations=26 (full 1):
 par new generation   total 436928K, used 436927K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffd8, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 249170K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 142276K, used 142105K [0x00000000f0600000, 0x00000000f90f1000, 0x0000000100000000)
2018-12-12T11:25:05.158+0800: 2705.587: [GC2018-12-12T11:25:05.158+0800: 2705.587: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    3561608 bytes,    3561608 total
- age   2:    1888272 bytes,    5449880 total
- age   3:    4779416 bytes,   10229296 total
- age   4:    1518056 bytes,   11747352 total
- age   5:    1915624 bytes,   13662976 total
- age   6:    6247696 bytes,   19910672 total
- age   7:    2519928 bytes,   22430600 total
- age   8:    3015952 bytes,   25446552 total
- age   9:    8759544 bytes,   34206096 total
- age  10:    4928920 bytes,   39135016 total
- age  11:    4412120 bytes,   43547136 total
- age  12:    3220800 bytes,   46767936 total
- age  13:    4843416 bytes,   51611352 total
- age  14:    6795896 bytes,   58407248 total
- age  15:    4968224 bytes,   63375472 total
: 436927K->85606K(436928K), 0.0761180 secs] 686098K->340564K(961216K), 0.0762490 secs] [Times: user=0.22 sys=0.00, real=0.07 secs] 
Heap after GC invocations=27 (full 1):
 par new generation   total 436928K, used 85606K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  97% used [0x00000000c5b60000, 0x00000000caef9870, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 254958K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 142276K, used 142105K [0x00000000f0600000, 0x00000000f90f1000, 0x0000000100000000)
}
{Heap before GC invocations=27 (full 1):
 par new generation   total 436928K, used 434179K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5a67570, 0x00000000c5b60000)
  from space 87360K,  97% used [0x00000000c5b60000, 0x00000000caef9870, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 254958K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 142276K, used 142147K [0x00000000f0600000, 0x00000000f90f1000, 0x0000000100000000)
2018-12-12T11:25:18.758+0800: 2719.187: [GC2018-12-12T11:25:18.758+0800: 2719.188: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    1531984 bytes,    1531984 total
- age   2:    1077904 bytes,    2609888 total
- age   3:    1872848 bytes,    4482736 total
- age   4:    4584464 bytes,    9067200 total
- age   5:    1490824 bytes,   10558024 total
- age   6:    1908416 bytes,   12466440 total
- age   7:    6237560 bytes,   18704000 total
- age   8:    2519928 bytes,   21223928 total
- age   9:    3007360 bytes,   24231288 total
- age  10:    8759544 bytes,   32990832 total
- age  11:    4928920 bytes,   37919752 total
- age  12:    4412120 bytes,   42331872 total
- age  13:    3220800 bytes,   45552672 total
- age  14:    4843416 bytes,   50396088 total
- age  15:    6795896 bytes,   57191984 total
: 434179K->67849K(436928K), 0.0704080 secs] 689137K->327778K(961216K), 0.0705230 secs] [Times: user=0.22 sys=0.00, real=0.07 secs] 
Heap after GC invocations=28 (full 1):
 par new generation   total 436928K, used 67849K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  77% used [0x00000000cb0b0000, 0x00000000cf2f2648, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 259929K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 142276K, used 142147K [0x00000000f0600000, 0x00000000f90f1000, 0x0000000100000000)
}
{Heap before GC invocations=28 (full 1):
 par new generation   total 436928K, used 417417K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K, 100% used [0x00000000b0600000, 0x00000000c5b60000, 0x00000000c5b60000)
  from space 87360K,  77% used [0x00000000cb0b0000, 0x00000000cf2f2648, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 259929K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 142660K, used 142433K [0x00000000f0600000, 0x00000000f9151000, 0x0000000100000000)
2018-12-12T11:25:41.458+0800: 2741.888: [GC2018-12-12T11:25:41.459+0800: 2741.888: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   11086016 bytes,   11086016 total
- age   2:     238112 bytes,   11324128 total
- age   3:    1058528 bytes,   12382656 total
- age   4:    1835952 bytes,   14218608 total
- age   5:    4529072 bytes,   18747680 total
- age   6:    1489640 bytes,   20237320 total
- age   7:    1908080 bytes,   22145400 total
- age   8:    6237560 bytes,   28382960 total
- age   9:    2519928 bytes,   30902888 total
- age  10:    3006960 bytes,   33909848 total
- age  11:    8756872 bytes,   42666720 total
- age  12:    4924208 bytes,   47590928 total
- age  13:    4411696 bytes,   52002624 total
- age  14:    3220800 bytes,   55223424 total
- age  15:    4843008 bytes,   60066432 total
: 417417K->87360K(436928K), 0.0575970 secs] 677346K->354379K(961216K), 0.0577290 secs] [Times: user=0.20 sys=0.01, real=0.06 secs] 
Heap after GC invocations=29 (full 1):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 267019K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 142660K, used 142433K [0x00000000f0600000, 0x00000000f9151000, 0x0000000100000000)
}
2018-12-12T11:25:41.517+0800: 2741.946: [GC [1 CMS-initial-mark: 267019K(524288K)] 354382K(961216K), 0.0575880 secs] [Times: user=0.06 sys=0.00, real=0.06 secs] 
2018-12-12T11:25:41.575+0800: 2742.004: [CMS-concurrent-mark-start]
2018-12-12T11:25:41.938+0800: 2742.367: [CMS-concurrent-mark: 0.359/0.363 secs] [Times: user=0.53 sys=0.00, real=0.36 secs] 
2018-12-12T11:25:41.938+0800: 2742.367: [CMS-concurrent-preclean-start]
2018-12-12T11:25:41.940+0800: 2742.370: [CMS-concurrent-preclean: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs] 
2018-12-12T11:25:41.940+0800: 2742.370: [CMS-concurrent-abortable-preclean-start]
 CMS: abort preclean due to time 2018-12-12T11:25:47.085+0800: 2747.515: [CMS-concurrent-abortable-preclean: 4.445/5.145 secs] [Times: user=4.96 sys=0.01, real=5.15 secs] 
2018-12-12T11:25:47.086+0800: 2747.516: [GC[YG occupancy: 166901 K (436928 K)]{Heap before GC invocations=29 (full 2):
 par new generation   total 436928K, used 166901K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  22% used [0x00000000b0600000, 0x00000000b53ad610, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 267019K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 142852K, used 142538K [0x00000000f0600000, 0x00000000f9181000, 0x0000000100000000)
2018-12-12T11:25:47.086+0800: 2747.516: [GC2018-12-12T11:25:47.086+0800: 2747.516: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:     290440 bytes,     290440 total
- age   2:     329584 bytes,     620024 total
- age   3:     212536 bytes,     832560 total
- age   4:    1039256 bytes,    1871816 total
- age   5:    1835232 bytes,    3707048 total
- age   6:    4526992 bytes,    8234040 total
- age   7:    1489600 bytes,    9723640 total
- age   8:    1904584 bytes,   11628224 total
- age   9:    6237560 bytes,   17865784 total
- age  10:    2519928 bytes,   20385712 total
- age  11:    3006960 bytes,   23392672 total
- age  12:    8756848 bytes,   32149520 total
- age  13:    4924208 bytes,   37073728 total
- age  14:    4411696 bytes,   41485424 total
- age  15:    3220800 bytes,   44706224 total
: 166901K->60507K(436928K), 0.0495810 secs] 433920K->332357K(961216K), 0.0496580 secs] [Times: user=0.16 sys=0.01, real=0.05 secs] 
Heap after GC invocations=30 (full 2):
 par new generation   total 436928K, used 60507K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  69% used [0x00000000cb0b0000, 0x00000000cebc6fe8, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 271849K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 142852K, used 142538K [0x00000000f0600000, 0x00000000f9181000, 0x0000000100000000)
}
2018-12-12T11:25:47.136+0800: 2747.565: [Rescan (parallel) , 0.0269470 secs]2018-12-12T11:25:47.163+0800: 2747.592: [weak refs processing, 0.0019120 secs]2018-12-12T11:25:47.165+0800: 2747.594: [scrub string table, 0.0020960 secs] [1 CMS-remark: 271849K(524288K)] 332357K(961216K), 0.0811980 secs] [Times: user=0.25 sys=0.01, real=0.08 secs] 
2018-12-12T11:25:47.167+0800: 2747.597: [CMS-concurrent-sweep-start]
2018-12-12T11:25:47.279+0800: 2747.708: [CMS-concurrent-sweep: 0.111/0.111 secs] [Times: user=0.11 sys=0.00, real=0.11 secs] 
2018-12-12T11:25:47.279+0800: 2747.708: [CMS-concurrent-reset-start]
2018-12-12T11:25:47.281+0800: 2747.710: [CMS-concurrent-reset: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs] 
{Heap before GC invocations=30 (full 2):
 par new generation   total 436928K, used 410074K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fba8, 0x00000000c5b60000)
  from space 87360K,  69% used [0x00000000cb0b0000, 0x00000000cebc6fe8, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 168650K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237568K, used 143530K [0x00000000f0600000, 0x00000000fee00000, 0x0000000100000000)
2018-12-12T11:26:26.916+0800: 2787.346: [GC2018-12-12T11:26:26.916+0800: 2787.346: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   14370016 bytes,   14370016 total
- age   2:     189936 bytes,   14559952 total
- age   3:     247432 bytes,   14807384 total
- age   4:     187720 bytes,   14995104 total
- age   5:    1027736 bytes,   16022840 total
- age   6:    1789616 bytes,   17812456 total
- age   7:    4495072 bytes,   22307528 total
- age   8:    1430616 bytes,   23738144 total
- age   9:    1888248 bytes,   25626392 total
- age  10:    6229920 bytes,   31856312 total
- age  11:    2509648 bytes,   34365960 total
- age  12:    2997200 bytes,   37363160 total
- age  13:    8752000 bytes,   46115160 total
- age  14:    4924208 bytes,   51039368 total
- age  15:    4411696 bytes,   55451064 total
: 410074K->72284K(436928K), 0.0515810 secs] 578725K->244140K(961216K), 0.0517160 secs] [Times: user=0.19 sys=0.00, real=0.06 secs] 
Heap after GC invocations=31 (full 2):
 par new generation   total 436928K, used 72284K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  82% used [0x00000000c5b60000, 0x00000000ca1f70b0, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 171856K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237568K, used 143530K [0x00000000f0600000, 0x00000000fee00000, 0x0000000100000000)
}
{Heap before GC invocations=31 (full 2):
 par new generation   total 436928K, used 421851K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ff00, 0x00000000c5b60000)
  from space 87360K,  82% used [0x00000000c5b60000, 0x00000000ca1f70b0, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 171856K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237568K, used 143805K [0x00000000f0600000, 0x00000000fee00000, 0x0000000100000000)
2018-12-12T11:28:15.306+0800: 2895.736: [GC2018-12-12T11:28:15.306+0800: 2895.736: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    7955184 bytes,    7955184 total
- age   2:    1781656 bytes,    9736840 total
- age   3:     155640 bytes,    9892480 total
- age   4:     208040 bytes,   10100520 total
- age   5:     178264 bytes,   10278784 total
- age   6:    1010248 bytes,   11289032 total
- age   7:    1780824 bytes,   13069856 total
- age   8:    4481424 bytes,   17551280 total
- age   9:    1417640 bytes,   18968920 total
- age  10:    1881400 bytes,   20850320 total
- age  11:    6229592 bytes,   27079912 total
- age  12:    2509648 bytes,   29589560 total
- age  13:    2997168 bytes,   32586728 total
- age  14:    8750440 bytes,   41337168 total
- age  15:    4924256 bytes,   46261424 total
: 421851K->50605K(436928K), 0.0439220 secs] 593708K->226848K(961216K), 0.0440660 secs] [Times: user=0.16 sys=0.00, real=0.04 secs] 
Heap after GC invocations=32 (full 2):
 par new generation   total 436928K, used 50605K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  57% used [0x00000000cb0b0000, 0x00000000ce21b638, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 176242K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237568K, used 143805K [0x00000000f0600000, 0x00000000fee00000, 0x0000000100000000)
}
{Heap before GC invocations=32 (full 2):
 par new generation   total 436928K, used 400173K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff8, 0x00000000c5b60000)
  from space 87360K,  57% used [0x00000000cb0b0000, 0x00000000ce21b638, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 176242K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237568K, used 144024K [0x00000000f0600000, 0x00000000fee00000, 0x0000000100000000)
2018-12-12T11:41:18.555+0800: 3678.984: [GC2018-12-12T11:41:18.555+0800: 3678.984: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    5964008 bytes,    5964008 total
- age   2:    1523376 bytes,    7487384 total
- age   3:    1750784 bytes,    9238168 total
- age   4:     135472 bytes,    9373640 total
- age   5:     205656 bytes,    9579296 total
- age   6:     128040 bytes,    9707336 total
- age   7:     512392 bytes,   10219728 total
- age   8:    1722760 bytes,   11942488 total
- age   9:    4160920 bytes,   16103408 total
- age  10:    1396880 bytes,   17500288 total
- age  11:    1880976 bytes,   19381264 total
- age  12:    6229048 bytes,   25610312 total
- age  13:    2508760 bytes,   28119072 total
- age  14:    2992352 bytes,   31111424 total
- age  15:    8749760 bytes,   39861184 total
: 400173K->60374K(436928K), 0.0414680 secs] 576416K->241535K(961216K), 0.0416150 secs] [Times: user=0.15 sys=0.00, real=0.04 secs] 
Heap after GC invocations=33 (full 2):
 par new generation   total 436928K, used 60374K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  69% used [0x00000000c5b60000, 0x00000000c9655b88, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 181160K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237568K, used 144024K [0x00000000f0600000, 0x00000000fee00000, 0x0000000100000000)
}
{Heap before GC invocations=33 (full 2):
 par new generation   total 436928K, used 409942K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff8, 0x00000000c5b60000)
  from space 87360K,  69% used [0x00000000c5b60000, 0x00000000c9655b88, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 181160K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237568K, used 144097K [0x00000000f0600000, 0x00000000fee00000, 0x0000000100000000)
2018-12-12T11:47:12.340+0800: 4032.770: [GC2018-12-12T11:47:12.340+0800: 4032.770: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:     920968 bytes,     920968 total
- age   2:    1814688 bytes,    2735656 total
- age   3:    1351168 bytes,    4086824 total
- age   4:    1738432 bytes,    5825256 total
- age   5:     123880 bytes,    5949136 total
- age   6:     159528 bytes,    6108664 total
- age   7:     124616 bytes,    6233280 total
- age   8:     503144 bytes,    6736424 total
- age   9:    1695032 bytes,    8431456 total
- age  10:    4112384 bytes,   12543840 total
- age  11:    1392664 bytes,   13936504 total
- age  12:    1863008 bytes,   15799512 total
- age  13:    6229048 bytes,   22028560 total
- age  14:    2504536 bytes,   24533096 total
- age  15:    2985360 bytes,   27518456 total
: 409942K->34551K(436928K), 0.0349570 secs] 591103K->224397K(961216K), 0.0350830 secs] [Times: user=0.13 sys=0.00, real=0.03 secs] 
Heap after GC invocations=34 (full 2):
 par new generation   total 436928K, used 34551K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  39% used [0x00000000cb0b0000, 0x00000000cd26ddd0, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 189846K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237568K, used 144097K [0x00000000f0600000, 0x00000000fee00000, 0x0000000100000000)
}
{Heap before GC invocations=34 (full 2):
 par new generation   total 436928K, used 384119K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffe8, 0x00000000c5b60000)
  from space 87360K,  39% used [0x00000000cb0b0000, 0x00000000cd26ddd0, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 189846K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237568K, used 144153K [0x00000000f0600000, 0x00000000fee00000, 0x0000000100000000)
2018-12-12T11:58:30.344+0800: 4710.773: [GC2018-12-12T11:58:30.344+0800: 4710.773: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   17370728 bytes,   17370728 total
- age   2:     384320 bytes,   17755048 total
- age   3:    1738960 bytes,   19494008 total
- age   4:    1331536 bytes,   20825544 total
- age   5:    1735896 bytes,   22561440 total
- age   6:     119320 bytes,   22680760 total
- age   7:     156144 bytes,   22836904 total
- age   8:     124520 bytes,   22961424 total
- age   9:     502408 bytes,   23463832 total
- age  10:    1691032 bytes,   25154864 total
- age  11:    4101200 bytes,   29256064 total
- age  12:    1379504 bytes,   30635568 total
- age  13:    1855088 bytes,   32490656 total
- age  14:    6229048 bytes,   38719704 total
- age  15:    2498552 bytes,   41218256 total
: 384119K->47261K(436928K), 0.0320060 secs] 573965K->240080K(961216K), 0.0321280 secs] [Times: user=0.11 sys=0.00, real=0.03 secs] 
Heap after GC invocations=35 (full 2):
 par new generation   total 436928K, used 47261K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  54% used [0x00000000c5b60000, 0x00000000c8987720, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 192818K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237568K, used 144153K [0x00000000f0600000, 0x00000000fee00000, 0x0000000100000000)
}
{Heap before GC invocations=35 (full 2):
 par new generation   total 436928K, used 396829K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K, 100% used [0x00000000b0600000, 0x00000000c5b60000, 0x00000000c5b60000)
  from space 87360K,  54% used [0x00000000c5b60000, 0x00000000c8987720, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 192818K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237568K, used 144223K [0x00000000f0600000, 0x00000000fee00000, 0x0000000100000000)
2018-12-12T12:22:00.011+0800: 6120.440: [GC2018-12-12T12:22:00.011+0800: 6120.440: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:     700528 bytes,     700528 total
- age   2:    3214440 bytes,    3914968 total
- age   3:     306416 bytes,    4221384 total
- age   4:    1457280 bytes,    5678664 total
- age   5:    1324120 bytes,    7002784 total
- age   6:    1735064 bytes,    8737848 total
- age   7:     119320 bytes,    8857168 total
- age   8:     156144 bytes,    9013312 total
- age   9:     124496 bytes,    9137808 total
- age  10:     497736 bytes,    9635544 total
- age  11:    1675656 bytes,   11311200 total
- age  12:    4092032 bytes,   15403232 total
- age  13:    1367624 bytes,   16770856 total
- age  14:    1853288 bytes,   18624144 total
- age  15:    6229048 bytes,   24853192 total
: 396829K->32399K(436928K), 0.0238470 secs] 589648K->227737K(961216K), 0.0239540 secs] [Times: user=0.09 sys=0.00, real=0.03 secs] 
Heap after GC invocations=36 (full 2):
 par new generation   total 436928K, used 32399K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  37% used [0x00000000cb0b0000, 0x00000000cd053dc8, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 195337K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237568K, used 144223K [0x00000000f0600000, 0x00000000fee00000, 0x0000000100000000)
}
{Heap before GC invocations=36 (full 2):
 par new generation   total 436928K, used 49004K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   4% used [0x00000000b0600000, 0x00000000b1637428, 0x00000000c5b60000)
  from space 87360K,  37% used [0x00000000cb0b0000, 0x00000000cd053dc8, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 195337K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237568K, used 144223K [0x00000000f0600000, 0x00000000fee00000, 0x0000000100000000)
2018-12-12T12:25:47.280+0800: 6347.709: [Full GC2018-12-12T12:25:47.280+0800: 6347.709: [CMS: 195337K->206785K(524288K), 0.8992480 secs] 244342K->206785K(961216K), [CMS Perm : 144223K->142763K(237568K)], 0.8994280 secs] [Times: user=0.89 sys=0.00, real=0.90 secs] 
Heap after GC invocations=37 (full 3):
 par new generation   total 436928K, used 0K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 206785K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237940K, used 142763K [0x00000000f0600000, 0x00000000fee5d000, 0x0000000100000000)
}
{Heap before GC invocations=37 (full 3):
 par new generation   total 436928K, used 347526K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5961848, 0x00000000c5b60000)
  from space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 206785K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237940K, used 142924K [0x00000000f0600000, 0x00000000fee5d000, 0x0000000100000000)
2018-12-12T12:52:43.138+0800: 7963.567: [GC2018-12-12T12:52:43.138+0800: 7963.567: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   25415144 bytes,   25415144 total
: 347526K->34224K(436928K), 0.0201420 secs] 554311K->241010K(961216K), 0.0202590 secs] [Times: user=0.08 sys=0.00, real=0.02 secs] 
Heap after GC invocations=38 (full 3):
 par new generation   total 436928K, used 34224K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  39% used [0x00000000c5b60000, 0x00000000c7ccc390, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 206785K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237940K, used 142924K [0x00000000f0600000, 0x00000000fee5d000, 0x0000000100000000)
}
{Heap before GC invocations=38 (full 3):
 par new generation   total 436928K, used 383733K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b513f8, 0x00000000c5b60000)
  from space 87360K,  39% used [0x00000000c5b60000, 0x00000000c7ccc390, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 206785K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237940K, used 142953K [0x00000000f0600000, 0x00000000fee5d000, 0x0000000100000000)
2018-12-12T12:54:34.331+0800: 8074.760: [GC2018-12-12T12:54:34.331+0800: 8074.760: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   12487536 bytes,   12487536 total
- age   2:     622040 bytes,   13109576 total
: 383733K->20262K(436928K), 0.0110640 secs] 590519K->227048K(961216K), 0.0111820 secs] [Times: user=0.05 sys=0.00, real=0.02 secs] 
Heap after GC invocations=39 (full 3):
 par new generation   total 436928K, used 20262K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  23% used [0x00000000cb0b0000, 0x00000000cc479a00, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 206785K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237940K, used 142953K [0x00000000f0600000, 0x00000000fee5d000, 0x0000000100000000)
}
{Heap before GC invocations=39 (full 3):
 par new generation   total 436928K, used 369830K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K, 100% used [0x00000000b0600000, 0x00000000c5b60000, 0x00000000c5b60000)
  from space 87360K,  23% used [0x00000000cb0b0000, 0x00000000cc479a00, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 206785K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237940K, used 143030K [0x00000000f0600000, 0x00000000fee5d000, 0x0000000100000000)
2018-12-12T13:21:13.006+0800: 9673.435: [GC2018-12-12T13:21:13.006+0800: 9673.435: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   23900328 bytes,   23900328 total
- age   2:      17248 bytes,   23917576 total
- age   3:     557296 bytes,   24474872 total
: 369830K->27344K(436928K), 0.0188070 secs] 576616K->234130K(961216K), 0.0189090 secs] [Times: user=0.07 sys=0.01, real=0.02 secs] 
Heap after GC invocations=40 (full 3):
 par new generation   total 436928K, used 27344K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  31% used [0x00000000c5b60000, 0x00000000c7614330, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 206785K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237940K, used 143030K [0x00000000f0600000, 0x00000000fee5d000, 0x0000000100000000)
}
{Heap before GC invocations=40 (full 3):
 par new generation   total 436928K, used 376589K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b0f180, 0x00000000c5b60000)
  from space 87360K,  31% used [0x00000000c5b60000, 0x00000000c7614330, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 206785K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237940K, used 143034K [0x00000000f0600000, 0x00000000fee5d000, 0x0000000100000000)
2018-12-12T13:21:19.114+0800: 9679.543: [GC2018-12-12T13:21:19.114+0800: 9679.543: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   12264304 bytes,   12264304 total
- age   2:     497512 bytes,   12761816 total
- age   3:      16592 bytes,   12778408 total
- age   4:     551392 bytes,   13329800 total
: 376589K->21939K(436928K), 0.0108340 secs] 583375K->228725K(961216K), 0.0109760 secs] [Times: user=0.04 sys=0.00, real=0.01 secs] 
Heap after GC invocations=41 (full 3):
 par new generation   total 436928K, used 21939K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  25% used [0x00000000cb0b0000, 0x00000000cc61cee8, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 206785K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237940K, used 143034K [0x00000000f0600000, 0x00000000fee5d000, 0x0000000100000000)
}
{Heap before GC invocations=41 (full 3):
 par new generation   total 436928K, used 79767K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  16% used [0x00000000b0600000, 0x00000000b3e78e18, 0x00000000c5b60000)
  from space 87360K,  25% used [0x00000000cb0b0000, 0x00000000cc61cee8, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 206785K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 237940K, used 143035K [0x00000000f0600000, 0x00000000fee5d000, 0x0000000100000000)
2018-12-12T13:25:48.180+0800: 9948.610: [Full GC2018-12-12T13:25:48.180+0800: 9948.610: [CMS: 206785K->202386K(524288K), 0.8901870 secs] 286553K->202386K(961216K), [CMS Perm : 143035K->142991K(237940K)], 0.8903190 secs] [Times: user=0.89 sys=0.00, real=0.89 secs] 
Heap after GC invocations=42 (full 4):
 par new generation   total 436928K, used 0K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 142991K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
}
{Heap before GC invocations=42 (full 4):
 par new generation   total 436928K, used 349568K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K, 100% used [0x00000000b0600000, 0x00000000c5b60000, 0x00000000c5b60000)
  from space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 143127K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
2018-12-12T13:47:01.432+0800: 11221.861: [GC2018-12-12T13:47:01.432+0800: 11221.861: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    7927968 bytes,    7927968 total
: 349568K->11042K(436928K), 0.0053350 secs] 551954K->213428K(961216K), 0.0054200 secs] [Times: user=0.02 sys=0.00, real=0.00 secs] 
Heap after GC invocations=43 (full 4):
 par new generation   total 436928K, used 11042K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  12% used [0x00000000c5b60000, 0x00000000c6628960, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 143127K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
}
{Heap before GC invocations=43 (full 4):
 par new generation   total 436928K, used 360610K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff0, 0x00000000c5b60000)
  from space 87360K,  12% used [0x00000000c5b60000, 0x00000000c6628960, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 143418K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
2018-12-12T13:47:14.206+0800: 11234.635: [GC2018-12-12T13:47:14.206+0800: 11234.636: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    4795000 bytes,    4795000 total
- age   2:    1376224 bytes,    6171224 total
: 360610K->8243K(436928K), 0.0055650 secs] 562996K->210629K(961216K), 0.0056620 secs] [Times: user=0.02 sys=0.00, real=0.00 secs] 
Heap after GC invocations=44 (full 4):
 par new generation   total 436928K, used 8243K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,   9% used [0x00000000cb0b0000, 0x00000000cb8bcc18, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 143418K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
}
{Heap before GC invocations=44 (full 4):
 par new generation   total 436928K, used 356515K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5a1c2a8, 0x00000000c5b60000)
  from space 87360K,   9% used [0x00000000cb0b0000, 0x00000000cb8bcc18, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 143482K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
2018-12-12T13:48:50.348+0800: 11330.777: [GC2018-12-12T13:48:50.348+0800: 11330.777: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    8895816 bytes,    8895816 total
- age   2:     560736 bytes,    9456552 total
- age   3:    1099824 bytes,   10556376 total
: 356515K->10779K(436928K), 0.0076080 secs] 558901K->213165K(961216K), 0.0077140 secs] [Times: user=0.03 sys=0.00, real=0.00 secs] 
Heap after GC invocations=45 (full 4):
 par new generation   total 436928K, used 10779K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  12% used [0x00000000c5b60000, 0x00000000c65e6ed0, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 143482K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
}
{Heap before GC invocations=45 (full 4):
 par new generation   total 436928K, used 360347K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff8, 0x00000000c5b60000)
  from space 87360K,  12% used [0x00000000c5b60000, 0x00000000c65e6ed0, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 143652K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
2018-12-12T13:50:00.089+0800: 11400.519: [GC2018-12-12T13:50:00.090+0800: 11400.519: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:     785224 bytes,     785224 total
- age   2:     794000 bytes,    1579224 total
- age   3:     549880 bytes,    2129104 total
- age   4:    1066736 bytes,    3195840 total
: 360347K->5524K(436928K), 0.0071220 secs] 562733K->207911K(961216K), 0.0071890 secs] [Times: user=0.02 sys=0.00, real=0.00 secs] 
Heap after GC invocations=46 (full 4):
 par new generation   total 436928K, used 5524K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,   6% used [0x00000000cb0b0000, 0x00000000cb6153b0, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 143652K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
}
{Heap before GC invocations=46 (full 4):
 par new generation   total 436928K, used 353201K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5987258, 0x00000000c5b60000)
  from space 87360K,   6% used [0x00000000cb0b0000, 0x00000000cb6153b0, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 143801K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
2018-12-12T13:59:36.376+0800: 11976.806: [GC2018-12-12T13:59:36.376+0800: 11976.806: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   15410672 bytes,   15410672 total
- age   2:     476296 bytes,   15886968 total
- age   3:     618824 bytes,   16505792 total
- age   4:     494664 bytes,   17000456 total
- age   5:     684664 bytes,   17685120 total
: 353201K->18472K(436928K), 0.0126370 secs] 555587K->220858K(961216K), 0.0127360 secs] [Times: user=0.05 sys=0.00, real=0.01 secs] 
Heap after GC invocations=47 (full 4):
 par new generation   total 436928K, used 18472K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  21% used [0x00000000c5b60000, 0x00000000c6d6a0e8, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 143801K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
}
{Heap before GC invocations=47 (full 4):
 par new generation   total 436928K, used 368040K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffe8, 0x00000000c5b60000)
  from space 87360K,  21% used [0x00000000c5b60000, 0x00000000c6d6a0e8, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 143843K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
2018-12-12T14:00:16.400+0800: 12016.829: [GC2018-12-12T14:00:16.400+0800: 12016.829: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    1354040 bytes,    1354040 total
- age   2:    3731088 bytes,    5085128 total
- age   3:     449072 bytes,    5534200 total
- age   4:     590432 bytes,    6124632 total
- age   5:     471816 bytes,    6596448 total
- age   6:     647336 bytes,    7243784 total
: 368040K->9285K(436928K), 0.0070770 secs] 570426K->211671K(961216K), 0.0071610 secs] [Times: user=0.02 sys=0.00, real=0.01 secs] 
Heap after GC invocations=48 (full 4):
 par new generation   total 436928K, used 9285K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  10% used [0x00000000cb0b0000, 0x00000000cb9c1508, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 143843K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
}
{Heap before GC invocations=48 (full 4):
 par new generation   total 436928K, used 358853K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff8, 0x00000000c5b60000)
  from space 87360K,  10% used [0x00000000cb0b0000, 0x00000000cb9c1508, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 144079K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
2018-12-12T14:00:55.394+0800: 12055.823: [GC2018-12-12T14:00:55.394+0800: 12055.823: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    4863592 bytes,    4863592 total
- age   2:     906824 bytes,    5770416 total
- age   3:    3714112 bytes,    9484528 total
- age   4:     439248 bytes,    9923776 total
- age   5:     572360 bytes,   10496136 total
- age   6:     469712 bytes,   10965848 total
- age   7:     646896 bytes,   11612744 total
: 358853K->13303K(436928K), 0.0086210 secs] 561239K->215689K(961216K), 0.0087010 secs] [Times: user=0.03 sys=0.00, real=0.01 secs] 
Heap after GC invocations=49 (full 4):
 par new generation   total 436928K, used 13303K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  15% used [0x00000000c5b60000, 0x00000000c685def0, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 144079K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
}
{Heap before GC invocations=49 (full 4):
 par new generation   total 436928K, used 362871K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K, 100% used [0x00000000b0600000, 0x00000000c5b60000, 0x00000000c5b60000)
  from space 87360K,  15% used [0x00000000c5b60000, 0x00000000c685def0, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 144101K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
2018-12-12T14:02:19.679+0800: 12140.109: [GC2018-12-12T14:02:19.679+0800: 12140.109: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    1742040 bytes,    1742040 total
- age   2:     586232 bytes,    2328272 total
- age   3:     759208 bytes,    3087480 total
- age   4:    3648712 bytes,    6736192 total
- age   5:     423512 bytes,    7159704 total
- age   6:     564672 bytes,    7724376 total
- age   7:     409824 bytes,    8134200 total
- age   8:     633152 bytes,    8767352 total
: 362871K->12234K(436928K), 0.0077030 secs] 565257K->214620K(961216K), 0.0077950 secs] [Times: user=0.03 sys=0.00, real=0.00 secs] 
Heap after GC invocations=50 (full 4):
 par new generation   total 436928K, used 12234K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  14% used [0x00000000cb0b0000, 0x00000000cbca2b10, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 144101K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
}
{Heap before GC invocations=50 (full 4):
 par new generation   total 436928K, used 361802K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff8, 0x00000000c5b60000)
  from space 87360K,  14% used [0x00000000cb0b0000, 0x00000000cbca2b10, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 144144K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
2018-12-12T14:02:36.166+0800: 12156.595: [GC2018-12-12T14:02:36.166+0800: 12156.595: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   12734560 bytes,   12734560 total
- age   2:     581264 bytes,   13315824 total
- age   3:     572208 bytes,   13888032 total
- age   4:     747896 bytes,   14635928 total
- age   5:    3647064 bytes,   18282992 total
- age   6:     421560 bytes,   18704552 total
- age   7:     517808 bytes,   19222360 total
- age   8:     409352 bytes,   19631712 total
- age   9:     628720 bytes,   20260432 total
: 361802K->22630K(436928K), 0.0219710 secs] 564188K->225016K(961216K), 0.0220620 secs] [Times: user=0.06 sys=0.00, real=0.02 secs] 
Heap after GC invocations=51 (full 4):
 par new generation   total 436928K, used 22630K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  25% used [0x00000000c5b60000, 0x00000000c71799c8, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 144144K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
}
{Heap before GC invocations=51 (full 4):
 par new generation   total 436928K, used 372196K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5f810, 0x00000000c5b60000)
  from space 87360K,  25% used [0x00000000c5b60000, 0x00000000c71799c8, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 144236K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
2018-12-12T14:09:07.394+0800: 12547.823: [GC2018-12-12T14:09:07.394+0800: 12547.823: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   13299696 bytes,   13299696 total
- age   2:     503904 bytes,   13803600 total
- age   3:     543560 bytes,   14347160 total
- age   4:     558496 bytes,   14905656 total
- age   5:     581040 bytes,   15486696 total
- age   6:    3301232 bytes,   18787928 total
- age   7:     382664 bytes,   19170592 total
- age   8:     513912 bytes,   19684504 total
- age   9:     390568 bytes,   20075072 total
- age  10:     461424 bytes,   20536496 total
: 372196K->29925K(436928K), 0.0138380 secs] 574582K->232311K(961216K), 0.0139720 secs] [Times: user=0.05 sys=0.00, real=0.01 secs] 
Heap after GC invocations=52 (full 4):
 par new generation   total 436928K, used 29925K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  34% used [0x00000000cb0b0000, 0x00000000ccde96b0, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 144236K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
}
{Heap before GC invocations=52 (full 4):
 par new generation   total 436928K, used 379493K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff8, 0x00000000c5b60000)
  from space 87360K,  34% used [0x00000000cb0b0000, 0x00000000ccde96b0, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 144260K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
2018-12-12T14:14:58.842+0800: 12899.271: [GC2018-12-12T14:14:58.842+0800: 12899.271: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:     614072 bytes,     614072 total
- age   2:     351016 bytes,     965088 total
- age   3:     365896 bytes,    1330984 total
- age   4:     516744 bytes,    1847728 total
- age   5:     548400 bytes,    2396128 total
- age   6:     513352 bytes,    2909480 total
- age   7:    3227784 bytes,    6137264 total
- age   8:     332784 bytes,    6470048 total
- age   9:     511200 bytes,    6981248 total
- age  10:     370936 bytes,    7352184 total
- age  11:     451776 bytes,    7803960 total
: 379493K->10545K(436928K), 0.0076690 secs] 581879K->212931K(961216K), 0.0077610 secs] [Times: user=0.03 sys=0.00, real=0.01 secs] 
Heap after GC invocations=53 (full 4):
 par new generation   total 436928K, used 10545K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  12% used [0x00000000c5b60000, 0x00000000c65ac4f8, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 144260K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
}
{Heap before GC invocations=53 (full 4):
 par new generation   total 436928K, used 360113K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffe8, 0x00000000c5b60000)
  from space 87360K,  12% used [0x00000000c5b60000, 0x00000000c65ac4f8, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 144483K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
2018-12-12T14:21:21.054+0800: 13281.483: [GC2018-12-12T14:21:21.054+0800: 13281.483: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    2189696 bytes,    2189696 total
- age   2:     236792 bytes,    2426488 total
- age   3:     299336 bytes,    2725824 total
- age   4:     361680 bytes,    3087504 total
- age   5:     493584 bytes,    3581088 total
- age   6:     521248 bytes,    4102336 total
- age   7:     487504 bytes,    4589840 total
- age   8:    3215320 bytes,    7805160 total
- age   9:     325400 bytes,    8130560 total
- age  10:     510872 bytes,    8641432 total
- age  11:     367848 bytes,    9009280 total
- age  12:     428488 bytes,    9437768 total
: 360113K->12430K(436928K), 0.0101970 secs] 562499K->214816K(961216K), 0.0103130 secs] [Times: user=0.04 sys=0.00, real=0.01 secs] 
Heap after GC invocations=54 (full 4):
 par new generation   total 436928K, used 12430K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  14% used [0x00000000cb0b0000, 0x00000000cbcd39d8, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 144483K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
}
{Heap before GC invocations=54 (full 4):
 par new generation   total 436928K, used 361998K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff8, 0x00000000c5b60000)
  from space 87360K,  14% used [0x00000000cb0b0000, 0x00000000cbcd39d8, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 145166K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
2018-12-12T14:21:55.133+0800: 13315.563: [GC2018-12-12T14:21:55.134+0800: 13315.563: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   19663288 bytes,   19663288 total
- age   2:    1419336 bytes,   21082624 total
- age   3:     214672 bytes,   21297296 total
- age   4:     276160 bytes,   21573456 total
- age   5:     361336 bytes,   21934792 total
- age   6:     488184 bytes,   22422976 total
- age   7:     506120 bytes,   22929096 total
- age   8:     477728 bytes,   23406824 total
- age   9:    3194552 bytes,   26601376 total
- age  10:     324896 bytes,   26926272 total
- age  11:     510392 bytes,   27436664 total
- age  12:     360080 bytes,   27796744 total
- age  13:     412416 bytes,   28209160 total
: 361998K->30545K(436928K), 0.0177640 secs] 564384K->232931K(961216K), 0.0178600 secs] [Times: user=0.06 sys=0.00, real=0.02 secs] 
Heap after GC invocations=55 (full 4):
 par new generation   total 436928K, used 30545K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  34% used [0x00000000c5b60000, 0x00000000c7934738, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 145166K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
}
{Heap before GC invocations=55 (full 4):
 par new generation   total 436928K, used 380113K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffd8, 0x00000000c5b60000)
  from space 87360K,  34% used [0x00000000c5b60000, 0x00000000c7934738, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 145234K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
2018-12-12T14:23:13.853+0800: 13394.283: [GC2018-12-12T14:23:13.854+0800: 13394.283: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    1560704 bytes,    1560704 total
- age   2:    4851392 bytes,    6412096 total
- age   3:    1346064 bytes,    7758160 total
- age   4:     183128 bytes,    7941288 total
- age   5:     269216 bytes,    8210504 total
- age   6:     361112 bytes,    8571616 total
- age   7:     485472 bytes,    9057088 total
- age   8:     501208 bytes,    9558296 total
- age   9:     466496 bytes,   10024792 total
- age  10:    3181800 bytes,   13206592 total
- age  11:     319920 bytes,   13526512 total
- age  12:     510080 bytes,   14036592 total
- age  13:     355952 bytes,   14392544 total
- age  14:     406864 bytes,   14799408 total
: 380113K->20423K(436928K), 0.0115540 secs] 582499K->222809K(961216K), 0.0116640 secs] [Times: user=0.05 sys=0.00, real=0.01 secs] 
Heap after GC invocations=56 (full 4):
 par new generation   total 436928K, used 20423K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  23% used [0x00000000cb0b0000, 0x00000000cc4a1c48, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 145234K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
}
{Heap before GC invocations=56 (full 4):
 par new generation   total 436928K, used 369991K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K, 100% used [0x00000000b0600000, 0x00000000c5b60000, 0x00000000c5b60000)
  from space 87360K,  23% used [0x00000000cb0b0000, 0x00000000cc4a1c48, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 145310K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
2018-12-12T14:23:59.207+0800: 13439.636: [GC2018-12-12T14:23:59.207+0800: 13439.636: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   22782600 bytes,   22782600 total
- age   2:    1121880 bytes,   23904480 total
- age   3:    4790400 bytes,   28694880 total
- age   4:    1333824 bytes,   30028704 total
- age   5:     178912 bytes,   30207616 total
- age   6:     262152 bytes,   30469768 total
- age   7:     358712 bytes,   30828480 total
- age   8:     484848 bytes,   31313328 total
- age   9:     498352 bytes,   31811680 total
- age  10:     465696 bytes,   32277376 total
- age  11:    3168624 bytes,   35446000 total
- age  12:     316544 bytes,   35762544 total
- age  13:     509840 bytes,   36272384 total
- age  14:     319664 bytes,   36592048 total
- age  15:     403248 bytes,   36995296 total
: 369991K->42234K(436928K), 0.0221100 secs] 572377K->244620K(961216K), 0.0222020 secs] [Times: user=0.08 sys=0.00, real=0.03 secs] 
Heap after GC invocations=57 (full 4):
 par new generation   total 436928K, used 42234K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  48% used [0x00000000c5b60000, 0x00000000c849ea20, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 145310K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
}
{Heap before GC invocations=57 (full 4):
 par new generation   total 436928K, used 391802K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff0, 0x00000000c5b60000)
  from space 87360K,  48% used [0x00000000c5b60000, 0x00000000c849ea20, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 202386K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 145389K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
2018-12-12T14:24:59.567+0800: 13499.996: [GC2018-12-12T14:24:59.567+0800: 13499.996: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    4628224 bytes,    4628224 total
- age   2:     716336 bytes,    5344560 total
- age   3:    1012536 bytes,    6357096 total
- age   4:    4740128 bytes,   11097224 total
- age   5:    1262584 bytes,   12359808 total
- age   6:     158192 bytes,   12518000 total
- age   7:     256584 bytes,   12774584 total
- age   8:     357960 bytes,   13132544 total
- age   9:     471320 bytes,   13603864 total
- age  10:     497728 bytes,   14101592 total
- age  11:     465696 bytes,   14567288 total
- age  12:    3155904 bytes,   17723192 total
- age  13:     316416 bytes,   18039608 total
- age  14:     509840 bytes,   18549448 total
- age  15:     304304 bytes,   18853752 total
: 391802K->26237K(436928K), 0.0146750 secs] 594188K->229059K(961216K), 0.0147640 secs] [Times: user=0.05 sys=0.00, real=0.01 secs] 
Heap after GC invocations=58 (full 4):
 par new generation   total 436928K, used 26237K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  30% used [0x00000000cb0b0000, 0x00000000cca4f550, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 202822K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 145389K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
}
{Heap before GC invocations=58 (full 4):
 par new generation   total 436928K, used 375805K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff8, 0x00000000c5b60000)
  from space 87360K,  30% used [0x00000000cb0b0000, 0x00000000cca4f550, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 202822K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 145416K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
2018-12-12T14:25:21.802+0800: 13522.231: [GC2018-12-12T14:25:21.802+0800: 13522.231: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:     552272 bytes,     552272 total
- age   2:    3539368 bytes,    4091640 total
- age   3:     682152 bytes,    4773792 total
- age   4:     983264 bytes,    5757056 total
- age   5:    4735520 bytes,   10492576 total
- age   6:    1244304 bytes,   11736880 total
- age   7:     150512 bytes,   11887392 total
- age   8:     251272 bytes,   12138664 total
- age   9:     357080 bytes,   12495744 total
- age  10:     471256 bytes,   12967000 total
- age  11:     497728 bytes,   13464728 total
- age  12:     460632 bytes,   13925360 total
- age  13:    3151464 bytes,   17076824 total
- age  14:     316416 bytes,   17393240 total
- age  15:     507472 bytes,   17900712 total
: 375805K->26764K(436928K), 0.0135000 secs] 578627K->229901K(961216K), 0.0135840 secs] [Times: user=0.05 sys=0.00, real=0.01 secs] 
Heap after GC invocations=59 (full 4):
 par new generation   total 436928K, used 26764K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  30% used [0x00000000c5b60000, 0x00000000c7583158, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 203137K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 145416K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
}
{Heap before GC invocations=59 (full 4):
 par new generation   total 436928K, used 78572K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  14% used [0x00000000b0600000, 0x00000000b3898110, 0x00000000c5b60000)
  from space 87360K,  30% used [0x00000000c5b60000, 0x00000000c7583158, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 203137K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 238320K, used 145422K [0x00000000f0600000, 0x00000000feebc000, 0x0000000100000000)
2018-12-12T14:25:49.072+0800: 13549.501: [Full GC2018-12-12T14:25:49.072+0800: 13549.501: [CMS: 203137K->214706K(524288K), 0.8596900 secs] 281710K->214706K(961216K), [CMS Perm : 145422K->144930K(238320K)], 0.8598880 secs] [Times: user=0.86 sys=0.00, real=0.86 secs] 
Heap after GC invocations=60 (full 5):
 par new generation   total 436928K, used 0K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 144930K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=60 (full 5):
 par new generation   total 436928K, used 349568K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K, 100% used [0x00000000b0600000, 0x00000000c5b60000, 0x00000000c5b60000)
  from space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 145016K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T14:28:10.140+0800: 13690.570: [GC2018-12-12T14:28:10.140+0800: 13690.570: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   24726240 bytes,   24726240 total
: 349568K->29580K(436928K), 0.0187660 secs] 564274K->244287K(961216K), 0.0188640 secs] [Times: user=0.08 sys=0.00, real=0.02 secs] 
Heap after GC invocations=61 (full 5):
 par new generation   total 436928K, used 29580K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  33% used [0x00000000cb0b0000, 0x00000000ccd931c8, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 145016K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=61 (full 5):
 par new generation   total 436928K, used 378816K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b0cec0, 0x00000000c5b60000)
  from space 87360K,  33% used [0x00000000cb0b0000, 0x00000000ccd931c8, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 145019K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T14:29:50.709+0800: 13791.138: [GC2018-12-12T14:29:50.709+0800: 13791.138: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   12494696 bytes,   12494696 total
- age   2:     334880 bytes,   12829576 total
: 378816K->18042K(436928K), 0.0101140 secs] 593523K->232749K(961216K), 0.0102320 secs] [Times: user=0.04 sys=0.01, real=0.01 secs] 
Heap after GC invocations=62 (full 5):
 par new generation   total 436928K, used 18042K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  20% used [0x00000000c5b60000, 0x00000000c6cfebd8, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 145019K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=62 (full 5):
 par new generation   total 436928K, used 367377K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b25b00, 0x00000000c5b60000)
  from space 87360K,  20% used [0x00000000c5b60000, 0x00000000c6cfebd8, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 145063K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T14:33:51.044+0800: 14031.473: [GC2018-12-12T14:33:51.044+0800: 14031.473: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    6357936 bytes,    6357936 total
- age   2:      48400 bytes,    6406336 total
- age   3:     324536 bytes,    6730872 total
: 367377K->9238K(436928K), 0.0098970 secs] 582084K->223945K(961216K), 0.0099880 secs] [Times: user=0.03 sys=0.00, real=0.01 secs] 
Heap after GC invocations=63 (full 5):
 par new generation   total 436928K, used 9238K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  10% used [0x00000000cb0b0000, 0x00000000cb9b5970, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 145063K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=63 (full 5):
 par new generation   total 436928K, used 358806K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffe8, 0x00000000c5b60000)
  from space 87360K,  10% used [0x00000000cb0b0000, 0x00000000cb9b5970, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 145069K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T14:34:54.958+0800: 14095.387: [GC2018-12-12T14:34:54.958+0800: 14095.387: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   19964832 bytes,   19964832 total
- age   2:     533360 bytes,   20498192 total
- age   3:      48256 bytes,   20546448 total
- age   4:     324536 bytes,   20870984 total
: 358806K->23774K(436928K), 0.0172670 secs] 573513K->238481K(961216K), 0.0173600 secs] [Times: user=0.06 sys=0.00, real=0.01 secs] 
Heap after GC invocations=64 (full 5):
 par new generation   total 436928K, used 23774K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  27% used [0x00000000c5b60000, 0x00000000c7297af0, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 145069K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=64 (full 5):
 par new generation   total 436928K, used 373342K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff8, 0x00000000c5b60000)
  from space 87360K,  27% used [0x00000000c5b60000, 0x00000000c7297af0, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 145457K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T14:37:54.299+0800: 14274.728: [GC2018-12-12T14:37:54.299+0800: 14274.728: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    1578136 bytes,    1578136 total
- age   2:      21608 bytes,    1599744 total
- age   3:     516000 bytes,    2115744 total
- age   4:      43248 bytes,    2158992 total
- age   5:     310184 bytes,    2469176 total
: 373342K->16928K(436928K), 0.0059100 secs] 588049K->231635K(961216K), 0.0060010 secs] [Times: user=0.03 sys=0.00, real=0.01 secs] 
Heap after GC invocations=65 (full 5):
 par new generation   total 436928K, used 16928K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  19% used [0x00000000cb0b0000, 0x00000000cc138378, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 145457K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=65 (full 5):
 par new generation   total 436928K, used 366496K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffc8, 0x00000000c5b60000)
  from space 87360K,  19% used [0x00000000cb0b0000, 0x00000000cc138378, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 145518K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T14:38:05.380+0800: 14285.809: [GC2018-12-12T14:38:05.380+0800: 14285.809: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:     859392 bytes,     859392 total
- age   2:     905176 bytes,    1764568 total
- age   3:       5136 bytes,    1769704 total
- age   4:     513680 bytes,    2283384 total
- age   5:      43248 bytes,    2326632 total
- age   6:     309992 bytes,    2636624 total
: 366496K->4518K(436928K), 0.0054660 secs] 581203K->219225K(961216K), 0.0055500 secs] [Times: user=0.02 sys=0.00, real=0.01 secs] 
Heap after GC invocations=66 (full 5):
 par new generation   total 436928K, used 4518K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,   5% used [0x00000000c5b60000, 0x00000000c5fc9b70, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 145518K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=66 (full 5):
 par new generation   total 436928K, used 354086K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffe0, 0x00000000c5b60000)
  from space 87360K,   5% used [0x00000000c5b60000, 0x00000000c5fc9b70, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 145887K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T14:39:43.158+0800: 14383.587: [GC2018-12-12T14:39:43.158+0800: 14383.587: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    2067808 bytes,    2067808 total
- age   2:     541960 bytes,    2609768 total
- age   3:     862632 bytes,    3472400 total
- age   4:       5136 bytes,    3477536 total
- age   5:     511864 bytes,    3989400 total
- age   6:      43248 bytes,    4032648 total
- age   7:     309760 bytes,    4342408 total
: 354086K->4967K(436928K), 0.0078670 secs] 568793K->219674K(961216K), 0.0079580 secs] [Times: user=0.02 sys=0.00, real=0.01 secs] 
Heap after GC invocations=67 (full 5):
 par new generation   total 436928K, used 4967K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,   5% used [0x00000000cb0b0000, 0x00000000cb589cd8, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 145887K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=67 (full 5):
 par new generation   total 436928K, used 354467K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b4f2f0, 0x00000000c5b60000)
  from space 87360K,   5% used [0x00000000cb0b0000, 0x00000000cb589cd8, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 145937K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T14:41:28.981+0800: 14489.410: [GC2018-12-12T14:41:28.981+0800: 14489.410: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:     779472 bytes,     779472 total
- age   2:    1463072 bytes,    2242544 total
- age   3:     538600 bytes,    2781144 total
- age   4:     856384 bytes,    3637528 total
- age   5:       4816 bytes,    3642344 total
- age   6:     487816 bytes,    4130160 total
- age   7:      43024 bytes,    4173184 total
- age   8:     288928 bytes,    4462112 total
: 354467K->5799K(436928K), 0.0070110 secs] 569174K->220506K(961216K), 0.0070900 secs] [Times: user=0.03 sys=0.00, real=0.01 secs] 
Heap after GC invocations=68 (full 5):
 par new generation   total 436928K, used 5799K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,   6% used [0x00000000c5b60000, 0x00000000c6109e80, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 145937K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=68 (full 5):
 par new generation   total 436928K, used 355367K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff0, 0x00000000c5b60000)
  from space 87360K,   6% used [0x00000000c5b60000, 0x00000000c6109e80, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 145974K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T14:45:00.012+0800: 14700.441: [GC2018-12-12T14:45:00.012+0800: 14700.441: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:     770104 bytes,     770104 total
- age   2:     295016 bytes,    1065120 total
- age   3:    1449056 bytes,    2514176 total
- age   4:     538456 bytes,    3052632 total
- age   5:     850936 bytes,    3903568 total
- age   6:       4816 bytes,    3908384 total
- age   7:     460704 bytes,    4369088 total
- age   8:      42776 bytes,    4411864 total
- age   9:     271344 bytes,    4683208 total
: 355367K->6170K(436928K), 0.0114360 secs] 570074K->220877K(961216K), 0.0115190 secs] [Times: user=0.03 sys=0.00, real=0.01 secs] 
Heap after GC invocations=69 (full 5):
 par new generation   total 436928K, used 6170K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,   7% used [0x00000000cb0b0000, 0x00000000cb6b68c8, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 145974K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=69 (full 5):
 par new generation   total 436928K, used 355736K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5f9e8, 0x00000000c5b60000)
  from space 87360K,   7% used [0x00000000cb0b0000, 0x00000000cb6b68c8, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 146079K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T14:51:17.312+0800: 15077.742: [GC2018-12-12T14:51:17.313+0800: 15077.742: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   10233736 bytes,   10233736 total
- age   2:     496680 bytes,   10730416 total
- age   3:     233720 bytes,   10964136 total
- age   4:    1447248 bytes,   12411384 total
- age   5:     499608 bytes,   12910992 total
- age   6:     850696 bytes,   13761688 total
- age   7:       4816 bytes,   13766504 total
- age   8:     373864 bytes,   14140368 total
- age   9:      34632 bytes,   14175000 total
- age  10:     270840 bytes,   14445840 total
: 355736K->15555K(436928K), 0.0132310 secs] 570443K->230262K(961216K), 0.0133690 secs] [Times: user=0.05 sys=0.00, real=0.01 secs] 
Heap after GC invocations=70 (full 5):
 par new generation   total 436928K, used 15555K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  17% used [0x00000000c5b60000, 0x00000000c6a90f58, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 146079K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=70 (full 5):
 par new generation   total 436928K, used 365123K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff8, 0x00000000c5b60000)
  from space 87360K,  17% used [0x00000000c5b60000, 0x00000000c6a90f58, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 146308K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T14:53:13.608+0800: 15194.037: [GC2018-12-12T14:53:13.608+0800: 15194.037: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    5352264 bytes,    5352264 total
- age   2:    1791408 bytes,    7143672 total
- age   3:     426392 bytes,    7570064 total
- age   4:     221200 bytes,    7791264 total
- age   5:    1445248 bytes,    9236512 total
- age   6:     499608 bytes,    9736120 total
- age   7:     747888 bytes,   10484008 total
- age   8:       4792 bytes,   10488800 total
- age   9:     316320 bytes,   10805120 total
- age  10:      34632 bytes,   10839752 total
- age  11:     261120 bytes,   11100872 total
: 365123K->14186K(436928K), 0.0134960 secs] 579830K->228893K(961216K), 0.0136290 secs] [Times: user=0.05 sys=0.00, real=0.01 secs] 
Heap after GC invocations=71 (full 5):
 par new generation   total 436928K, used 14186K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  16% used [0x00000000cb0b0000, 0x00000000cbe8a8e8, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 146308K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=71 (full 5):
 par new generation   total 436928K, used 363754K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff0, 0x00000000c5b60000)
  from space 87360K,  16% used [0x00000000cb0b0000, 0x00000000cbe8a8e8, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 146723K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T14:54:25.356+0800: 15265.785: [GC2018-12-12T14:54:25.356+0800: 15265.785: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    4125176 bytes,    4125176 total
- age   2:    4716816 bytes,    8841992 total
- age   3:    1755072 bytes,   10597064 total
- age   4:     362936 bytes,   10960000 total
- age   5:     216544 bytes,   11176544 total
- age   6:    1363000 bytes,   12539544 total
- age   7:     467720 bytes,   13007264 total
- age   8:     747608 bytes,   13754872 total
- age   9:       4792 bytes,   13759664 total
- age  10:     315512 bytes,   14075176 total
- age  11:      34632 bytes,   14109808 total
- age  12:     258344 bytes,   14368152 total
: 363754K->16757K(436928K), 0.0127770 secs] 578461K->231464K(961216K), 0.0128880 secs] [Times: user=0.05 sys=0.00, real=0.01 secs] 
Heap after GC invocations=72 (full 5):
 par new generation   total 436928K, used 16757K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  19% used [0x00000000c5b60000, 0x00000000c6bbd678, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 146723K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=72 (full 5):
 par new generation   total 436928K, used 366325K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff0, 0x00000000c5b60000)
  from space 87360K,  19% used [0x00000000c5b60000, 0x00000000c6bbd678, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 146779K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T14:58:23.488+0800: 15503.918: [GC2018-12-12T14:58:23.489+0800: 15503.918: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    4515144 bytes,    4515144 total
- age   2:    3604864 bytes,    8120008 total
- age   3:    4697944 bytes,   12817952 total
- age   4:    1743072 bytes,   14561024 total
- age   5:     349144 bytes,   14910168 total
- age   6:     180704 bytes,   15090872 total
- age   7:    1363000 bytes,   16453872 total
- age   8:     467720 bytes,   16921592 total
- age   9:     747608 bytes,   17669200 total
- age  10:       4792 bytes,   17673992 total
- age  11:     315448 bytes,   17989440 total
- age  12:      34632 bytes,   18024072 total
- age  13:     255392 bytes,   18279464 total
: 366325K->23942K(436928K), 0.0148450 secs] 581032K->238649K(961216K), 0.0149640 secs] [Times: user=0.06 sys=0.00, real=0.02 secs] 
Heap after GC invocations=73 (full 5):
 par new generation   total 436928K, used 23942K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  27% used [0x00000000cb0b0000, 0x00000000cc811ba8, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 146779K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=73 (full 5):
 par new generation   total 436928K, used 373510K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K, 100% used [0x00000000b0600000, 0x00000000c5b60000, 0x00000000c5b60000)
  from space 87360K,  27% used [0x00000000cb0b0000, 0x00000000cc811ba8, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 146976K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T14:59:47.681+0800: 15588.111: [GC2018-12-12T14:59:47.681+0800: 15588.111: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   13711760 bytes,   13711760 total
- age   2:     615096 bytes,   14326856 total
- age   3:    3414584 bytes,   17741440 total
- age   4:    4658896 bytes,   22400336 total
- age   5:    1742720 bytes,   24143056 total
- age   6:     169800 bytes,   24312856 total
- age   7:     130632 bytes,   24443488 total
- age   8:     987000 bytes,   25430488 total
- age   9:     405952 bytes,   25836440 total
- age  10:     722544 bytes,   26558984 total
- age  11:       4792 bytes,   26563776 total
- age  12:     229848 bytes,   26793624 total
- age  13:      34632 bytes,   26828256 total
- age  14:     255264 bytes,   27083520 total
: 373510K->31287K(436928K), 0.0245200 secs] 588217K->245994K(961216K), 0.0246250 secs] [Times: user=0.09 sys=0.00, real=0.03 secs] 
Heap after GC invocations=74 (full 5):
 par new generation   total 436928K, used 31287K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  35% used [0x00000000c5b60000, 0x00000000c79eddb0, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 146976K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=74 (full 5):
 par new generation   total 436928K, used 380855K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K, 100% used [0x00000000b0600000, 0x00000000c5b60000, 0x00000000c5b60000)
  from space 87360K,  35% used [0x00000000c5b60000, 0x00000000c79eddb0, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147061K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T14:59:52.395+0800: 15592.825: [GC2018-12-12T14:59:52.396+0800: 15592.825: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   22476128 bytes,   22476128 total
- age   2:   13557904 bytes,   36034032 total
- age   3:     578120 bytes,   36612152 total
- age   4:    3366952 bytes,   39979104 total
- age   5:    4616728 bytes,   44595832 total
- age   6:     761824 bytes,   45357656 total
- age   7:     153800 bytes,   45511456 total
- age   8:     129872 bytes,   45641328 total
- age   9:     931960 bytes,   46573288 total
- age  10:     404712 bytes,   46978000 total
- age  11:     704488 bytes,   47682488 total
- age  12:       4792 bytes,   47687280 total
- age  13:     229216 bytes,   47916496 total
- age  14:      34632 bytes,   47951128 total
- age  15:     254912 bytes,   48206040 total
: 380855K->55441K(436928K), 0.0344850 secs] 595562K->270148K(961216K), 0.0345600 secs] [Times: user=0.13 sys=0.00, real=0.03 secs] 
Heap after GC invocations=75 (full 5):
 par new generation   total 436928K, used 55441K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  63% used [0x00000000cb0b0000, 0x00000000ce6d4680, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147061K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=75 (full 5):
 par new generation   total 436928K, used 405009K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffd8, 0x00000000c5b60000)
  from space 87360K,  63% used [0x00000000cb0b0000, 0x00000000ce6d4680, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 214706K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147146K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T14:59:56.908+0800: 15597.337: [GC2018-12-12T14:59:56.908+0800: 15597.337: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   22639568 bytes,   22639568 total
- age   2:   22295752 bytes,   44935320 total
- age   3:   13546216 bytes,   58481536 total
- age   4:     576640 bytes,   59058176 total
- age   5:    3366952 bytes,   62425128 total
- age   6:    4616632 bytes,   67041760 total
- age   7:     758624 bytes,   67800384 total
- age   8:     153800 bytes,   67954184 total
- age   9:     129832 bytes,   68084016 total
- age  10:     931960 bytes,   69015976 total
- age  11:     404712 bytes,   69420688 total
- age  12:     704488 bytes,   70125176 total
- age  13:       4792 bytes,   70129968 total
- age  14:     229216 bytes,   70359184 total
- age  15:      34632 bytes,   70393816 total
: 405009K->81701K(436928K), 0.0505460 secs] 619716K->296686K(961216K), 0.0506630 secs] [Times: user=0.20 sys=0.00, real=0.05 secs] 
Heap after GC invocations=76 (full 5):
 par new generation   total 436928K, used 81701K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  93% used [0x00000000c5b60000, 0x00000000cab29498, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 214985K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147146K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=76 (full 5):
 par new generation   total 436928K, used 431269K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5fff8, 0x00000000c5b60000)
  from space 87360K,  93% used [0x00000000c5b60000, 0x00000000cab29498, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 214985K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147173K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T15:00:01.882+0800: 15602.311: [GC2018-12-12T15:00:01.882+0800: 15602.311: [ParNew
Desired survivor size 80510976 bytes, new threshold 7 (max 15)
- age   1:   20619792 bytes,   20619792 total
- age   2:   20149904 bytes,   40769696 total
- age   3:   20039288 bytes,   60808984 total
- age   4:   12658984 bytes,   73467968 total
- age   5:     575672 bytes,   74043640 total
- age   6:    3283824 bytes,   77327464 total
- age   7:    4612008 bytes,   81939472 total
- age   8:     753704 bytes,   82693176 total
- age   9:     153512 bytes,   82846688 total
- age  10:     129784 bytes,   82976472 total
- age  11:     931960 bytes,   83908432 total
- age  12:     404712 bytes,   84313144 total
- age  13:     704488 bytes,   85017632 total
- age  14:       4792 bytes,   85022424 total
- age  15:     228976 bytes,   85251400 total
: 431269K->87360K(436928K), 0.0702900 secs] 646254K->311976K(961216K), 0.0703860 secs] [Times: user=0.27 sys=0.00, real=0.07 secs] 
Heap after GC invocations=77 (full 5):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 224616K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147173K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=77 (full 5):
 par new generation   total 436928K, used 436928K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K, 100% used [0x00000000b0600000, 0x00000000c5b60000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 224616K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147212K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T15:00:05.974+0800: 15606.403: [GC2018-12-12T15:00:05.974+0800: 15606.403: [ParNew
Desired survivor size 80510976 bytes, new threshold 5 (max 15)
- age   1:   24063784 bytes,   24063784 total
- age   2:   16915384 bytes,   40979168 total
- age   3:   16410224 bytes,   57389392 total
- age   4:   16884600 bytes,   74273992 total
- age   5:   11389624 bytes,   85663616 total
- age   6:     575608 bytes,   86239224 total
- age   7:    3217248 bytes,   89456472 total
: 436928K->87360K(436928K), 0.1298420 secs] 661544K->338761K(961216K), 0.1299430 secs] [Times: user=0.38 sys=0.00, real=0.13 secs] 
Heap after GC invocations=78 (full 5):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 251401K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147212K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=78 (full 5):
 par new generation   total 436928K, used 436926K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5f9b8, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 251401K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147315K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T15:00:39.728+0800: 15640.157: [GC2018-12-12T15:00:39.728+0800: 15640.158: [ParNew
Desired survivor size 80510976 bytes, new threshold 5 (max 15)
- age   1:   17351200 bytes,   17351200 total
- age   2:   17625272 bytes,   34976472 total
- age   3:   16617072 bytes,   51593544 total
- age   4:   16180560 bytes,   67774104 total
- age   5:   16719040 bytes,   84493144 total
: 436926K->87360K(436928K), 0.0718630 secs] 688327K->351203K(961216K), 0.0719760 secs] [Times: user=0.27 sys=0.00, real=0.07 secs] 
Heap after GC invocations=79 (full 5):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 263843K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147315K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=79 (full 5):
 par new generation   total 436928K, used 436927K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b5ffe0, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 263843K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147330K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T15:02:39.197+0800: 15759.627: [GC2018-12-12T15:02:39.197+0800: 15759.627: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:   16623720 bytes,   16623720 total
- age   2:    9169512 bytes,   25793232 total
- age   3:   17603984 bytes,   43397216 total
- age   4:   16611056 bytes,   60008272 total
- age   5:   16165136 bytes,   76173408 total
: 436927K->87360K(436928K), 0.0731360 secs] 700771K->369446K(961216K), 0.0732380 secs] [Times: user=0.27 sys=0.00, real=0.08 secs] 
Heap after GC invocations=80 (full 5):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 282086K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147330K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=80 (full 5):
 par new generation   total 436928K, used 436850K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b4c8f8, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000c5b60000, 0x00000000cb0b0000, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 282086K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147331K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T15:02:43.934+0800: 15764.363: [GC2018-12-12T15:02:43.934+0800: 15764.363: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    2751112 bytes,    2751112 total
- age   2:    4239048 bytes,    6990160 total
- age   3:    9159440 bytes,   16149600 total
- age   4:   17603488 bytes,   33753088 total
- age   5:   16605464 bytes,   50358552 total
- age   6:   16164864 bytes,   66523416 total
: 436850K->87360K(436928K), 0.0422810 secs] 718936K->369468K(961216K), 0.0424380 secs] [Times: user=0.17 sys=0.00, real=0.04 secs] 
Heap after GC invocations=81 (full 5):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 282108K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147331K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=81 (full 5):
 par new generation   total 436928K, used 436846K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5b4b9e8, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 282108K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147336K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T15:05:52.125+0800: 15952.554: [GC2018-12-12T15:05:52.125+0800: 15952.554: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    7352960 bytes,    7352960 total
- age   2:     213488 bytes,    7566448 total
- age   3:    3803376 bytes,   11369824 total
- age   4:    9146496 bytes,   20516320 total
- age   5:   17600072 bytes,   38116392 total
- age   6:   16586432 bytes,   54702824 total
- age   7:   16162912 bytes,   70865736 total
: 436846K->87182K(436928K), 0.0459320 secs] 718954K->369290K(961216K), 0.0460440 secs] [Times: user=0.17 sys=0.00, real=0.05 secs] 
Heap after GC invocations=82 (full 5):
 par new generation   total 436928K, used 87182K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K,  99% used [0x00000000c5b60000, 0x00000000cb083960, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 282108K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147336K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=82 (full 5):
 par new generation   total 436928K, used 435568K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,  99% used [0x00000000b0600000, 0x00000000c5a38a20, 0x00000000c5b60000)
  from space 87360K,  99% used [0x00000000c5b60000, 0x00000000cb083960, 0x00000000cb0b0000)
  to   space 87360K,   0% used [0x00000000cb0b0000, 0x00000000cb0b0000, 0x00000000d0600000)
 concurrent mark-sweep generation total 524288K, used 282108K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147377K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T15:06:28.407+0800: 15988.836: [GC2018-12-12T15:06:28.407+0800: 15988.836: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:    1899224 bytes,    1899224 total
- age   2:     335048 bytes,    2234272 total
- age   3:     192456 bytes,    2426728 total
- age   4:    3764640 bytes,    6191368 total
- age   5:    9116744 bytes,   15308112 total
- age   6:   17540904 bytes,   32849016 total
- age   7:   16586080 bytes,   49435096 total
- age   8:   16137120 bytes,   65572216 total
: 435568K->87360K(436928K), 0.0419660 secs] 717677K->369662K(961216K), 0.0420550 secs] [Times: user=0.16 sys=0.00, real=0.04 secs] 
Heap after GC invocations=83 (full 5):
 par new generation   total 436928K, used 87360K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K,   0% used [0x00000000b0600000, 0x00000000b0600000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 282302K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147377K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
}
{Heap before GC invocations=83 (full 5):
 par new generation   total 436928K, used 436928K [0x00000000b0600000, 0x00000000d0600000, 0x00000000d0600000)
  eden space 349568K, 100% used [0x00000000b0600000, 0x00000000c5b60000, 0x00000000c5b60000)
  from space 87360K, 100% used [0x00000000cb0b0000, 0x00000000d0600000, 0x00000000d0600000)
  to   space 87360K,   0% used [0x00000000c5b60000, 0x00000000c5b60000, 0x00000000cb0b0000)
 concurrent mark-sweep generation total 524288K, used 282302K [0x00000000d0600000, 0x00000000f0600000, 0x00000000f0600000)
 concurrent-mark-sweep perm gen total 241552K, used 147385K [0x00000000f0600000, 0x00000000ff1e4000, 0x0000000100000000)
2018-12-12T15:06:35.457+0800: 15995.886: [GC2018-12-12T15:06:35.457+0800: 15995.886: [ParNew
Desired survivor size 80510976 bytes, new threshold 15 (max 15)
- age   1:     457536 bytes,     457536 total
- age   2:     449376 bytes,     906912 total
- age   3:     314288 bytes,    1221200 total
- age   4:     184248 bytes,    1405448 total
- age   5:    3761800 bytes,    5167248 total
- age   6:    9116712 bytes,   14283960 total
- age   7:   17540904 bytes,   31824864 total
- age   8:   16586080 bytes,   48410944 total
- age   9:   16137120 bytes,   64548064 total
: 436928K->87360K(436928K), 0.0589540 secs] 719230K->369696K(961216K), 0.0590510 secs] [Times: user=0.17 sys=0.00, real=0.06 secs] 


Comment