Skip to content

Instantly share code, notes, and snippets.

@mpenick
Last active August 29, 2015 14:07
Show Gist options
  • Save mpenick/4bf42520e265ae596c19 to your computer and use it in GitHub Desktop.
Save mpenick/4bf42520e265ae596c19 to your computer and use it in GitHub Desktop.
java pauses
package mikep.perf;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ExecutionException;
import com.datastax.driver.core.BoundStatement;
import com.datastax.driver.core.Cluster;
import com.datastax.driver.core.PreparedStatement;
import com.datastax.driver.core.ResultSetFuture;
import com.datastax.driver.core.Session;
import com.google.common.util.concurrent.Futures;
/**
* Hello world!
*
*/
public class App
{
public static void benchmark(final Session session, final int numIterations, final int batchSize) {
PreparedStatement prepared = session.prepare("SELECT * FROM songs WHERE id = a98d21b2-1900-11e4-b97b-e5e358e71e0d");
List<ResultSetFuture> futures = new ArrayList<ResultSetFuture>(batchSize);
double total = 0.0;
long count = 0;
for (int j = 0; j < numIterations; ++j) {
long start = System.currentTimeMillis();
int num_results = 0;
try {
for (int i = 0; i < batchSize; ++i) {
BoundStatement statement = prepared.bind();
futures.add(session.executeAsync(statement));
}
// for (ResultSetFuture future : futures) {
// try {
// if(future.get().getColumnDefinitions().size() != 6) {
// System.out.println("Invalid result set");
// }
// num_results++;
// } catch (Exception e) {
// System.out.printf("Error: %s\n", e.getMessage());
// }
// }
num_results = Futures.successfulAsList(futures).get().size();
} catch(Exception e) {
System.out.printf("Error: %s\n", e.getMessage());
}
double elapsed = (System.currentTimeMillis() - start) / 1000.0;
total += num_results / elapsed;
count++;
System.out.printf("average %f selects/sec (%d %f)\n", total / count, num_results, elapsed);
futures.clear();
}
}
public static void main( String[] args ) throws ExecutionException, InterruptedException
{
Cluster cluster = Cluster.builder()
.addContactPoint("127.0.0.1")
.withCredentials("cassandra", "cassandra")
.build();
Session session = cluster.connect("examples");
session.execute("INSERT INTO songs (id, title, album, artist, tags) VALUES " +
"(a98d21b2-1900-11e4-b97b-e5e358e71e0d, " +
"'La Petite Tonkinoise', 'Bye Bye Blackbird', 'Joséphine Baker', { 'jazz', '2013' });");
System.out.println("Warming up the JVM...");
benchmark(session, 100, 10000);
System.out.println("Done warming up...");
benchmark(session, 1000, 10000);
session.close();
cluster.close();
}
}
...
average 107479.557728 selects/sec (10000 0.106000)
average 107475.749807 selects/sec (10000 0.096000)
average 107477.150384 selects/sec (10000 0.092000)
average 107488.813123 selects/sec (10000 0.085000)
average 107491.563749 selects/sec (10000 0.091000)
average 107497.133528 selects/sec (10000 0.089000)
average 107479.128940 selects/sec (10000 0.109000)
average 107487.648803 selects/sec (10000 0.087000)
average 107487.693539 selects/sec (10000 0.093000)
average 107487.738172 selects/sec (10000 0.093000)
average 107487.782704 selects/sec (10000 0.093000)
average 107497.772803 selects/sec (10000 0.086000)
average 107510.882730 selects/sec (10000 0.084000)
average 107391.213162 selects/sec (10000 5.096000) <-- 5 second pause
...
2014-10-09T08:33:18.024+0700: 0.874: [GC
Desired survivor size 11010048 bytes, new threshold 7 (max 15)
[PSYoungGen: 66048K->10737K(76800K)] 66048K->10866K(251392K), 0.0078060 secs] [Times: user=0.03 sys=0.01, real=0.01 secs]
2014-10-09T08:33:18.868+0700: 1.718: [GC
Desired survivor size 11010048 bytes, new threshold 7 (max 15)
[PSYoungGen: 76785K->7559K(76800K)] 76914K->7696K(251392K), 0.0053790 secs] [Times: user=0.02 sys=0.01, real=0.01 secs]
2014-10-09T08:33:19.269+0700: 2.118: [GC
Desired survivor size 11010048 bytes, new threshold 7 (max 15)
[PSYoungGen: 73607K->9575K(76800K)] 73744K->9720K(251392K), 0.0051460 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-10-09T08:33:19.556+0700: 2.406: [GC
Desired survivor size 11010048 bytes, new threshold 7 (max 15)
[PSYoungGen: 75623K->10743K(76800K)] 75768K->12968K(251392K), 0.0072170 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-10-09T08:33:19.786+0700: 2.636: [GC
Desired survivor size 15204352 bytes, new threshold 6 (max 15)
[PSYoungGen: 76791K->4039K(76800K)] 79016K->6272K(251392K), 0.0041750 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-10-09T08:33:20.000+0700: 2.850: [GC
Desired survivor size 14680064 bytes, new threshold 5 (max 15)
[PSYoungGen: 70087K->8007K(145920K)] 72320K->10240K(320512K), 0.0061860 secs] [Times: user=0.03 sys=0.01, real=0.00 secs]
2014-10-09T08:33:20.472+0700: 3.322: [GC
Desired survivor size 15728640 bytes, new threshold 4 (max 15)
[PSYoungGen: 140103K->1376K(146432K)] 142336K->5557K(321024K), 0.0037640 secs] [Times: user=0.02 sys=0.01, real=0.00 secs]
2014-10-09T08:33:25.895+0700: 8.745: [GC
Desired survivor size 15728640 bytes, new threshold 3 (max 15)
[PSYoungGen: 133472K->9632K(279552K)] 137653K->13901K(454144K), 0.0066700 secs] [Times: user=0.04 sys=0.01, real=0.01 secs]
2014-10-09T08:33:26.798+0700: 9.648: [GC
Desired survivor size 15728640 bytes, new threshold 2 (max 15)
[PSYoungGen: 273824K->2112K(256512K)] 278093K->6453K(431104K), 0.0022480 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-10-09T08:33:27.709+0700: 10.559: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 256064K->992K(250880K)] 260405K->5437K(425472K), 0.0018230 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
2014-10-09T08:33:28.487+0700: 11.337: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 245216K->9152K(244224K)] 249661K->13757K(418816K), 0.0049680 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-10-09T08:33:29.170+0700: 12.020: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 244160K->2112K(230400K)] 248765K->6813K(404992K), 0.0017400 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:33:29.803+0700: 12.653: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 228416K->4096K(221696K)] 233117K->8877K(396288K), 0.0025140 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:33:30.418+0700: 13.268: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 221696K->2208K(211968K)] 226477K->7061K(386560K), 0.0021430 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-10-09T08:33:31.122+0700: 13.971: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 211616K->7456K(209408K)] 216469K->12373K(384000K), 0.0043270 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:33:31.760+0700: 14.610: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 209184K->9088K(203776K)] 214101K->14077K(378368K), 0.0054420 secs] [Times: user=0.04 sys=0.00, real=0.00 secs]
2014-10-09T08:33:32.428+0700: 15.278: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 203648K->6912K(194560K)] 208637K->11973K(369152K), 0.0038970 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-10-09T08:33:33.033+0700: 15.882: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 194304K->2471K(183296K)] 199365K->7604K(357888K), 0.0019160 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:33:33.601+0700: 16.451: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 183207K->7776K(182784K)] 188340K->13020K(357376K), 0.0030710 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:33:34.196+0700: 17.046: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 182368K->10112K(178688K)] 187612K->15412K(353280K), 0.0053220 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-10-09T08:33:34.958+0700: 17.808: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 178560K->10048K(173056K)] 183860K->15420K(347648K), 0.0057600 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-10-09T08:33:35.496+0700: 18.346: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 172864K->7584K(164864K)] 178236K->13004K(339456K), 0.0040980 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-10-09T08:33:36.015+0700: 18.865: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 164768K->2784K(155136K)] 170188K->8244K(329728K), 0.0024130 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:33:36.486+0700: 19.336: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 154848K->7392K(154624K)] 160308K->12900K(329216K), 0.0042090 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-10-09T08:33:36.971+0700: 19.821: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 154336K->9696K(152064K)] 159844K->15260K(326656K), 0.0051030 secs] [Times: user=0.04 sys=0.00, real=0.00 secs]
2014-10-09T08:33:37.445+0700: 20.295: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 152032K->10432K(148480K)] 157596K->16060K(323072K), 0.0052200 secs] [Times: user=0.03 sys=0.01, real=0.01 secs]
2014-10-09T08:33:38.172+0700: 21.021: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 148160K->9280K(142848K)] 153788K->14956K(317440K), 0.0054020 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:33:38.610+0700: 21.460: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 142400K->6208K(135680K)] 148076K->11940K(310272K), 0.0098600 secs] [Times: user=0.03 sys=0.01, real=0.01 secs]
2014-10-09T08:33:44.052+0700: 26.901: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 135232K->1120K(126464K)] 140964K->6924K(301056K), 0.0011860 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:33:44.444+0700: 27.293: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 126048K->6336K(131584K)] 131852K->12204K(306176K), 0.0037870 secs] [Times: user=0.02 sys=0.01, real=0.00 secs]
2014-10-09T08:33:44.831+0700: 27.680: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 127680K->10240K(128000K)] 133548K->16180K(302592K), 0.0053340 secs] [Times: user=0.04 sys=0.00, real=0.00 secs]
2014-10-09T08:33:45.225+0700: 28.075: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 128000K->256K(126464K)] 133940K->6252K(301056K), 0.0007880 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:33:45.561+0700: 28.411: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 114432K->1184K(112128K)] 120428K->7220K(286720K), 0.0013650 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:33:45.896+0700: 28.746: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 111776K->480K(119808K)] 117812K->6572K(294400K), 0.0008290 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:33:46.228+0700: 29.078: [GC
Desired survivor size 16777216 bytes, new threshold 1 (max 15)
[PSYoungGen: 108000K->10592K(115200K)] 114092K->16748K(289792K), 0.0053330 secs] [Times: user=0.04 sys=0.01, real=0.01 secs]
2014-10-09T08:33:46.559+0700: 29.409: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 115040K->7296K(113664K)] 121196K->13508K(288256K), 0.0039100 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-10-09T08:33:46.877+0700: 29.727: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 108672K->2464K(101376K)] 114884K->8724K(275968K), 0.0020580 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:33:47.202+0700: 30.052: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 101280K->8544K(109056K)] 107540K->14860K(283648K), 0.0045820 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:33:47.519+0700: 30.369: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 104800K->1536K(95232K)] 111116K->7908K(269824K), 0.0016410 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-10-09T08:33:47.803+0700: 30.653: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 95232K->5408K(101888K)] 101604K->11836K(276480K), 0.0034400 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:33:48.078+0700: 30.928: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 96544K->8256K(105472K)] 102972K->14740K(280064K), 0.0047890 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-10-09T08:33:48.375+0700: 31.225: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 99392K->11072K(124416K)] 105876K->17620K(299008K), 0.0070930 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-10-09T08:33:48.704+0700: 31.554: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 121152K->9760K(125952K)] 127700K->16364K(300544K), 0.0051870 secs] [Times: user=0.04 sys=0.00, real=0.00 secs]
2014-10-09T08:33:49.063+0700: 31.913: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 119840K->8288K(150528K)] 126444K->14956K(325120K), 0.0060770 secs] [Times: user=0.04 sys=0.01, real=0.01 secs]
2014-10-09T08:33:49.480+0700: 32.330: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 142944K->5408K(150528K)] 149612K->12132K(325120K), 0.0039270 secs] [Times: user=0.02 sys=0.01, real=0.00 secs]
2014-10-09T08:33:49.900+0700: 32.750: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 140064K->2432K(178688K)] 146788K->9196K(353280K), 0.0021300 secs] [Times: user=0.01 sys=0.01, real=0.00 secs]
2014-10-09T08:33:50.421+0700: 33.271: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 166784K->320K(159232K)] 173548K->7148K(333824K), 0.0007060 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:33:50.921+0700: 33.771: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 159040K->8192K(163840K)] 165868K->15092K(338432K), 0.0061730 secs] [Times: user=0.03 sys=0.01, real=0.00 secs]
2014-10-09T08:33:51.413+0700: 34.263: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 161792K->1152K(150016K)] 168692K->8116K(324608K), 0.0015680 secs] [Times: user=0.00 sys=0.01, real=0.00 secs]
2014-10-09T08:33:51.888+0700: 34.738: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 149632K->4544K(152064K)] 156596K->11548K(326656K), 0.0060170 secs] [Times: user=0.01 sys=0.01, real=0.01 secs]
2014-10-09T08:33:52.365+0700: 35.215: [GC
Desired survivor size 13631488 bytes, new threshold 1 (max 15)
[PSYoungGen: 147904K->5408K(144384K)] 154908K->12468K(318976K), 0.0041000 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:33:52.812+0700: 35.662: [GC
Desired survivor size 13107200 bytes, new threshold 1 (max 15)
[PSYoungGen: 144160K->4416K(141824K)] 151220K->11540K(316416K), 0.0031120 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:33:53.244+0700: 36.093: [GC
Desired survivor size 13107200 bytes, new threshold 1 (max 15)
[PSYoungGen: 138560K->1056K(131584K)] 145684K->8220K(306176K), 0.0022000 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:33:53.682+0700: 36.532: [GC
Desired survivor size 13631488 bytes, new threshold 1 (max 15)
[PSYoungGen: 131104K->8736K(135680K)] 138268K->15964K(310272K), 0.0053430 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:33:54.095+0700: 36.945: [GC
Desired survivor size 13631488 bytes, new threshold 1 (max 15)
[PSYoungGen: 134688K->2048K(123904K)] 141916K->9340K(298496K), 0.0016440 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:33:54.503+0700: 37.353: [GC
Desired survivor size 13107200 bytes, new threshold 1 (max 15)
[PSYoungGen: 123904K->6048K(126976K)] 131196K->13404K(301568K), 0.0040470 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:33:54.893+0700: 37.743: [GC
Desired survivor size 13631488 bytes, new threshold 1 (max 15)
[PSYoungGen: 124320K->8256K(123392K)] 131676K->15668K(297984K), 0.0061500 secs] [Times: user=0.03 sys=0.01, real=0.00 secs]
2014-10-09T08:33:55.294+0700: 38.144: [GC
Desired survivor size 14155776 bytes, new threshold 1 (max 15)
[PSYoungGen: 122944K->9024K(121856K)] 130356K->16508K(296448K), 0.0049440 secs] [Times: user=0.04 sys=0.00, real=0.00 secs]
2014-10-09T08:33:55.661+0700: 38.511: [GC
Desired survivor size 14155776 bytes, new threshold 1 (max 15)
[PSYoungGen: 120128K->8256K(124928K)] 127612K->15796K(299520K), 0.0051380 secs] [Times: user=0.04 sys=0.00, real=0.00 secs]
2014-10-09T08:33:56.053+0700: 38.903: [GC
Desired survivor size 14155776 bytes, new threshold 1 (max 15)
[PSYoungGen: 119360K->7392K(147456K)] 126900K->14980K(322048K), 0.0060890 secs] [Times: user=0.03 sys=0.01, real=0.00 secs]
2014-10-09T08:33:56.491+0700: 39.341: [GC
Desired survivor size 13631488 bytes, new threshold 1 (max 15)
[PSYoungGen: 141024K->4064K(147456K)] 148612K->11700K(322048K), 0.0026420 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:33:56.948+0700: 39.797: [GC
Desired survivor size 13631488 bytes, new threshold 1 (max 15)
[PSYoungGen: 137696K->640K(130560K)] 145332K->8332K(305152K), 0.0009760 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:33:57.366+0700: 40.216: [GC
Desired survivor size 14155776 bytes, new threshold 1 (max 15)
[PSYoungGen: 130176K->8032K(133632K)] 137868K->15788K(308224K), 0.0053470 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-10-09T08:33:57.796+0700: 40.646: [GC
Desired survivor size 14155776 bytes, new threshold 1 (max 15)
[PSYoungGen: 133472K->1200K(122880K)] 141228K->9012K(297472K), 0.0013090 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:33:58.184+0700: 41.034: [GC
Desired survivor size 13107200 bytes, new threshold 1 (max 15)
[PSYoungGen: 122544K->4992K(131584K)] 130356K->12868K(306176K), 0.0045210 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:33:58.568+0700: 41.418: [GC
Desired survivor size 13107200 bytes, new threshold 1 (max 15)
[PSYoungGen: 122752K->7328K(121856K)] 130628K->15268K(296448K), 0.0052120 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-10-09T08:33:58.929+0700: 41.779: [GC
Desired survivor size 13631488 bytes, new threshold 1 (max 15)
[PSYoungGen: 121504K->7840K(143360K)] 129444K->15836K(317952K), 0.0042730 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-10-09T08:33:59.376+0700: 42.226: [GC
Desired survivor size 13107200 bytes, new threshold 1 (max 15)
[PSYoungGen: 138400K->3040K(129536K)] 146396K->11092K(304128K), 0.0021940 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:33:59.802+0700: 42.652: [GC
Desired survivor size 13631488 bytes, new threshold 1 (max 15)
[PSYoungGen: 129504K->8928K(131584K)] 137556K->17044K(306176K), 0.0052430 secs] [Times: user=0.04 sys=0.00, real=0.00 secs]
2014-10-09T08:34:00.220+0700: 43.070: [GC
Desired survivor size 14155776 bytes, new threshold 1 (max 15)
[PSYoungGen: 131296K->448K(127488K)] 139412K->8628K(302080K), 0.0011400 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:00.615+0700: 43.465: [GC
Desired survivor size 13631488 bytes, new threshold 1 (max 15)
[PSYoungGen: 119232K->2848K(118272K)] 127412K->11092K(292864K), 0.0019960 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:01.000+0700: 43.850: [GC
Desired survivor size 13107200 bytes, new threshold 1 (max 15)
[PSYoungGen: 118048K->3808K(120320K)] 126292K->12108K(294912K), 0.0028960 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:34:01.363+0700: 44.213: [GC
Desired survivor size 12582912 bytes, new threshold 1 (max 15)
[PSYoungGen: 115424K->3040K(111616K)] 123724K->11404K(286208K), 0.0022010 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:34:01.706+0700: 44.556: [GC
Desired survivor size 12582912 bytes, new threshold 1 (max 15)
[PSYoungGen: 111583K->992K(114688K)] 119948K->9412K(289280K), 0.0011900 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:02.054+0700: 44.904: [GC
Desired survivor size 13631488 bytes, new threshold 1 (max 15)
[PSYoungGen: 106464K->10240K(112640K)] 114884K->18692K(287232K), 0.0064830 secs] [Times: user=0.05 sys=0.00, real=0.01 secs]
2014-10-09T08:34:02.409+0700: 45.259: [GC
Desired survivor size 13107200 bytes, new threshold 1 (max 15)
[PSYoungGen: 112640K->5664K(108544K)] 121092K->14172K(283136K), 0.0034180 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-10-09T08:34:02.745+0700: 45.594: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 104992K->12160K(112128K)] 113500K->20716K(286720K), 0.0067150 secs] [Times: user=0.05 sys=0.00, real=0.01 secs]
2014-10-09T08:34:03.195+0700: 46.044: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 111488K->6272K(133120K)] 120044K->14884K(307712K), 0.0049660 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-10-09T08:34:03.687+0700: 46.536: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 125568K->9056K(133632K)] 134180K->17708K(308224K), 0.0059130 secs] [Times: user=0.04 sys=0.01, real=0.01 secs]
2014-10-09T08:34:04.099+0700: 46.949: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 128352K->11936K(156160K)] 137004K->20644K(330752K), 0.0082720 secs] [Times: user=0.05 sys=0.01, real=0.01 secs]
2014-10-09T08:34:04.560+0700: 47.410: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 153760K->12302K(157696K)] 162468K->21066K(332288K), 0.0075390 secs] [Times: user=0.04 sys=0.01, real=0.00 secs]
2014-10-09T08:34:05.032+0700: 47.882: [GC
Desired survivor size 17825792 bytes, new threshold 1 (max 15)
[PSYoungGen: 154126K->544K(186880K)] 162890K->9364K(361472K), 0.0008610 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:34:05.600+0700: 48.450: [GC
Desired survivor size 17825792 bytes, new threshold 1 (max 15)
[PSYoungGen: 170528K->672K(165376K)] 179348K->9532K(339968K), 0.0037170 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:34:06.243+0700: 49.093: [GC
Desired survivor size 18350080 bytes, new threshold 1 (max 15)
[PSYoungGen: 165024K->10880K(181248K)] 173884K->19780K(355840K), 0.0080460 secs] [Times: user=0.04 sys=0.01, real=0.01 secs]
2014-10-09T08:34:06.854+0700: 49.703: [GC
Desired survivor size 17825792 bytes, new threshold 1 (max 15)
[PSYoungGen: 174720K->8224K(166912K)] 183620K->17180K(341504K), 0.0047340 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:34:07.488+0700: 50.338: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 166432K->3136K(164352K)] 175388K->12156K(338944K), 0.0028720 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-10-09T08:34:08.011+0700: 50.861: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 156224K->8416K(156672K)] 165244K->17500K(331264K), 0.0050290 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:34:08.501+0700: 51.351: [GC
Desired survivor size 17825792 bytes, new threshold 1 (max 15)
[PSYoungGen: 156384K->11552K(164352K)] 165468K->20692K(338944K), 0.0075860 secs] [Times: user=0.05 sys=0.01, real=0.00 secs]
2014-10-09T08:34:08.990+0700: 51.840: [GC
Desired survivor size 17825792 bytes, new threshold 1 (max 15)
[PSYoungGen: 159008K->1856K(144896K)] 168148K->11060K(319488K), 0.0017120 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:09.519+0700: 52.369: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 144704K->2432K(150016K)] 153908K->11700K(324608K), 0.0025120 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-10-09T08:34:09.986+0700: 52.836: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 140672K->1088K(135168K)] 149940K->10412K(309760K), 0.0015720 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:34:10.444+0700: 53.294: [GC
Desired survivor size 17825792 bytes, new threshold 1 (max 15)
[PSYoungGen: 134720K->10304K(143360K)] 144044K->19692K(317952K), 0.0054350 secs] [Times: user=0.04 sys=0.00, real=0.00 secs]
2014-10-09T08:34:11.005+0700: 53.855: [GC
Desired survivor size 16777216 bytes, new threshold 1 (max 15)
[PSYoungGen: 139840K->5184K(131072K)] 149228K->14628K(305664K), 0.0035680 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:34:11.448+0700: 54.298: [GC
Desired survivor size 17825792 bytes, new threshold 1 (max 15)
[PSYoungGen: 130624K->10880K(135680K)] 140068K->20380K(310272K), 0.0060680 secs] [Times: user=0.05 sys=0.00, real=0.01 secs]
2014-10-09T08:34:11.842+0700: 54.692: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 132224K->2176K(120320K)] 141724K->11740K(294912K), 0.0018880 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:12.348+0700: 55.198: [GC
Desired survivor size 16777216 bytes, new threshold 1 (max 15)
[PSYoungGen: 119936K->4256K(126464K)] 129500K->13876K(301056K), 0.0043000 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-10-09T08:34:12.732+0700: 55.581: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 118432K->4640K(115712K)] 128052K->14316K(290304K), 0.0031340 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:13.123+0700: 55.973: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 115232K->3648K(118784K)] 124908K->13380K(293376K), 0.0024790 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:34:13.495+0700: 56.345: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 111168K->1152K(105984K)] 120900K->10932K(280576K), 0.0014650 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:13.923+0700: 56.773: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 105600K->9824K(114176K)] 115380K->19676K(288768K), 0.0056560 secs] [Times: user=0.04 sys=0.00, real=0.00 secs]
2014-10-09T08:34:14.290+0700: 57.140: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 111200K->4672K(103936K)] 121052K->14580K(278528K), 0.0031990 secs] [Times: user=0.02 sys=0.01, real=0.00 secs]
2014-10-09T08:34:14.620+0700: 57.469: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 103488K->11008K(112640K)] 113396K->20972K(287232K), 0.0062940 secs] [Times: user=0.04 sys=0.00, real=0.00 secs]
2014-10-09T08:34:14.939+0700: 57.789: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 108800K->4224K(113664K)] 118764K->14252K(288256K), 0.0029660 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-10-09T08:34:15.255+0700: 58.105: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 102016K->10176K(132608K)] 112044K->20260K(307200K), 0.0075160 secs] [Times: user=0.04 sys=0.01, real=0.01 secs]
2014-10-09T08:34:15.648+0700: 58.498: [GC
Desired survivor size 17825792 bytes, new threshold 1 (max 15)
[PSYoungGen: 127424K->12270K(133120K)] 137508K->22394K(307712K), 0.0053530 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-10-09T08:34:16.070+0700: 58.919: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 129518K->1472K(157184K)] 139642K->11652K(331776K), 0.0015800 secs] [Times: user=0.01 sys=0.01, real=0.00 secs]
2014-10-09T08:34:16.536+0700: 59.386: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 142272K->1312K(137728K)] 152452K->11548K(312320K), 0.0012300 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:17.036+0700: 59.886: [GC
Desired survivor size 18350080 bytes, new threshold 1 (max 15)
[PSYoungGen: 137504K->11552K(152064K)] 147740K->21844K(326656K), 0.0082900 secs] [Times: user=0.05 sys=0.01, real=0.01 secs]
2014-10-09T08:34:17.514+0700: 60.364: [GC
Desired survivor size 18350080 bytes, new threshold 1 (max 15)
[PSYoungGen: 146720K->8800K(153088K)] 157012K->19156K(327680K), 0.0049790 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:34:18.012+0700: 60.862: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 143968K->6080K(178176K)] 154324K->16500K(352768K), 0.0048420 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:34:18.698+0700: 61.548: [GC
Desired survivor size 16777216 bytes, new threshold 1 (max 15)
[PSYoungGen: 168384K->2816K(159744K)] 178804K->13284K(334336K), 0.0021700 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-10-09T08:34:24.227+0700: 67.077: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 159488K->9696K(163840K)] 169956K->20204K(338432K), 0.0068610 secs] [Times: user=0.04 sys=0.01, real=0.01 secs]
2014-10-09T08:34:24.692+0700: 67.542: [GC
Desired survivor size 16777216 bytes, new threshold 1 (max 15)
[PSYoungGen: 161248K->1920K(148480K)] 171756K->12484K(323072K), 0.0015450 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:25.220+0700: 68.070: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 148352K->4192K(152576K)] 158916K->14812K(327168K), 0.0032430 secs] [Times: user=0.02 sys=0.01, real=0.00 secs]
2014-10-09T08:34:25.662+0700: 68.512: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 146016K->4352K(141824K)] 156636K->15004K(316416K), 0.0052360 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:26.102+0700: 68.952: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 141568K->2784K(142848K)] 152220K->13500K(317440K), 0.0020020 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:26.536+0700: 69.386: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 135392K->11392K(140288K)] 146108K->22164K(314880K), 0.0056280 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-10-09T08:34:26.916+0700: 69.766: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 139904K->5792K(134144K)] 150676K->16604K(308736K), 0.0037400 secs] [Times: user=0.02 sys=0.01, real=0.01 secs]
2014-10-09T08:34:27.456+0700: 70.306: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 130208K->11008K(132096K)] 141020K->21860K(306688K), 0.0059390 secs] [Times: user=0.04 sys=0.01, real=0.01 secs]
2014-10-09T08:34:27.843+0700: 70.692: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 131840K->2048K(129536K)] 142692K->12956K(304128K), 0.0023350 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:28.229+0700: 71.079: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 119296K->4160K(118272K)] 130204K->15124K(292864K), 0.0025090 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-10-09T08:34:28.570+0700: 71.420: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 117824K->4672K(119808K)] 128788K->15692K(294400K), 0.0034750 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:28.913+0700: 71.762: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 114752K->3264K(110592K)] 125772K->14340K(285184K), 0.0020370 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:29.272+0700: 72.122: [GC
Desired survivor size 14155776 bytes, new threshold 1 (max 15)
[PSYoungGen: 110272K->768K(114176K)] 121348K->11900K(288768K), 0.0011090 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:34:29.600+0700: 72.450: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 104704K->9216K(110080K)] 115836K->20404K(284672K), 0.0053010 secs] [Times: user=0.04 sys=0.00, real=0.00 secs]
2014-10-09T08:34:29.909+0700: 72.759: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 110080K->4000K(109568K)] 121268K->15236K(284160K), 0.0038020 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-10-09T08:34:30.265+0700: 73.115: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 102304K->10112K(112640K)] 113540K->21396K(287232K), 0.0059430 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-10-09T08:34:35.589+0700: 78.439: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 108416K->3424K(99328K)] 119700K->14772K(273920K), 0.0026450 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-10-09T08:34:35.964+0700: 78.814: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 99168K->8448K(101888K)] 110516K->19844K(276480K), 0.0044230 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:34:36.277+0700: 79.127: [GC
Desired survivor size 16777216 bytes, new threshold 1 (max 15)
[PSYoungGen: 101632K->12270K(117248K)] 113028K->23714K(291840K), 0.0059160 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-10-09T08:34:36.594+0700: 79.444: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 114670K->7616K(118784K)] 126114K->19092K(293376K), 0.0044940 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:34:36.914+0700: 79.764: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 110016K->3104K(137728K)] 121492K->14620K(312320K), 0.0030420 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:37.306+0700: 80.156: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 125984K->7488K(138240K)] 137500K->19060K(312832K), 0.0043960 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-10-09T08:34:37.689+0700: 80.538: [GC
Desired survivor size 16777216 bytes, new threshold 1 (max 15)
[PSYoungGen: 130368K->11808K(160768K)] 141940K->23444K(335360K), 0.0072670 secs] [Times: user=0.04 sys=0.01, real=0.01 secs]
2014-10-09T08:34:38.133+0700: 80.983: [GC
Desired survivor size 16777216 bytes, new threshold 1 (max 15)
[PSYoungGen: 157728K->1408K(162304K)] 169364K->13092K(336896K), 0.0013570 secs] [Times: user=0.00 sys=0.01, real=0.00 secs]
2014-10-09T08:34:38.620+0700: 81.470: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 147328K->3424K(144896K)] 159012K->15172K(319488K), 0.0026820 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:44.069+0700: 86.919: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 144736K->3424K(140288K)] 156484K->15220K(314880K), 0.0025140 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-10-09T08:34:44.531+0700: 87.381: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 140128K->1312K(133632K)] 151924K->13172K(308224K), 0.0015840 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:44.941+0700: 87.791: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 133408K->9728K(137728K)] 145268K->21644K(312320K), 0.0071480 secs] [Times: user=0.04 sys=0.01, real=0.00 secs]
2014-10-09T08:34:45.326+0700: 88.176: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 137728K->3904K(128000K)] 149644K->15884K(302592K), 0.0032690 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-10-09T08:34:45.721+0700: 88.570: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 127808K->8928K(129536K)] 139788K->20948K(304128K), 0.0047530 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:34:46.100+0700: 88.950: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 129248K->224K(117760K)] 141268K->12292K(292352K), 0.0016520 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:34:46.506+0700: 89.356: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 116960K->1664K(115200K)] 129028K->13780K(289792K), 0.0013720 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:46.873+0700: 89.722: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 114816K->1632K(118272K)] 126932K->13796K(292864K), 0.0017120 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:34:47.216+0700: 90.066: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 111712K->448K(107520K)] 123876K->12652K(282112K), 0.0016430 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:34:47.557+0700: 90.407: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 107456K->10304K(118272K)] 119660K->22556K(292864K), 0.0058180 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-10-09T08:34:47.871+0700: 90.720: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 114240K->6304K(107520K)] 126492K->18620K(282112K), 0.0040010 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:34:48.182+0700: 91.032: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 107168K->928K(110080K)] 119484K->13284K(284672K), 0.0011730 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:34:48.596+0700: 91.446: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 99232K->7040K(102912K)] 111588K->19460K(277504K), 0.0043970 secs] [Times: user=0.02 sys=0.01, real=0.01 secs]
2014-10-09T08:34:48.909+0700: 91.759: [GC
Desired survivor size 16777216 bytes, new threshold 1 (max 15)
[PSYoungGen: 102784K->11968K(109056K)] 115204K->24452K(283648K), 0.0059960 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-10-09T08:34:49.209+0700: 92.059: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 106176K->3744K(95744K)] 118660K->16276K(270336K), 0.0033690 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-10-09T08:34:49.495+0700: 92.345: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 95392K->6944K(108032K)] 107924K->19500K(282624K), 0.0057000 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-10-09T08:34:49.783+0700: 92.633: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 99104K->10112K(107520K)] 111660K->22716K(282112K), 0.0052210 secs] [Times: user=0.04 sys=0.00, real=0.00 secs]
2014-10-09T08:34:50.072+0700: 92.922: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 102272K->1024K(126464K)] 114876K->13676K(301056K), 0.0010990 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:34:50.570+0700: 93.420: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 111616K->320K(108032K)] 124268K->13028K(282624K), 0.0009480 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:34:50.905+0700: 93.755: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 107840K->10592K(122368K)] 120548K->23356K(296960K), 0.0074310 secs] [Times: user=0.04 sys=0.01, real=0.01 secs]
2014-10-09T08:34:51.293+0700: 94.142: [GC
Desired survivor size 16777216 bytes, new threshold 1 (max 15)
[PSYoungGen: 117088K->7552K(123392K)] 129852K->20372K(297984K), 0.0038280 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:34:51.627+0700: 94.477: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 114048K->4800K(142336K)] 126868K->17652K(316928K), 0.0039470 secs] [Times: user=0.02 sys=0.01, real=0.01 secs]
2014-10-09T08:34:52.025+0700: 94.875: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 132800K->11456K(143360K)] 145652K->24356K(317952K), 0.0072420 secs] [Times: user=0.05 sys=0.01, real=0.01 secs]
2014-10-09T08:34:52.427+0700: 95.276: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 139456K->5696K(168448K)] 152356K->18612K(343040K), 0.0073940 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-10-09T08:34:52.888+0700: 95.738: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 159296K->11360K(169472K)] 172212K->24324K(344064K), 0.0071720 secs] [Times: user=0.04 sys=0.01, real=0.01 secs]
2014-10-09T08:34:53.495+0700: 96.345: [GC
Desired survivor size 16777216 bytes, new threshold 1 (max 15)
[PSYoungGen: 164960K->4256K(200192K)] 177924K->17268K(374784K), 0.0034470 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:34:54.089+0700: 96.939: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 188576K->10912K(200704K)] 201588K->23972K(375296K), 0.0077120 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-10-09T08:34:59.677+0700: 102.527: [GC
Desired survivor size 16777216 bytes, new threshold 1 (max 15)
[PSYoungGen: 195232K->4928K(182784K)] 208292K->18036K(357376K), 0.0042650 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-10-09T08:35:00.368+0700: 103.217: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 182592K->8576K(180224K)] 195700K->21732K(354816K), 0.0059600 secs] [Times: user=0.03 sys=0.01, real=0.01 secs]
2014-10-09T08:35:00.933+0700: 103.783: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 180096K->9472K(175104K)] 193252K->22676K(349696K), 0.0063400 secs] [Times: user=0.04 sys=0.00, real=0.00 secs]
2014-10-09T08:35:01.468+0700: 104.318: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 174848K->7584K(167424K)] 188052K->20844K(342016K), 0.0047370 secs] [Times: user=0.03 sys=0.01, real=0.01 secs]
2014-10-09T08:35:01.973+0700: 104.823: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 167328K->3168K(157696K)] 180588K->16484K(332288K), 0.0061470 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-10-09T08:35:02.462+0700: 105.311: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 157280K->8960K(158208K)] 170596K->22340K(332800K), 0.0052890 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:35:03.027+0700: 105.877: [GC
Desired survivor size 16777216 bytes, new threshold 1 (max 15)
[PSYoungGen: 157952K->12366K(156672K)] 171332K->25794K(331264K), 0.0056000 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-10-09T08:35:03.625+0700: 106.475: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 156238K->1216K(140800K)] 169666K->14700K(315392K), 0.0014120 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:35:09.050+0700: 111.900: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 140480K->288K(135168K)] 153964K->13804K(309760K), 0.0030380 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:35:09.467+0700: 112.317: [GC
Desired survivor size 17825792 bytes, new threshold 1 (max 15)
[PSYoungGen: 134944K->9984K(140800K)] 148460K->23564K(315392K), 0.0051500 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-10-09T08:35:09.894+0700: 112.744: [GC
Desired survivor size 16777216 bytes, new threshold 1 (max 15)
[PSYoungGen: 140544K->5440K(132096K)] 154124K->19076K(306688K), 0.0037110 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:35:10.299+0700: 113.148: [GC
Desired survivor size 17825792 bytes, new threshold 1 (max 15)
[PSYoungGen: 131904K->11584K(134144K)] 145540K->25244K(308736K), 0.0069120 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-10-09T08:35:10.694+0700: 113.544: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 133952K->3424K(126464K)] 147612K->17124K(301056K), 0.0041130 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:35:11.057+0700: 113.906: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 122208K->6016K(121344K)] 135908K->19756K(295936K), 0.0036200 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-10-09T08:35:11.417+0700: 114.267: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 121216K->7072K(122880K)] 134956K->20860K(297472K), 0.0044870 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-10-09T08:35:11.760+0700: 114.609: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 118688K->6272K(115200K)] 132476K->20116K(289792K), 0.0046570 secs] [Times: user=0.03 sys=0.01, real=0.00 secs]
2014-10-09T08:35:12.087+0700: 114.937: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 114816K->4384K(116736K)] 128660K->18276K(291328K), 0.0031120 secs] [Times: user=0.02 sys=0.01, real=0.01 secs]
2014-10-09T08:35:12.434+0700: 115.284: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 109856K->1024K(103424K)] 123748K->14964K(278016K), 0.0012350 secs] [Times: user=0.01 sys=0.01, real=0.00 secs]
2014-10-09T08:35:12.767+0700: 115.616: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 103424K->9024K(111616K)] 117364K->23028K(286208K), 0.0049060 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-10-09T08:35:13.093+0700: 115.943: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 108352K->3072K(99840K)] 122356K->17124K(274432K), 0.0023410 secs] [Times: user=0.02 sys=0.01, real=0.00 secs]
2014-10-09T08:35:13.403+0700: 116.253: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 99840K->8384K(111104K)] 113892K->22484K(285696K), 0.0047370 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:35:13.714+0700: 116.563: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 105152K->1216K(95744K)] 119252K->15372K(270336K), 0.0021260 secs] [Times: user=0.01 sys=0.01, real=0.00 secs]
2014-10-09T08:35:14.000+0700: 116.850: [GC
Desired survivor size 14155776 bytes, new threshold 1 (max 15)
[PSYoungGen: 95424K->5408K(102400K)] 109580K->19620K(276992K), 0.0050770 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:35:14.296+0700: 117.146: [GC
Desired survivor size 14155776 bytes, new threshold 1 (max 15)
[PSYoungGen: 97056K->8512K(105472K)] 111268K->22772K(280064K), 0.0051010 secs] [Times: user=0.03 sys=0.00, real=0.01 secs]
2014-10-09T08:35:14.577+0700: 117.426: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 100160K->11648K(122368K)] 114420K->25972K(296960K), 0.0082260 secs] [Times: user=0.04 sys=0.01, real=0.01 secs]
2014-10-09T08:35:14.902+0700: 117.751: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 120192K->9600K(123904K)] 134516K->23972K(298496K), 0.0050150 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:35:20.242+0700: 123.091: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 118144K->7648K(144896K)] 132516K->22076K(319488K), 0.0058490 secs] [Times: user=0.03 sys=0.01, real=0.00 secs]
2014-10-09T08:35:20.650+0700: 123.500: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 138208K->3008K(145408K)] 152636K->17484K(320000K), 0.0021760 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:35:21.072+0700: 123.922: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 133568K->10720K(170496K)] 148044K->25260K(345088K), 0.0075770 secs] [Times: user=0.04 sys=0.01, real=0.01 secs]
2014-10-09T08:35:21.558+0700: 124.408: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 166368K->4544K(171520K)] 180908K->19132K(346112K), 0.0042370 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-10-09T08:35:22.040+0700: 124.889: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 160192K->10720K(201728K)] 174780K->25364K(376320K), 0.0070230 secs] [Times: user=0.04 sys=0.01, real=0.00 secs]
2014-10-09T08:35:22.772+0700: 125.621: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 197088K->5824K(202240K)] 211732K->20516K(376832K), 0.0040770 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:35:23.353+0700: 126.203: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 192192K->384K(180224K)] 206884K->15140K(354816K), 0.0011200 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:35:23.961+0700: 126.811: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 180096K->4864K(188928K)] 194852K->19668K(363520K), 0.0029750 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:35:24.509+0700: 127.359: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 178432K->6496K(174080K)] 193236K->21348K(348672K), 0.0059080 secs] [Times: user=0.02 sys=0.01, real=0.01 secs]
2014-10-09T08:35:25.045+0700: 127.895: [GC
Desired survivor size 13631488 bytes, new threshold 1 (max 15)
[PSYoungGen: 173920K->5504K(167424K)] 188772K->20420K(342016K), 0.0042750 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:35:25.634+0700: 128.484: [GC
Desired survivor size 13631488 bytes, new threshold 1 (max 15)
[PSYoungGen: 167296K->2016K(158208K)] 182212K->17004K(332800K), 0.0022030 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:35:31.136+0700: 133.986: [GC
Desired survivor size 14155776 bytes, new threshold 1 (max 15)
[PSYoungGen: 158176K->8512K(159744K)] 173164K->23564K(334336K), 0.0048390 secs] [Times: user=0.03 sys=0.01, real=0.01 secs]
2014-10-09T08:35:31.627+0700: 134.477: [GC
Desired survivor size 14155776 bytes, new threshold 1 (max 15)
[PSYoungGen: 159552K->288K(146432K)] 174604K->15396K(321024K), 0.0010470 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:35:37.074+0700: 139.924: [GC
Desired survivor size 14155776 bytes, new threshold 1 (max 15)
[PSYoungGen: 146208K->2432K(155136K)] 161316K->17596K(329728K), 0.0023600 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:35:37.507+0700: 140.356: [GC
Desired survivor size 13631488 bytes, new threshold 1 (max 15)
[PSYoungGen: 143744K->2400K(139264K)] 158908K->17628K(313856K), 0.0025740 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:35:37.939+0700: 140.789: [GC
Desired survivor size 13631488 bytes, new threshold 1 (max 15)
[PSYoungGen: 139104K->480K(132608K)] 154332K->15748K(307200K), 0.0009630 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-10-09T08:35:38.374+0700: 141.224: [GC
Desired survivor size 14155776 bytes, new threshold 1 (max 15)
[PSYoungGen: 132576K->8928K(137216K)] 147844K->24252K(311808K), 0.0048250 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:35:38.814+0700: 141.664: [GC
Desired survivor size 13631488 bytes, new threshold 1 (max 15)
[PSYoungGen: 136928K->2976K(126976K)] 152252K->18348K(301568K), 0.0023450 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:35:39.192+0700: 142.042: [GC
Desired survivor size 14155776 bytes, new threshold 1 (max 15)
[PSYoungGen: 126880K->7648K(128000K)] 142252K->23068K(302592K), 0.0041300 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:35:39.554+0700: 142.403: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 127968K->10816K(128000K)] 143388K->26276K(302592K), 0.0074400 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-10-09T08:35:39.927+0700: 142.777: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 127552K->288K(113664K)] 143012K->15804K(288256K), 0.0010870 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:35:40.315+0700: 143.165: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 113440K->320K(124928K)] 128956K->15884K(299520K), 0.0007920 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:35:40.660+0700: 143.509: [GC
Desired survivor size 16777216 bytes, new threshold 1 (max 15)
[PSYoungGen: 110400K->11616K(118784K)] 125964K->27244K(293376K), 0.0059370 secs] [Times: user=0.04 sys=0.00, real=0.00 secs]
2014-10-09T08:35:41.021+0700: 143.871: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 118624K->8928K(113152K)] 134252K->24620K(287744K), 0.0062500 secs] [Times: user=0.04 sys=0.00, real=0.00 secs]
2014-10-09T08:35:46.361+0700: 149.210: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 112864K->4800K(108544K)] 128556K->20540K(283136K), 0.0030570 secs] [Times: user=0.02 sys=0.00, real=0.00 secs]
2014-10-09T08:35:46.684+0700: 149.533: [GC
Desired survivor size 17825792 bytes, new threshold 1 (max 15)
[PSYoungGen: 105664K->12128K(116736K)] 121404K->27924K(291328K), 0.0060680 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-10-09T08:35:47.077+0700: 149.927: [GC
Desired survivor size 16777216 bytes, new threshold 1 (max 15)
[PSYoungGen: 112992K->7008K(136704K)] 128788K->22852K(311296K), 0.0051320 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-10-09T08:35:47.444+0700: 150.293: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 128352K->10656K(137728K)] 144196K->26564K(312320K), 0.0056640 secs] [Times: user=0.04 sys=0.00, real=0.00 secs]
2014-10-09T08:35:47.817+0700: 150.667: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 132000K->2016K(162816K)] 147908K->17980K(337408K), 0.0019380 secs] [Times: user=0.01 sys=0.01, real=0.00 secs]
2014-10-09T08:35:48.416+0700: 151.266: [GC
Desired survivor size 16777216 bytes, new threshold 1 (max 15)
[PSYoungGen: 147936K->4320K(145920K)] 163900K->20340K(320512K), 0.0044240 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-10-09T08:35:48.856+0700: 151.706: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 145632K->4384K(146432K)] 161652K->20460K(321024K), 0.0032190 secs] [Times: user=0.02 sys=0.01, real=0.00 secs]
2014-10-09T08:35:49.272+0700: 152.122: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 141088K->2208K(134656K)] 157164K->18348K(309248K), 0.0017680 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:35:54.799+0700: 157.648: [GC
Desired survivor size 16777216 bytes, new threshold 1 (max 15)
[PSYoungGen: 134304K->10784K(141312K)] 150444K->26972K(315904K), 0.0065620 secs] [Times: user=0.04 sys=0.00, real=0.01 secs]
2014-10-09T08:35:55.218+0700: 158.068: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 138784K->4832K(129024K)] 154972K->21068K(303616K), 0.0031330 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-10-09T08:35:55.621+0700: 158.471: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 128736K->9600K(133120K)] 144972K->25884K(307712K), 0.0058720 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:35:56.052+0700: 158.902: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 129920K->544K(117760K)] 146204K->16876K(292352K), 0.0009890 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:35:56.424+0700: 159.274: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 117280K->2464K(124416K)] 133612K->18844K(299008K), 0.0023400 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:35:56.795+0700: 159.644: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 115616K->2400K(112640K)] 131996K->18812K(287232K), 0.0018980 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2014-10-09T08:35:57.151+0700: 160.001: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 112480K->1152K(118784K)] 128892K->17628K(293376K), 0.0012460 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:35:57.477+0700: 160.327: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 108160K->10880K(115200K)] 124636K->27420K(289792K), 0.0053390 secs] [Times: user=0.03 sys=0.01, real=0.01 secs]
2014-10-09T08:35:57.871+0700: 160.720: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 114816K->6848K(112640K)] 131356K->23444K(287232K), 0.0045390 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:35:58.222+0700: 161.072: [GC
Desired survivor size 15728640 bytes, new threshold 1 (max 15)
[PSYoungGen: 107712K->1376K(99840K)] 124308K->18012K(274432K), 0.0015830 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2014-10-09T08:35:58.591+0700: 161.441: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 99680K->7392K(107520K)] 116316K->24076K(282112K), 0.0046140 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:35:58.941+0700: 161.790: [GC
Desired survivor size 17301504 bytes, new threshold 1 (max 15)
[PSYoungGen: 103136K->12530K(110592K)] 119820K->29255K(285184K), 0.0057760 secs] [Times: user=0.04 sys=0.00, real=0.00 secs]
2014-10-09T08:35:59.258+0700: 162.108: [GC
Desired survivor size 16252928 bytes, new threshold 1 (max 15)
[PSYoungGen: 108274K->5056K(130048K)] 124999K->21836K(304640K), 0.0044750 secs] [Times: user=0.02 sys=0.01, real=0.01 secs]
2014-10-09T08:35:59.668+0700: 162.517: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 120256K->5920K(131072K)] 137036K->22740K(305664K), 0.0042330 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2014-10-09T08:36:05.032+0700: 167.882: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 121120K->7008K(118784K)] 137940K->23876K(293376K), 0.0048450 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:36:05.511+0700: 168.361: [GC
Desired survivor size 14155776 bytes, new threshold 1 (max 15)
[PSYoungGen: 118624K->6624K(115200K)] 135492K->23540K(289792K), 0.0044130 secs] [Times: user=0.03 sys=0.00, real=0.00 secs]
2014-10-09T08:36:05.832+0700: 168.682: [GC
Desired survivor size 13631488 bytes, new threshold 1 (max 15)
[PSYoungGen: 115168K->4768K(110592K)] 132084K->21740K(285184K), 0.0039520 secs] [Times: user=0.02 sys=0.01, real=0.00 secs]
2014-10-09T08:36:06.169+0700: 169.019: [GC
Desired survivor size 13631488 bytes, new threshold 1 (max 15)
[PSYoungGen: 110240K->1472K(103936K)] 127212K->18500K(278528K), 0.0019440 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
2014-10-09T08:36:06.511+0700: 169.361: [GC
Desired survivor size 14155776 bytes, new threshold 1 (max 15)
[PSYoungGen: 103872K->9312K(126464K)] 120900K->26396K(301056K), 0.0060890 secs] [Times: user=0.04 sys=0.01, real=0.00 secs]
2014-10-09T08:36:06.992+0700: 169.842: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 122464K->9408K(126976K)] 139548K->26532K(301568K), 0.0057870 secs] [Times: user=0.03 sys=0.01, real=0.00 secs]
2014-10-09T08:36:07.374+0700: 170.224: [GC
Desired survivor size 15204352 bytes, new threshold 1 (max 15)
[PSYoungGen: 122560K->9472K(150016K)] 139684K->26652K(324608K), 0.0070120 secs] [Times: user=0.04 sys=0.01, real=0.01 secs]
2014-10-09T08:36:07.824+0700: 170.673: [GC
Desired survivor size 14680064 bytes, new threshold 1 (max 15)
[PSYoungGen: 145152K->7072K(150528K)] 162332K->24300K(325120K), 0.0047980 secs] [Times: user=0.03 sys=0.01, real=0.00 secs]
Heap
PSYoungGen total 150528K, used 22478K [0x00000007aaa80000, 0x00000007b6580000, 0x0000000800000000)
eden space 135680K, 11% used [0x00000007aaa80000,0x00000007ab98b8e8,0x00000007b2f00000)
from space 14848K, 47% used [0x00000007b2f00000,0x00000007b35e8000,0x00000007b3d80000)
to space 14336K, 0% used [0x00000007b5780000,0x00000007b5780000,0x00000007b6580000)
ParOldGen total 174592K, used 17228K [0x0000000700000000, 0x000000070aa80000, 0x00000007aaa80000)
object space 174592K, 9% used [0x0000000700000000,0x00000007010d3168,0x000000070aa80000)
PSPermGen total 21504K, used 9639K [0x00000006fae00000, 0x00000006fc300000, 0x0000000700000000)
object space 21504K, 44% used [0x00000006fae00000,0x00000006fb769e38,0x00000006fc300000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment