OpenJDK 17: Loitering AbstractQueuedSynchronizer$ConditionNode instances

Frank Kretschmer frank.kretschmer at gmx.net
Thu Feb 8 11:15:45 UTC 2024


Hello Thomas, hello Core-Libs-Dev,

thank you for cc'ing my email. In deed my idea/suggestion is to modify
the AbstractQueuedSynchronizer$ConditionNode handling in such a way that
it gets unlinked from the chain of condition nodes if it is not needed
any more (it might be the "nextWaiter" node), in order to be more
GC-friendly.

@core-libs-dev: I've just attached the “G1LoiteringConditionNodes” demo
class and "gc.log" again so that you can have a look if you like.

Best regards

Frank


Am 08.02.2024 um 11:04 schrieb Thomas Schatzl:
> Hi,
>
>   since this looks like a suggestion for a change to the libraries
> similar to the mentioned JDK-6805775, and not actually GC, cc'ing the
> core-libs-dev mailing list.
>
> Hth,
>   Thomas
>
> On 07.02.24 15:20, Frank Kretschmer wrote:
>> Hi Java GC-experts,
>>
>> I'm facing an interesting G1 garbage collector observation in OpenJDK
>> 17.0.9+9, which I would like to share with you.
>>
>> My application runs many asynchronous tasks in a fixed thread pool,
>> utilizing its standard LinkedBlockingQueue. Usually, it generates just a
>> little garbage, but from time to time, I observed that the survivor
>> spaces grow unexpectedly, and minor collection times increase.
>>
>> This being the case, many
>> java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode
>> instances can be found on the heap. In fact, the whole heap (rank 1 as
>> shown in jmap) was filled up with ConditionNode instances after a while.
>>
>> After some tests, I figured out that G1 seems to be able to collect
>> “dead” ConditionNode instances during minor collections only if no
>> formerly alive ConditionNode instances were promoted to the old
>> generation and died there.
>>
>> To illustrate that, I've attached a “G1LoiteringConditionNodes” class
>> that can be run for demo purposes, e.g. under Linux with OpenJDK
>> 17.0.9+9 (VM options see comments within the class), and its gc-log
>> output. It shows that during the first two minutes, everything is fine,
>> but after a promotion to the old generation, survivors grow and minor
>> pause time increase from 3 to 10ms.
>>
>> For me, it looks like an issue similar to
>> https://bugs.openjdk.org/browse/JDK-6805775 “LinkedBlockingQueue Nodes
>> should unlink themselves before becoming garbage”, which was fixed in
>> OpenJDK 7.
>>
>> What’s your opinion about that? Wouldn’t it be worth to enable G1 to
>> collect those AbstractQueuedSynchronizer$ConditionNode instances during
>> minor collections, as it is done for LinkedBlockingQueue Nodes?
>>
>> Best regards
>>
>> Frank Kretschmer, Java Realtime Application Developer
>
-------------- next part --------------
import java.util.Arrays;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;

/**
 * Asynchronously execute tasks in a fixed thread pool, in order to demonstrate that
 * {@code java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode} instances are properly
 * collected during minor collections, but only if no instances were promoted to the old generation.
 * <p>
 * If such instances were promoted to old generation (here after 2 minutes),
 * ConditionNode instances are not collected during minor collections by G1 in OpenJDK 17.0.9+9 any more,
 * but promoted to survivor spaces and finally to the old generation, filling it up until a
 * mixed or full collection kicks in.
 * <p>
 * This increase minor collection pauses from 3ms to 10ms, and leads to earlier mixed collections later on.
 *
 * Recommended VM-options: -Xms2048m -Xmx2048m -XX:+UseG1GC -XX:+UnlockExperimentalVMOptions -XX:G1MaxNewSizePercent=20 -Xlog:gc*,gc+age*=trace
 *
 * @author Frank Kretschmer, Germany, email: frank.kretschmer at gmx.net
 */
public class G1LoiteringConditionNodes {
    
    private static final int NUM_OF_PRODUCERS = 16;
    private static final int NUM_OF_WORKERS = 32;
    
    private static final long TXNS_PER_SECOND = 1600;
    
    private static final long WORK_MILLISECONDS = 10;
    
    private static final long GC_AFTER_SECONDS = 120;

    public static void main(final String[] args) {

        // worker thread pool
        final ExecutorService workers = Executors.newFixedThreadPool(NUM_OF_WORKERS);
        final Callable<String> work = () -> {
            try {
                // simulate work (just sleep for a while)
                TimeUnit.MILLISECONDS.sleep(WORK_MILLISECONDS);
                
            } catch (final InterruptedException e) {
                Thread.currentThread().interrupt();
            }
            // generate some garbage
            return Arrays.toString(new byte[4096]) + System.currentTimeMillis();
        };

        // produce tasks to be scheduled in the worker pool
        final ScheduledExecutorService producer = Executors.newScheduledThreadPool(NUM_OF_PRODUCERS);
        producer.scheduleWithFixedDelay(
                () -> workers.submit(work),
                0, TimeUnit.SECONDS.toNanos(1L) / TXNS_PER_SECOND,
                TimeUnit.NANOSECONDS);

        // trigger a full garbage collection, in order to promote ConditionNode objects to old generation for test purposes
        // in real live application, ConditionNode objects are promoted to old gen. on JVM startup
        // if many objects are created, more than can be hold in survivors
        producer.schedule(System::gc, GC_AFTER_SECONDS, TimeUnit.SECONDS);
    }

}
-------------- next part --------------
[0.002s][info][gc] Using G1
[0.014s][info][gc,init] Version: 17.0.9+9 (release)
[0.014s][info][gc,init] CPUs: 20 total, 20 available
[0.014s][info][gc,init] Memory: 31763M
[0.014s][info][gc,init] Large Page Support: Disabled
[0.014s][info][gc,init] NUMA Support: Disabled
[0.014s][info][gc,init] Compressed Oops: Enabled (32-bit)
[0.014s][info][gc,init] Heap Region Size: 1M
[0.014s][info][gc,init] Heap Min Capacity: 2G
[0.014s][info][gc,init] Heap Initial Capacity: 2G
[0.014s][info][gc,init] Heap Max Capacity: 2G
[0.014s][info][gc,init] Pre-touch: Disabled
[0.014s][info][gc,init] Parallel Workers: 15
[0.014s][info][gc,init] Concurrent Workers: 4
[0.014s][info][gc,init] Concurrent Refinement Workers: 15
[0.014s][info][gc,init] Periodic GC: Disabled
[0.019s][info][gc,metaspace] CDS archive(s) mapped at: [0x00007f28e3000000-0x00007f28e3bc8000-0x00007f28e3bc8000), size 12353536, SharedBaseAddress: 0x00007f28e3000000, ArchiveRelocationMode: 1.
[0.019s][info][gc,metaspace] Compressed class space mapped at: 0x00007f28e4000000-0x00007f2924000000, reserved size: 1073741824
[0.019s][info][gc,metaspace] Narrow klass base: 0x00007f28e3000000, Narrow klass shift: 0, Narrow klass range: 0x100000000
[0.880s][info][gc,start    ] GC(0) Pause Young (Normal) (G1 Evacuation Pause)
[0.883s][info][gc,task     ] GC(0) Using 15 workers of 15 for evacuation
[0.883s][debug][gc,age      ] GC(0) Desired survivor size 6815744 bytes, new threshold 15 (max threshold 15)
[0.885s][trace][gc,age      ] GC(0) Age table with threshold 15 (max threshold 15)
[0.885s][trace][gc,age      ] GC(0) - age   1:     429544 bytes,     429544 total
[0.885s][info ][gc,phases   ] GC(0)   Pre Evacuate Collection Set: 0.3ms
[0.885s][info ][gc,phases   ] GC(0)   Merge Heap Roots: 0.3ms
[0.885s][info ][gc,phases   ] GC(0)   Evacuate Collection Set: 0.9ms
[0.885s][info ][gc,phases   ] GC(0)   Post Evacuate Collection Set: 0.6ms
[0.885s][info ][gc,phases   ] GC(0)   Other: 3.4ms
[0.885s][info ][gc,heap     ] GC(0) Eden regions: 102->0(126)
[0.885s][info ][gc,heap     ] GC(0) Survivor regions: 0->1(13)
[0.885s][info ][gc,heap     ] GC(0) Old regions: 0->0
[0.885s][info ][gc,heap     ] GC(0) Archive regions: 2->2
[0.885s][info ][gc,heap     ] GC(0) Humongous regions: 0->0
[0.885s][info ][gc,metaspace] GC(0) Metaspace: 903K(1088K)->903K(1088K) NonClass: 820K(896K)->820K(896K) Class: 83K(192K)->83K(192K)
[0.885s][info ][gc          ] GC(0) Pause Young (Normal) (G1 Evacuation Pause) 102M->1M(2048M) 5.463ms
[0.885s][info ][gc,cpu      ] GC(0) User=0.02s Sys=0.00s Real=0.01s
[2.001s][info ][gc,start    ] GC(1) Pause Young (Normal) (G1 Evacuation Pause)
[2.001s][info ][gc,task     ] GC(1) Using 15 workers of 15 for evacuation
[2.002s][debug][gc,age      ] GC(1) Desired survivor size 8388608 bytes, new threshold 15 (max threshold 15)
[2.002s][trace][gc,age      ] GC(1) Age table with threshold 15 (max threshold 15)
[2.002s][trace][gc,age      ] GC(1) - age   1:       6144 bytes,       6144 total
[2.002s][trace][gc,age      ] GC(1) - age   2:     419440 bytes,     425584 total
[2.002s][info ][gc,phases   ] GC(1)   Pre Evacuate Collection Set: 0.2ms
[2.002s][info ][gc,phases   ] GC(1)   Merge Heap Roots: 0.0ms
[2.002s][info ][gc,phases   ] GC(1)   Evacuate Collection Set: 0.2ms
[2.002s][info ][gc,phases   ] GC(1)   Post Evacuate Collection Set: 0.2ms
[2.002s][info ][gc,phases   ] GC(1)   Other: 0.1ms
[2.002s][info ][gc,heap     ] GC(1) Eden regions: 126->0(408)
[2.002s][info ][gc,heap     ] GC(1) Survivor regions: 1->1(16)
[2.002s][info ][gc,heap     ] GC(1) Old regions: 0->0
[2.002s][info ][gc,heap     ] GC(1) Archive regions: 2->2
[2.002s][info ][gc,heap     ] GC(1) Humongous regions: 0->0
[2.002s][info ][gc,metaspace] GC(1) Metaspace: 904K(1088K)->904K(1088K) NonClass: 820K(896K)->820K(896K) Class: 83K(192K)->83K(192K)
[2.002s][info ][gc          ] GC(1) Pause Young (Normal) (G1 Evacuation Pause) 127M->1M(2048M) 0.774ms
[2.002s][info ][gc,cpu      ] GC(1) User=0.01s Sys=0.00s Real=0.00s
[5.745s][info ][gc,start    ] GC(2) Pause Young (Normal) (G1 Evacuation Pause)
[5.745s][info ][gc,task     ] GC(2) Using 15 workers of 15 for evacuation
[5.745s][debug][gc,age      ] GC(2) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[5.748s][trace][gc,age      ] GC(2) Age table with threshold 15 (max threshold 15)
[5.748s][trace][gc,age      ] GC(2) - age   1:       8448 bytes,       8448 total
[5.748s][trace][gc,age      ] GC(2) - age   2:         56 bytes,       8504 total
[5.748s][trace][gc,age      ] GC(2) - age   3:     419440 bytes,     427944 total
[5.749s][info ][gc,phases   ] GC(2)   Pre Evacuate Collection Set: 0.4ms
[5.749s][info ][gc,phases   ] GC(2)   Merge Heap Roots: 0.4ms
[5.749s][info ][gc,phases   ] GC(2)   Evacuate Collection Set: 1.6ms
[5.749s][info ][gc,phases   ] GC(2)   Post Evacuate Collection Set: 1.2ms
[5.749s][info ][gc,phases   ] GC(2)   Other: 0.5ms
[5.749s][info ][gc,heap     ] GC(2) Eden regions: 408->0(408)
[5.749s][info ][gc,heap     ] GC(2) Survivor regions: 1->1(52)
[5.749s][info ][gc,heap     ] GC(2) Old regions: 0->0
[5.749s][info ][gc,heap     ] GC(2) Archive regions: 2->2
[5.749s][info ][gc,heap     ] GC(2) Humongous regions: 0->0
[5.749s][info ][gc,metaspace] GC(2) Metaspace: 904K(1088K)->904K(1088K) NonClass: 820K(896K)->820K(896K) Class: 83K(192K)->83K(192K)
[5.749s][info ][gc          ] GC(2) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 4.118ms
[5.749s][info ][gc,cpu      ] GC(2) User=0.03s Sys=0.01s Real=0.00s
[9.508s][info ][gc,start    ] GC(3) Pause Young (Normal) (G1 Evacuation Pause)
[9.508s][info ][gc,task     ] GC(3) Using 15 workers of 15 for evacuation
[9.508s][debug][gc,age      ] GC(3) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[9.511s][trace][gc,age      ] GC(3) Age table with threshold 15 (max threshold 15)
[9.511s][trace][gc,age      ] GC(3) - age   1:      14992 bytes,      14992 total
[9.511s][trace][gc,age      ] GC(3) - age   2:        368 bytes,      15360 total
[9.511s][trace][gc,age      ] GC(3) - age   3:         56 bytes,      15416 total
[9.511s][trace][gc,age      ] GC(3) - age   4:     419440 bytes,     434856 total
[9.511s][info ][gc,phases   ] GC(3)   Pre Evacuate Collection Set: 0.4ms
[9.511s][info ][gc,phases   ] GC(3)   Merge Heap Roots: 0.4ms
[9.511s][info ][gc,phases   ] GC(3)   Evacuate Collection Set: 1.3ms
[9.511s][info ][gc,phases   ] GC(3)   Post Evacuate Collection Set: 1.1ms
[9.511s][info ][gc,phases   ] GC(3)   Other: 0.3ms
[9.511s][info ][gc,heap     ] GC(3) Eden regions: 408->0(408)
[9.511s][info ][gc,heap     ] GC(3) Survivor regions: 1->1(52)
[9.511s][info ][gc,heap     ] GC(3) Old regions: 0->0
[9.511s][info ][gc,heap     ] GC(3) Archive regions: 2->2
[9.511s][info ][gc,heap     ] GC(3) Humongous regions: 0->0
[9.511s][info ][gc,metaspace] GC(3) Metaspace: 904K(1088K)->904K(1088K) NonClass: 820K(896K)->820K(896K) Class: 83K(192K)->83K(192K)
[9.511s][info ][gc          ] GC(3) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 3.564ms
[9.511s][info ][gc,cpu      ] GC(3) User=0.02s Sys=0.01s Real=0.01s
[13.303s][info ][gc,start    ] GC(4) Pause Young (Normal) (G1 Evacuation Pause)
[13.303s][info ][gc,task     ] GC(4) Using 15 workers of 15 for evacuation
[13.303s][debug][gc,age      ] GC(4) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[13.306s][trace][gc,age      ] GC(4) Age table with threshold 15 (max threshold 15)
[13.306s][trace][gc,age      ] GC(4) - age   1:      10384 bytes,      10384 total
[13.306s][trace][gc,age      ] GC(4) - age   3:        368 bytes,      10752 total
[13.306s][trace][gc,age      ] GC(4) - age   4:         56 bytes,      10808 total
[13.306s][trace][gc,age      ] GC(4) - age   5:     419440 bytes,     430248 total
[13.306s][info ][gc,phases   ] GC(4)   Pre Evacuate Collection Set: 0.4ms
[13.306s][info ][gc,phases   ] GC(4)   Merge Heap Roots: 0.3ms
[13.306s][info ][gc,phases   ] GC(4)   Evacuate Collection Set: 1.0ms
[13.306s][info ][gc,phases   ] GC(4)   Post Evacuate Collection Set: 1.1ms
[13.306s][info ][gc,phases   ] GC(4)   Other: 0.4ms
[13.306s][info ][gc,heap     ] GC(4) Eden regions: 408->0(408)
[13.306s][info ][gc,heap     ] GC(4) Survivor regions: 1->1(52)
[13.306s][info ][gc,heap     ] GC(4) Old regions: 0->0
[13.306s][info ][gc,heap     ] GC(4) Archive regions: 2->2
[13.306s][info ][gc,heap     ] GC(4) Humongous regions: 0->0
[13.306s][info ][gc,metaspace] GC(4) Metaspace: 904K(1088K)->904K(1088K) NonClass: 820K(896K)->820K(896K) Class: 83K(192K)->83K(192K)
[13.306s][info ][gc          ] GC(4) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 3.134ms
[13.306s][info ][gc,cpu      ] GC(4) User=0.01s Sys=0.01s Real=0.00s
[17.084s][info ][gc,start    ] GC(5) Pause Young (Normal) (G1 Evacuation Pause)
[17.084s][info ][gc,task     ] GC(5) Using 15 workers of 15 for evacuation
[17.084s][debug][gc,age      ] GC(5) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[17.086s][trace][gc,age      ] GC(5) Age table with threshold 15 (max threshold 15)
[17.086s][trace][gc,age      ] GC(5) - age   1:       1624 bytes,       1624 total
[17.086s][trace][gc,age      ] GC(5) - age   4:        368 bytes,       1992 total
[17.086s][trace][gc,age      ] GC(5) - age   5:         56 bytes,       2048 total
[17.086s][trace][gc,age      ] GC(5) - age   6:     419440 bytes,     421488 total
[17.086s][info ][gc,phases   ] GC(5)   Pre Evacuate Collection Set: 0.3ms
[17.086s][info ][gc,phases   ] GC(5)   Merge Heap Roots: 0.3ms
[17.086s][info ][gc,phases   ] GC(5)   Evacuate Collection Set: 0.9ms
[17.086s][info ][gc,phases   ] GC(5)   Post Evacuate Collection Set: 0.5ms
[17.086s][info ][gc,phases   ] GC(5)   Other: 0.2ms
[17.086s][info ][gc,heap     ] GC(5) Eden regions: 408->0(408)
[17.086s][info ][gc,heap     ] GC(5) Survivor regions: 1->1(52)
[17.086s][info ][gc,heap     ] GC(5) Old regions: 0->0
[17.086s][info ][gc,heap     ] GC(5) Archive regions: 2->2
[17.086s][info ][gc,heap     ] GC(5) Humongous regions: 0->0
[17.086s][info ][gc,metaspace] GC(5) Metaspace: 904K(1088K)->904K(1088K) NonClass: 820K(896K)->820K(896K) Class: 83K(192K)->83K(192K)
[17.087s][info ][gc          ] GC(5) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 2.380ms
[17.087s][info ][gc,cpu      ] GC(5) User=0.01s Sys=0.01s Real=0.00s
[20.900s][info ][gc,start    ] GC(6) Pause Young (Normal) (G1 Evacuation Pause)
[20.900s][info ][gc,task     ] GC(6) Using 15 workers of 15 for evacuation
[20.900s][debug][gc,age      ] GC(6) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[20.904s][trace][gc,age      ] GC(6) Age table with threshold 15 (max threshold 15)
[20.904s][trace][gc,age      ] GC(6) - age   1:      10440 bytes,      10440 total
[20.904s][trace][gc,age      ] GC(6) - age   5:        368 bytes,      10808 total
[20.904s][trace][gc,age      ] GC(6) - age   6:         56 bytes,      10864 total
[20.904s][trace][gc,age      ] GC(6) - age   7:     419440 bytes,     430304 total
[20.904s][info ][gc,phases   ] GC(6)   Pre Evacuate Collection Set: 0.4ms
[20.904s][info ][gc,phases   ] GC(6)   Merge Heap Roots: 0.5ms
[20.904s][info ][gc,phases   ] GC(6)   Evacuate Collection Set: 1.2ms
[20.904s][info ][gc,phases   ] GC(6)   Post Evacuate Collection Set: 1.2ms
[20.904s][info ][gc,phases   ] GC(6)   Other: 0.3ms
[20.904s][info ][gc,heap     ] GC(6) Eden regions: 408->0(408)
[20.904s][info ][gc,heap     ] GC(6) Survivor regions: 1->1(52)
[20.904s][info ][gc,heap     ] GC(6) Old regions: 0->0
[20.904s][info ][gc,heap     ] GC(6) Archive regions: 2->2
[20.904s][info ][gc,heap     ] GC(6) Humongous regions: 0->0
[20.904s][info ][gc,metaspace] GC(6) Metaspace: 904K(1088K)->904K(1088K) NonClass: 820K(896K)->820K(896K) Class: 83K(192K)->83K(192K)
[20.904s][info ][gc          ] GC(6) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 3.688ms
[20.904s][info ][gc,cpu      ] GC(6) User=0.02s Sys=0.00s Real=0.00s
[24.716s][info ][gc,start    ] GC(7) Pause Young (Normal) (G1 Evacuation Pause)
[24.716s][info ][gc,task     ] GC(7) Using 15 workers of 15 for evacuation
[24.716s][debug][gc,age      ] GC(7) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[24.719s][trace][gc,age      ] GC(7) Age table with threshold 15 (max threshold 15)
[24.720s][trace][gc,age      ] GC(7) - age   1:       6064 bytes,       6064 total
[24.720s][trace][gc,age      ] GC(7) - age   6:        368 bytes,       6432 total
[24.720s][trace][gc,age      ] GC(7) - age   7:         56 bytes,       6488 total
[24.720s][trace][gc,age      ] GC(7) - age   8:     419440 bytes,     425928 total
[24.720s][info ][gc,phases   ] GC(7)   Pre Evacuate Collection Set: 0.5ms
[24.720s][info ][gc,phases   ] GC(7)   Merge Heap Roots: 0.6ms
[24.720s][info ][gc,phases   ] GC(7)   Evacuate Collection Set: 1.5ms
[24.720s][info ][gc,phases   ] GC(7)   Post Evacuate Collection Set: 1.0ms
[24.720s][info ][gc,phases   ] GC(7)   Other: 0.5ms
[24.720s][info ][gc,heap     ] GC(7) Eden regions: 408->0(408)
[24.720s][info ][gc,heap     ] GC(7) Survivor regions: 1->1(52)
[24.720s][info ][gc,heap     ] GC(7) Old regions: 0->0
[24.720s][info ][gc,heap     ] GC(7) Archive regions: 2->2
[24.720s][info ][gc,heap     ] GC(7) Humongous regions: 0->0
[24.720s][info ][gc,metaspace] GC(7) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[24.720s][info ][gc          ] GC(7) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 4.193ms
[24.720s][info ][gc,cpu      ] GC(7) User=0.03s Sys=0.01s Real=0.00s
[28.543s][info ][gc,start    ] GC(8) Pause Young (Normal) (G1 Evacuation Pause)
[28.543s][info ][gc,task     ] GC(8) Using 15 workers of 15 for evacuation
[28.543s][debug][gc,age      ] GC(8) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[28.546s][trace][gc,age      ] GC(8) Age table with threshold 15 (max threshold 15)
[28.546s][trace][gc,age      ] GC(8) - age   1:      13952 bytes,      13952 total
[28.546s][trace][gc,age      ] GC(8) - age   7:        368 bytes,      14320 total
[28.546s][trace][gc,age      ] GC(8) - age   8:         56 bytes,      14376 total
[28.546s][trace][gc,age      ] GC(8) - age   9:     419440 bytes,     433816 total
[28.546s][info ][gc,phases   ] GC(8)   Pre Evacuate Collection Set: 0.4ms
[28.546s][info ][gc,phases   ] GC(8)   Merge Heap Roots: 0.4ms
[28.546s][info ][gc,phases   ] GC(8)   Evacuate Collection Set: 0.7ms
[28.546s][info ][gc,phases   ] GC(8)   Post Evacuate Collection Set: 0.7ms
[28.546s][info ][gc,phases   ] GC(8)   Other: 0.2ms
[28.546s][info ][gc,heap     ] GC(8) Eden regions: 408->0(408)
[28.546s][info ][gc,heap     ] GC(8) Survivor regions: 1->1(52)
[28.546s][info ][gc,heap     ] GC(8) Old regions: 0->0
[28.546s][info ][gc,heap     ] GC(8) Archive regions: 2->2
[28.546s][info ][gc,heap     ] GC(8) Humongous regions: 0->0
[28.546s][info ][gc,metaspace] GC(8) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[28.546s][info ][gc          ] GC(8) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 2.496ms
[28.546s][info ][gc,cpu      ] GC(8) User=0.01s Sys=0.00s Real=0.00s
[32.377s][info ][gc,start    ] GC(9) Pause Young (Normal) (G1 Evacuation Pause)
[32.377s][info ][gc,task     ] GC(9) Using 15 workers of 15 for evacuation
[32.377s][debug][gc,age      ] GC(9) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[32.381s][trace][gc,age      ] GC(9) Age table with threshold 15 (max threshold 15)
[32.381s][trace][gc,age      ] GC(9) - age   1:      13968 bytes,      13968 total
[32.381s][trace][gc,age      ] GC(9) - age   8:        368 bytes,      14336 total
[32.381s][trace][gc,age      ] GC(9) - age   9:         56 bytes,      14392 total
[32.381s][trace][gc,age      ] GC(9) - age  10:     419440 bytes,     433832 total
[32.381s][info ][gc,phases   ] GC(9)   Pre Evacuate Collection Set: 0.4ms
[32.381s][info ][gc,phases   ] GC(9)   Merge Heap Roots: 0.6ms
[32.381s][info ][gc,phases   ] GC(9)   Evacuate Collection Set: 1.3ms
[32.381s][info ][gc,phases   ] GC(9)   Post Evacuate Collection Set: 1.0ms
[32.381s][info ][gc,phases   ] GC(9)   Other: 0.4ms
[32.381s][info ][gc,heap     ] GC(9) Eden regions: 408->0(408)
[32.381s][info ][gc,heap     ] GC(9) Survivor regions: 1->1(52)
[32.381s][info ][gc,heap     ] GC(9) Old regions: 0->0
[32.381s][info ][gc,heap     ] GC(9) Archive regions: 2->2
[32.381s][info ][gc,heap     ] GC(9) Humongous regions: 0->0
[32.381s][info ][gc,metaspace] GC(9) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[32.381s][info ][gc          ] GC(9) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 3.761ms
[32.381s][info ][gc,cpu      ] GC(9) User=0.02s Sys=0.00s Real=0.01s
[36.195s][info ][gc,start    ] GC(10) Pause Young (Normal) (G1 Evacuation Pause)
[36.195s][info ][gc,task     ] GC(10) Using 15 workers of 15 for evacuation
[36.195s][debug][gc,age      ] GC(10) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[36.196s][trace][gc,age      ] GC(10) Age table with threshold 15 (max threshold 15)
[36.196s][trace][gc,age      ] GC(10) - age   1:      20096 bytes,      20096 total
[36.196s][trace][gc,age      ] GC(10) - age   9:        368 bytes,      20464 total
[36.196s][trace][gc,age      ] GC(10) - age  10:         56 bytes,      20520 total
[36.196s][trace][gc,age      ] GC(10) - age  11:     419440 bytes,     439960 total
[36.196s][info ][gc,phases   ] GC(10)   Pre Evacuate Collection Set: 0.2ms
[36.196s][info ][gc,phases   ] GC(10)   Merge Heap Roots: 0.1ms
[36.196s][info ][gc,phases   ] GC(10)   Evacuate Collection Set: 0.2ms
[36.196s][info ][gc,phases   ] GC(10)   Post Evacuate Collection Set: 0.4ms
[36.196s][info ][gc,phases   ] GC(10)   Other: 0.1ms
[36.196s][info ][gc,heap     ] GC(10) Eden regions: 408->0(408)
[36.196s][info ][gc,heap     ] GC(10) Survivor regions: 1->1(52)
[36.196s][info ][gc,heap     ] GC(10) Old regions: 0->0
[36.196s][info ][gc,heap     ] GC(10) Archive regions: 2->2
[36.196s][info ][gc,heap     ] GC(10) Humongous regions: 0->0
[36.196s][info ][gc,metaspace] GC(10) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[36.196s][info ][gc          ] GC(10) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 1.104ms
[36.196s][info ][gc,cpu      ] GC(10) User=0.01s Sys=0.00s Real=0.00s
[40.024s][info ][gc,start    ] GC(11) Pause Young (Normal) (G1 Evacuation Pause)
[40.024s][info ][gc,task     ] GC(11) Using 15 workers of 15 for evacuation
[40.024s][debug][gc,age      ] GC(11) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[40.027s][trace][gc,age      ] GC(11) Age table with threshold 15 (max threshold 15)
[40.027s][trace][gc,age      ] GC(11) - age   1:      14992 bytes,      14992 total
[40.027s][trace][gc,age      ] GC(11) - age  10:        368 bytes,      15360 total
[40.027s][trace][gc,age      ] GC(11) - age  11:         56 bytes,      15416 total
[40.027s][trace][gc,age      ] GC(11) - age  12:     419440 bytes,     434856 total
[40.027s][info ][gc,phases   ] GC(11)   Pre Evacuate Collection Set: 0.4ms
[40.027s][info ][gc,phases   ] GC(11)   Merge Heap Roots: 0.6ms
[40.027s][info ][gc,phases   ] GC(11)   Evacuate Collection Set: 1.0ms
[40.027s][info ][gc,phases   ] GC(11)   Post Evacuate Collection Set: 0.8ms
[40.027s][info ][gc,phases   ] GC(11)   Other: 0.4ms
[40.027s][info ][gc,heap     ] GC(11) Eden regions: 408->0(408)
[40.027s][info ][gc,heap     ] GC(11) Survivor regions: 1->1(52)
[40.027s][info ][gc,heap     ] GC(11) Old regions: 0->0
[40.027s][info ][gc,heap     ] GC(11) Archive regions: 2->2
[40.027s][info ][gc,heap     ] GC(11) Humongous regions: 0->0
[40.027s][info ][gc,metaspace] GC(11) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[40.027s][info ][gc          ] GC(11) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 3.105ms
[40.027s][info ][gc,cpu      ] GC(11) User=0.02s Sys=0.00s Real=0.00s
[43.863s][info ][gc,start    ] GC(12) Pause Young (Normal) (G1 Evacuation Pause)
[43.863s][info ][gc,task     ] GC(12) Using 15 workers of 15 for evacuation
[43.863s][debug][gc,age      ] GC(12) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[43.866s][trace][gc,age      ] GC(12) Age table with threshold 15 (max threshold 15)
[43.866s][trace][gc,age      ] GC(12) - age   1:       6928 bytes,       6928 total
[43.866s][trace][gc,age      ] GC(12) - age  11:        368 bytes,       7296 total
[43.866s][trace][gc,age      ] GC(12) - age  12:         56 bytes,       7352 total
[43.866s][trace][gc,age      ] GC(12) - age  13:     419440 bytes,     426792 total
[43.866s][info ][gc,phases   ] GC(12)   Pre Evacuate Collection Set: 0.4ms
[43.866s][info ][gc,phases   ] GC(12)   Merge Heap Roots: 0.4ms
[43.866s][info ][gc,phases   ] GC(12)   Evacuate Collection Set: 1.3ms
[43.866s][info ][gc,phases   ] GC(12)   Post Evacuate Collection Set: 1.2ms
[43.866s][info ][gc,phases   ] GC(12)   Other: 0.4ms
[43.866s][info ][gc,heap     ] GC(12) Eden regions: 408->0(408)
[43.866s][info ][gc,heap     ] GC(12) Survivor regions: 1->1(52)
[43.866s][info ][gc,heap     ] GC(12) Old regions: 0->0
[43.866s][info ][gc,heap     ] GC(12) Archive regions: 2->2
[43.866s][info ][gc,heap     ] GC(12) Humongous regions: 0->0
[43.866s][info ][gc,metaspace] GC(12) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[43.866s][info ][gc          ] GC(12) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 3.694ms
[43.866s][info ][gc,cpu      ] GC(12) User=0.02s Sys=0.01s Real=0.00s
[47.697s][info ][gc,start    ] GC(13) Pause Young (Normal) (G1 Evacuation Pause)
[47.697s][info ][gc,task     ] GC(13) Using 15 workers of 15 for evacuation
[47.697s][debug][gc,age      ] GC(13) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[47.698s][trace][gc,age      ] GC(13) Age table with threshold 15 (max threshold 15)
[47.698s][trace][gc,age      ] GC(13) - age   1:      14992 bytes,      14992 total
[47.698s][trace][gc,age      ] GC(13) - age  12:        368 bytes,      15360 total
[47.698s][trace][gc,age      ] GC(13) - age  13:         56 bytes,      15416 total
[47.698s][trace][gc,age      ] GC(13) - age  14:     419440 bytes,     434856 total
[47.698s][info ][gc,phases   ] GC(13)   Pre Evacuate Collection Set: 0.2ms
[47.698s][info ][gc,phases   ] GC(13)   Merge Heap Roots: 0.1ms
[47.698s][info ][gc,phases   ] GC(13)   Evacuate Collection Set: 0.5ms
[47.698s][info ][gc,phases   ] GC(13)   Post Evacuate Collection Set: 0.4ms
[47.698s][info ][gc,phases   ] GC(13)   Other: 0.1ms
[47.698s][info ][gc,heap     ] GC(13) Eden regions: 408->0(408)
[47.698s][info ][gc,heap     ] GC(13) Survivor regions: 1->1(52)
[47.698s][info ][gc,heap     ] GC(13) Old regions: 0->0
[47.698s][info ][gc,heap     ] GC(13) Archive regions: 2->2
[47.698s][info ][gc,heap     ] GC(13) Humongous regions: 0->0
[47.698s][info ][gc,metaspace] GC(13) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[47.698s][info ][gc          ] GC(13) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 1.438ms
[47.698s][info ][gc,cpu      ] GC(13) User=0.01s Sys=0.01s Real=0.00s
[51.553s][info ][gc,start    ] GC(14) Pause Young (Normal) (G1 Evacuation Pause)
[51.553s][info ][gc,task     ] GC(14) Using 15 workers of 15 for evacuation
[51.553s][debug][gc,age      ] GC(14) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[51.557s][trace][gc,age      ] GC(14) Age table with threshold 15 (max threshold 15)
[51.557s][trace][gc,age      ] GC(14) - age   1:       1592 bytes,       1592 total
[51.557s][trace][gc,age      ] GC(14) - age  13:        368 bytes,       1960 total
[51.557s][trace][gc,age      ] GC(14) - age  14:         56 bytes,       2016 total
[51.557s][trace][gc,age      ] GC(14) - age  15:     419440 bytes,     421456 total
[51.557s][info ][gc,phases   ] GC(14)   Pre Evacuate Collection Set: 0.4ms
[51.557s][info ][gc,phases   ] GC(14)   Merge Heap Roots: 0.5ms
[51.557s][info ][gc,phases   ] GC(14)   Evacuate Collection Set: 1.4ms
[51.557s][info ][gc,phases   ] GC(14)   Post Evacuate Collection Set: 1.3ms
[51.557s][info ][gc,phases   ] GC(14)   Other: 0.5ms
[51.557s][info ][gc,heap     ] GC(14) Eden regions: 408->0(408)
[51.557s][info ][gc,heap     ] GC(14) Survivor regions: 1->1(52)
[51.557s][info ][gc,heap     ] GC(14) Old regions: 0->0
[51.557s][info ][gc,heap     ] GC(14) Archive regions: 2->2
[51.557s][info ][gc,heap     ] GC(14) Humongous regions: 0->0
[51.557s][info ][gc,metaspace] GC(14) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[51.557s][info ][gc          ] GC(14) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 4.279ms
[51.557s][info ][gc,cpu      ] GC(14) User=0.01s Sys=0.01s Real=0.00s
[55.383s][info ][gc,start    ] GC(15) Pause Young (Normal) (G1 Evacuation Pause)
[55.383s][info ][gc,task     ] GC(15) Using 15 workers of 15 for evacuation
[55.383s][debug][gc,age      ] GC(15) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[55.387s][trace][gc,age      ] GC(15) Age table with threshold 15 (max threshold 15)
[55.387s][trace][gc,age      ] GC(15) - age   1:      14992 bytes,      14992 total
[55.387s][trace][gc,age      ] GC(15) - age  14:        368 bytes,      15360 total
[55.387s][trace][gc,age      ] GC(15) - age  15:         56 bytes,      15416 total
[55.387s][info ][gc,phases   ] GC(15)   Pre Evacuate Collection Set: 0.4ms
[55.387s][info ][gc,phases   ] GC(15)   Merge Heap Roots: 0.5ms
[55.387s][info ][gc,phases   ] GC(15)   Evacuate Collection Set: 1.3ms
[55.387s][info ][gc,phases   ] GC(15)   Post Evacuate Collection Set: 1.2ms
[55.387s][info ][gc,phases   ] GC(15)   Other: 0.4ms
[55.387s][info ][gc,heap     ] GC(15) Eden regions: 408->0(408)
[55.387s][info ][gc,heap     ] GC(15) Survivor regions: 1->1(52)
[55.387s][info ][gc,heap     ] GC(15) Old regions: 0->1
[55.387s][info ][gc,heap     ] GC(15) Archive regions: 2->2
[55.387s][info ][gc,heap     ] GC(15) Humongous regions: 0->0
[55.387s][info ][gc,metaspace] GC(15) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[55.387s][info ][gc          ] GC(15) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 3.864ms
[55.387s][info ][gc,cpu      ] GC(15) User=0.02s Sys=0.00s Real=0.00s
[59.232s][info ][gc,start    ] GC(16) Pause Young (Normal) (G1 Evacuation Pause)
[59.233s][info ][gc,task     ] GC(16) Using 15 workers of 15 for evacuation
[59.233s][debug][gc,age      ] GC(16) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[59.235s][trace][gc,age      ] GC(16) Age table with threshold 15 (max threshold 15)
[59.236s][trace][gc,age      ] GC(16) - age   1:       8080 bytes,       8080 total
[59.236s][trace][gc,age      ] GC(16) - age  15:        368 bytes,       8448 total
[59.236s][info ][gc,phases   ] GC(16)   Pre Evacuate Collection Set: 0.5ms
[59.236s][info ][gc,phases   ] GC(16)   Merge Heap Roots: 0.4ms
[59.236s][info ][gc,phases   ] GC(16)   Evacuate Collection Set: 0.7ms
[59.236s][info ][gc,phases   ] GC(16)   Post Evacuate Collection Set: 1.1ms
[59.236s][info ][gc,phases   ] GC(16)   Other: 0.5ms
[59.236s][info ][gc,heap     ] GC(16) Eden regions: 408->0(408)
[59.236s][info ][gc,heap     ] GC(16) Survivor regions: 1->1(52)
[59.236s][info ][gc,heap     ] GC(16) Old regions: 1->1
[59.236s][info ][gc,heap     ] GC(16) Archive regions: 2->2
[59.236s][info ][gc,heap     ] GC(16) Humongous regions: 0->0
[59.236s][info ][gc,metaspace] GC(16) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[59.236s][info ][gc          ] GC(16) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 3.352ms
[59.236s][info ][gc,cpu      ] GC(16) User=0.01s Sys=0.00s Real=0.00s
[63.067s][info ][gc,start    ] GC(17) Pause Young (Normal) (G1 Evacuation Pause)
[63.067s][info ][gc,task     ] GC(17) Using 15 workers of 15 for evacuation
[63.067s][debug][gc,age      ] GC(17) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[63.070s][trace][gc,age      ] GC(17) Age table with threshold 15 (max threshold 15)
[63.070s][trace][gc,age      ] GC(17) - age   1:       1592 bytes,       1592 total
[63.070s][info ][gc,phases   ] GC(17)   Pre Evacuate Collection Set: 0.3ms
[63.070s][info ][gc,phases   ] GC(17)   Merge Heap Roots: 0.3ms
[63.070s][info ][gc,phases   ] GC(17)   Evacuate Collection Set: 0.6ms
[63.070s][info ][gc,phases   ] GC(17)   Post Evacuate Collection Set: 0.8ms
[63.070s][info ][gc,phases   ] GC(17)   Other: 0.4ms
[63.070s][info ][gc,heap     ] GC(17) Eden regions: 408->0(408)
[63.070s][info ][gc,heap     ] GC(17) Survivor regions: 1->1(52)
[63.070s][info ][gc,heap     ] GC(17) Old regions: 1->1
[63.070s][info ][gc,heap     ] GC(17) Archive regions: 2->2
[63.070s][info ][gc,heap     ] GC(17) Humongous regions: 0->0
[63.070s][info ][gc,metaspace] GC(17) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[63.070s][info ][gc          ] GC(17) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 2.541ms
[63.070s][info ][gc,cpu      ] GC(17) User=0.02s Sys=0.00s Real=0.00s
[66.905s][info ][gc,start    ] GC(18) Pause Young (Normal) (G1 Evacuation Pause)
[66.905s][info ][gc,task     ] GC(18) Using 15 workers of 15 for evacuation
[66.905s][debug][gc,age      ] GC(18) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[66.908s][trace][gc,age      ] GC(18) Age table with threshold 15 (max threshold 15)
[66.908s][trace][gc,age      ] GC(18) - age   1:      14992 bytes,      14992 total
[66.908s][info ][gc,phases   ] GC(18)   Pre Evacuate Collection Set: 0.4ms
[66.908s][info ][gc,phases   ] GC(18)   Merge Heap Roots: 0.5ms
[66.908s][info ][gc,phases   ] GC(18)   Evacuate Collection Set: 0.5ms
[66.908s][info ][gc,phases   ] GC(18)   Post Evacuate Collection Set: 1.1ms
[66.908s][info ][gc,phases   ] GC(18)   Other: 0.5ms
[66.908s][info ][gc,heap     ] GC(18) Eden regions: 408->0(408)
[66.908s][info ][gc,heap     ] GC(18) Survivor regions: 1->1(52)
[66.908s][info ][gc,heap     ] GC(18) Old regions: 1->1
[66.908s][info ][gc,heap     ] GC(18) Archive regions: 2->2
[66.908s][info ][gc,heap     ] GC(18) Humongous regions: 0->0
[66.908s][info ][gc,metaspace] GC(18) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[66.908s][info ][gc          ] GC(18) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 3.019ms
[66.908s][info ][gc,cpu      ] GC(18) User=0.02s Sys=0.00s Real=0.00s
[70.735s][info ][gc,start    ] GC(19) Pause Young (Normal) (G1 Evacuation Pause)
[70.735s][info ][gc,task     ] GC(19) Using 15 workers of 15 for evacuation
[70.735s][debug][gc,age      ] GC(19) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[70.737s][trace][gc,age      ] GC(19) Age table with threshold 15 (max threshold 15)
[70.737s][trace][gc,age      ] GC(19) - age   1:      14992 bytes,      14992 total
[70.737s][info ][gc,phases   ] GC(19)   Pre Evacuate Collection Set: 0.5ms
[70.737s][info ][gc,phases   ] GC(19)   Merge Heap Roots: 0.4ms
[70.737s][info ][gc,phases   ] GC(19)   Evacuate Collection Set: 0.5ms
[70.738s][info ][gc,phases   ] GC(19)   Post Evacuate Collection Set: 1.2ms
[70.738s][info ][gc,phases   ] GC(19)   Other: 0.4ms
[70.738s][info ][gc,heap     ] GC(19) Eden regions: 408->0(408)
[70.738s][info ][gc,heap     ] GC(19) Survivor regions: 1->1(52)
[70.738s][info ][gc,heap     ] GC(19) Old regions: 1->1
[70.738s][info ][gc,heap     ] GC(19) Archive regions: 2->2
[70.738s][info ][gc,heap     ] GC(19) Humongous regions: 0->0
[70.738s][info ][gc,metaspace] GC(19) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[70.738s][info ][gc          ] GC(19) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 2.987ms
[70.738s][info ][gc,cpu      ] GC(19) User=0.00s Sys=0.01s Real=0.00s
[74.569s][info ][gc,start    ] GC(20) Pause Young (Normal) (G1 Evacuation Pause)
[74.569s][info ][gc,task     ] GC(20) Using 15 workers of 15 for evacuation
[74.569s][debug][gc,age      ] GC(20) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[74.572s][trace][gc,age      ] GC(20) Age table with threshold 15 (max threshold 15)
[74.572s][trace][gc,age      ] GC(20) - age   1:       1592 bytes,       1592 total
[74.572s][info ][gc,phases   ] GC(20)   Pre Evacuate Collection Set: 0.5ms
[74.572s][info ][gc,phases   ] GC(20)   Merge Heap Roots: 0.5ms
[74.572s][info ][gc,phases   ] GC(20)   Evacuate Collection Set: 0.6ms
[74.572s][info ][gc,phases   ] GC(20)   Post Evacuate Collection Set: 1.2ms
[74.572s][info ][gc,phases   ] GC(20)   Other: 0.4ms
[74.572s][info ][gc,heap     ] GC(20) Eden regions: 408->0(408)
[74.572s][info ][gc,heap     ] GC(20) Survivor regions: 1->1(52)
[74.572s][info ][gc,heap     ] GC(20) Old regions: 1->1
[74.572s][info ][gc,heap     ] GC(20) Archive regions: 2->2
[74.572s][info ][gc,heap     ] GC(20) Humongous regions: 0->0
[74.572s][info ][gc,metaspace] GC(20) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[74.572s][info ][gc          ] GC(20) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 3.247ms
[74.573s][info ][gc,cpu      ] GC(20) User=0.01s Sys=0.00s Real=0.01s
[78.415s][info ][gc,start    ] GC(21) Pause Young (Normal) (G1 Evacuation Pause)
[78.416s][info ][gc,task     ] GC(21) Using 15 workers of 15 for evacuation
[78.416s][debug][gc,age      ] GC(21) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[78.419s][trace][gc,age      ] GC(21) Age table with threshold 15 (max threshold 15)
[78.419s][trace][gc,age      ] GC(21) - age   1:      10352 bytes,      10352 total
[78.419s][info ][gc,phases   ] GC(21)   Pre Evacuate Collection Set: 0.4ms
[78.419s][info ][gc,phases   ] GC(21)   Merge Heap Roots: 0.4ms
[78.419s][info ][gc,phases   ] GC(21)   Evacuate Collection Set: 0.7ms
[78.419s][info ][gc,phases   ] GC(21)   Post Evacuate Collection Set: 1.3ms
[78.419s][info ][gc,phases   ] GC(21)   Other: 0.4ms
[78.419s][info ][gc,heap     ] GC(21) Eden regions: 408->0(408)
[78.419s][info ][gc,heap     ] GC(21) Survivor regions: 1->1(52)
[78.419s][info ][gc,heap     ] GC(21) Old regions: 1->1
[78.419s][info ][gc,heap     ] GC(21) Archive regions: 2->2
[78.419s][info ][gc,heap     ] GC(21) Humongous regions: 0->0
[78.419s][info ][gc,metaspace] GC(21) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[78.419s][info ][gc          ] GC(21) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 3.332ms
[78.419s][info ][gc,cpu      ] GC(21) User=0.01s Sys=0.00s Real=0.00s
[82.258s][info ][gc,start    ] GC(22) Pause Young (Normal) (G1 Evacuation Pause)
[82.258s][info ][gc,task     ] GC(22) Using 15 workers of 15 for evacuation
[82.258s][debug][gc,age      ] GC(22) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[82.261s][trace][gc,age      ] GC(22) Age table with threshold 15 (max threshold 15)
[82.261s][trace][gc,age      ] GC(22) - age   1:      20096 bytes,      20096 total
[82.261s][info ][gc,phases   ] GC(22)   Pre Evacuate Collection Set: 0.4ms
[82.261s][info ][gc,phases   ] GC(22)   Merge Heap Roots: 0.3ms
[82.261s][info ][gc,phases   ] GC(22)   Evacuate Collection Set: 0.5ms
[82.261s][info ][gc,phases   ] GC(22)   Post Evacuate Collection Set: 0.9ms
[82.261s][info ][gc,phases   ] GC(22)   Other: 0.4ms
[82.261s][info ][gc,heap     ] GC(22) Eden regions: 408->0(408)
[82.261s][info ][gc,heap     ] GC(22) Survivor regions: 1->1(52)
[82.261s][info ][gc,heap     ] GC(22) Old regions: 1->1
[82.261s][info ][gc,heap     ] GC(22) Archive regions: 2->2
[82.261s][info ][gc,heap     ] GC(22) Humongous regions: 0->0
[82.261s][info ][gc,metaspace] GC(22) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[82.261s][info ][gc          ] GC(22) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 2.569ms
[82.261s][info ][gc,cpu      ] GC(22) User=0.01s Sys=0.00s Real=0.01s
[86.086s][info ][gc,start    ] GC(23) Pause Young (Normal) (G1 Evacuation Pause)
[86.086s][info ][gc,task     ] GC(23) Using 15 workers of 15 for evacuation
[86.086s][debug][gc,age      ] GC(23) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[86.088s][trace][gc,age      ] GC(23) Age table with threshold 15 (max threshold 15)
[86.088s][trace][gc,age      ] GC(23) - age   1:      13968 bytes,      13968 total
[86.088s][info ][gc,phases   ] GC(23)   Pre Evacuate Collection Set: 0.3ms
[86.088s][info ][gc,phases   ] GC(23)   Merge Heap Roots: 0.3ms
[86.088s][info ][gc,phases   ] GC(23)   Evacuate Collection Set: 0.4ms
[86.088s][info ][gc,phases   ] GC(23)   Post Evacuate Collection Set: 0.8ms
[86.088s][info ][gc,phases   ] GC(23)   Other: 0.3ms
[86.088s][info ][gc,heap     ] GC(23) Eden regions: 408->0(408)
[86.088s][info ][gc,heap     ] GC(23) Survivor regions: 1->1(52)
[86.088s][info ][gc,heap     ] GC(23) Old regions: 1->1
[86.088s][info ][gc,heap     ] GC(23) Archive regions: 2->2
[86.088s][info ][gc,heap     ] GC(23) Humongous regions: 0->0
[86.088s][info ][gc,metaspace] GC(23) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[86.088s][info ][gc          ] GC(23) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 2.052ms
[86.088s][info ][gc,cpu      ] GC(23) User=0.01s Sys=0.01s Real=0.00s
[89.918s][info ][gc,start    ] GC(24) Pause Young (Normal) (G1 Evacuation Pause)
[89.918s][info ][gc,task     ] GC(24) Using 15 workers of 15 for evacuation
[89.918s][debug][gc,age      ] GC(24) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[89.920s][trace][gc,age      ] GC(24) Age table with threshold 15 (max threshold 15)
[89.920s][trace][gc,age      ] GC(24) - age   1:       1592 bytes,       1592 total
[89.920s][info ][gc,phases   ] GC(24)   Pre Evacuate Collection Set: 0.5ms
[89.920s][info ][gc,phases   ] GC(24)   Merge Heap Roots: 0.4ms
[89.920s][info ][gc,phases   ] GC(24)   Evacuate Collection Set: 0.6ms
[89.920s][info ][gc,phases   ] GC(24)   Post Evacuate Collection Set: 1.0ms
[89.920s][info ][gc,phases   ] GC(24)   Other: 0.5ms
[89.920s][info ][gc,heap     ] GC(24) Eden regions: 408->0(408)
[89.920s][info ][gc,heap     ] GC(24) Survivor regions: 1->1(52)
[89.920s][info ][gc,heap     ] GC(24) Old regions: 1->1
[89.920s][info ][gc,heap     ] GC(24) Archive regions: 2->2
[89.920s][info ][gc,heap     ] GC(24) Humongous regions: 0->0
[89.921s][info ][gc,metaspace] GC(24) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[89.921s][info ][gc          ] GC(24) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 3.030ms
[89.921s][info ][gc,cpu      ] GC(24) User=0.01s Sys=0.01s Real=0.01s
[93.739s][info ][gc,start    ] GC(25) Pause Young (Normal) (G1 Evacuation Pause)
[93.739s][info ][gc,task     ] GC(25) Using 15 workers of 15 for evacuation
[93.739s][debug][gc,age      ] GC(25) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[93.742s][trace][gc,age      ] GC(25) Age table with threshold 15 (max threshold 15)
[93.742s][trace][gc,age      ] GC(25) - age   1:      10384 bytes,      10384 total
[93.743s][info ][gc,phases   ] GC(25)   Pre Evacuate Collection Set: 0.5ms
[93.743s][info ][gc,phases   ] GC(25)   Merge Heap Roots: 0.4ms
[93.743s][info ][gc,phases   ] GC(25)   Evacuate Collection Set: 0.6ms
[93.743s][info ][gc,phases   ] GC(25)   Post Evacuate Collection Set: 1.4ms
[93.743s][info ][gc,phases   ] GC(25)   Other: 0.4ms
[93.743s][info ][gc,heap     ] GC(25) Eden regions: 408->0(408)
[93.743s][info ][gc,heap     ] GC(25) Survivor regions: 1->1(52)
[93.743s][info ][gc,heap     ] GC(25) Old regions: 1->1
[93.743s][info ][gc,heap     ] GC(25) Archive regions: 2->2
[93.743s][info ][gc,heap     ] GC(25) Humongous regions: 0->0
[93.743s][info ][gc,metaspace] GC(25) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[93.743s][info ][gc          ] GC(25) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 3.383ms
[93.743s][info ][gc,cpu      ] GC(25) User=0.02s Sys=0.00s Real=0.01s
[97.567s][info ][gc,start    ] GC(26) Pause Young (Normal) (G1 Evacuation Pause)
[97.567s][info ][gc,task     ] GC(26) Using 15 workers of 15 for evacuation
[97.567s][debug][gc,age      ] GC(26) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[97.569s][trace][gc,age      ] GC(26) Age table with threshold 15 (max threshold 15)
[97.569s][trace][gc,age      ] GC(26) - age   1:       6352 bytes,       6352 total
[97.569s][info ][gc,phases   ] GC(26)   Pre Evacuate Collection Set: 0.3ms
[97.569s][info ][gc,phases   ] GC(26)   Merge Heap Roots: 0.2ms
[97.569s][info ][gc,phases   ] GC(26)   Evacuate Collection Set: 0.4ms
[97.569s][info ][gc,phases   ] GC(26)   Post Evacuate Collection Set: 0.8ms
[97.569s][info ][gc,phases   ] GC(26)   Other: 0.3ms
[97.569s][info ][gc,heap     ] GC(26) Eden regions: 408->0(408)
[97.569s][info ][gc,heap     ] GC(26) Survivor regions: 1->1(52)
[97.569s][info ][gc,heap     ] GC(26) Old regions: 1->1
[97.569s][info ][gc,heap     ] GC(26) Archive regions: 2->2
[97.569s][info ][gc,heap     ] GC(26) Humongous regions: 0->0
[97.569s][info ][gc,metaspace] GC(26) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[97.569s][info ][gc          ] GC(26) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 2.035ms
[97.569s][info ][gc,cpu      ] GC(26) User=0.01s Sys=0.00s Real=0.00s
[101.405s][info ][gc,start    ] GC(27) Pause Young (Normal) (G1 Evacuation Pause)
[101.405s][info ][gc,task     ] GC(27) Using 15 workers of 15 for evacuation
[101.405s][debug][gc,age      ] GC(27) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[101.407s][trace][gc,age      ] GC(27) Age table with threshold 15 (max threshold 15)
[101.407s][trace][gc,age      ] GC(27) - age   1:       6928 bytes,       6928 total
[101.407s][info ][gc,phases   ] GC(27)   Pre Evacuate Collection Set: 0.4ms
[101.407s][info ][gc,phases   ] GC(27)   Merge Heap Roots: 0.6ms
[101.407s][info ][gc,phases   ] GC(27)   Evacuate Collection Set: 0.5ms
[101.407s][info ][gc,phases   ] GC(27)   Post Evacuate Collection Set: 0.7ms
[101.408s][info ][gc,phases   ] GC(27)   Other: 0.5ms
[101.408s][info ][gc,heap     ] GC(27) Eden regions: 408->0(408)
[101.408s][info ][gc,heap     ] GC(27) Survivor regions: 1->1(52)
[101.408s][info ][gc,heap     ] GC(27) Old regions: 1->1
[101.408s][info ][gc,heap     ] GC(27) Archive regions: 2->2
[101.408s][info ][gc,heap     ] GC(27) Humongous regions: 0->0
[101.408s][info ][gc,metaspace] GC(27) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[101.408s][info ][gc          ] GC(27) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 2.770ms
[101.408s][info ][gc,cpu      ] GC(27) User=0.02s Sys=0.00s Real=0.00s
[105.260s][info ][gc,start    ] GC(28) Pause Young (Normal) (G1 Evacuation Pause)
[105.260s][info ][gc,task     ] GC(28) Using 15 workers of 15 for evacuation
[105.260s][debug][gc,age      ] GC(28) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[105.262s][trace][gc,age      ] GC(28) Age table with threshold 15 (max threshold 15)
[105.262s][trace][gc,age      ] GC(28) - age   1:       1648 bytes,       1648 total
[105.262s][info ][gc,phases   ] GC(28)   Pre Evacuate Collection Set: 0.3ms
[105.262s][info ][gc,phases   ] GC(28)   Merge Heap Roots: 0.3ms
[105.262s][info ][gc,phases   ] GC(28)   Evacuate Collection Set: 0.5ms
[105.262s][info ][gc,phases   ] GC(28)   Post Evacuate Collection Set: 0.8ms
[105.262s][info ][gc,phases   ] GC(28)   Other: 0.3ms
[105.262s][info ][gc,heap     ] GC(28) Eden regions: 408->0(408)
[105.262s][info ][gc,heap     ] GC(28) Survivor regions: 1->1(52)
[105.262s][info ][gc,heap     ] GC(28) Old regions: 1->1
[105.262s][info ][gc,heap     ] GC(28) Archive regions: 2->2
[105.262s][info ][gc,heap     ] GC(28) Humongous regions: 0->0
[105.262s][info ][gc,metaspace] GC(28) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[105.262s][info ][gc          ] GC(28) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 2.203ms
[105.263s][info ][gc,cpu      ] GC(28) User=0.01s Sys=0.00s Real=0.00s
[109.086s][info ][gc,start    ] GC(29) Pause Young (Normal) (G1 Evacuation Pause)
[109.086s][info ][gc,task     ] GC(29) Using 15 workers of 15 for evacuation
[109.086s][debug][gc,age      ] GC(29) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[109.089s][trace][gc,age      ] GC(29) Age table with threshold 15 (max threshold 15)
[109.089s][trace][gc,age      ] GC(29) - age   1:      20064 bytes,      20064 total
[109.089s][info ][gc,phases   ] GC(29)   Pre Evacuate Collection Set: 0.4ms
[109.089s][info ][gc,phases   ] GC(29)   Merge Heap Roots: 0.5ms
[109.089s][info ][gc,phases   ] GC(29)   Evacuate Collection Set: 0.4ms
[109.089s][info ][gc,phases   ] GC(29)   Post Evacuate Collection Set: 1.0ms
[109.089s][info ][gc,phases   ] GC(29)   Other: 0.4ms
[109.089s][info ][gc,heap     ] GC(29) Eden regions: 408->0(408)
[109.089s][info ][gc,heap     ] GC(29) Survivor regions: 1->1(52)
[109.089s][info ][gc,heap     ] GC(29) Old regions: 1->1
[109.089s][info ][gc,heap     ] GC(29) Archive regions: 2->2
[109.089s][info ][gc,heap     ] GC(29) Humongous regions: 0->0
[109.089s][info ][gc,metaspace] GC(29) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[109.089s][info ][gc          ] GC(29) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 2.798ms
[109.089s][info ][gc,cpu      ] GC(29) User=0.02s Sys=0.00s Real=0.00s
[112.934s][info ][gc,start    ] GC(30) Pause Young (Normal) (G1 Evacuation Pause)
[112.934s][info ][gc,task     ] GC(30) Using 15 workers of 15 for evacuation
[112.934s][debug][gc,age      ] GC(30) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[112.937s][trace][gc,age      ] GC(30) Age table with threshold 15 (max threshold 15)
[112.937s][trace][gc,age      ] GC(30) - age   1:       8080 bytes,       8080 total
[112.937s][info ][gc,phases   ] GC(30)   Pre Evacuate Collection Set: 0.4ms
[112.937s][info ][gc,phases   ] GC(30)   Merge Heap Roots: 0.6ms
[112.937s][info ][gc,phases   ] GC(30)   Evacuate Collection Set: 0.6ms
[112.937s][info ][gc,phases   ] GC(30)   Post Evacuate Collection Set: 1.2ms
[112.937s][info ][gc,phases   ] GC(30)   Other: 0.5ms
[112.937s][info ][gc,heap     ] GC(30) Eden regions: 408->0(408)
[112.937s][info ][gc,heap     ] GC(30) Survivor regions: 1->1(52)
[112.937s][info ][gc,heap     ] GC(30) Old regions: 1->1
[112.937s][info ][gc,heap     ] GC(30) Archive regions: 2->2
[112.937s][info ][gc,heap     ] GC(30) Humongous regions: 0->0
[112.937s][info ][gc,metaspace] GC(30) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[112.937s][info ][gc          ] GC(30) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 3.272ms
[112.937s][info ][gc,cpu      ] GC(30) User=0.02s Sys=0.00s Real=0.00s
[116.765s][info ][gc,start    ] GC(31) Pause Young (Normal) (G1 Evacuation Pause)
[116.765s][info ][gc,task     ] GC(31) Using 15 workers of 15 for evacuation
[116.765s][debug][gc,age      ] GC(31) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[116.768s][trace][gc,age      ] GC(31) Age table with threshold 15 (max threshold 15)
[116.768s][trace][gc,age      ] GC(31) - age   1:       8080 bytes,       8080 total
[116.768s][info ][gc,phases   ] GC(31)   Pre Evacuate Collection Set: 0.4ms
[116.768s][info ][gc,phases   ] GC(31)   Merge Heap Roots: 0.6ms
[116.768s][info ][gc,phases   ] GC(31)   Evacuate Collection Set: 0.6ms
[116.768s][info ][gc,phases   ] GC(31)   Post Evacuate Collection Set: 0.9ms
[116.768s][info ][gc,phases   ] GC(31)   Other: 0.4ms
[116.768s][info ][gc,heap     ] GC(31) Eden regions: 408->0(408)
[116.768s][info ][gc,heap     ] GC(31) Survivor regions: 1->1(52)
[116.768s][info ][gc,heap     ] GC(31) Old regions: 1->1
[116.768s][info ][gc,heap     ] GC(31) Archive regions: 2->2
[116.768s][info ][gc,heap     ] GC(31) Humongous regions: 0->0
[116.768s][info ][gc,metaspace] GC(31) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[116.768s][info ][gc          ] GC(31) Pause Young (Normal) (G1 Evacuation Pause) 409M->1M(2048M) 2.948ms
[116.768s][info ][gc,cpu      ] GC(31) User=0.01s Sys=0.01s Real=0.00s
[120.047s][info ][gc,task     ] GC(32) Using 15 workers of 15 for full compaction
[120.048s][info ][gc,start    ] GC(32) Pause Full (System.gc())
[120.048s][info ][gc,phases,start] GC(32) Phase 1: Mark live objects
[120.052s][info ][gc,phases      ] GC(32) Phase 1: Mark live objects 3.597ms
[120.052s][info ][gc,phases,start] GC(32) Phase 2: Prepare for compaction
[120.056s][info ][gc,phases      ] GC(32) Phase 2: Prepare for compaction 4.355ms
[120.056s][info ][gc,phases,start] GC(32) Phase 3: Adjust pointers
[120.058s][info ][gc,phases      ] GC(32) Phase 3: Adjust pointers 1.678ms
[120.058s][info ][gc,phases,start] GC(32) Phase 4: Compact heap
[120.059s][info ][gc,phases      ] GC(32) Phase 4: Compact heap 0.693ms
[120.063s][info ][gc,heap        ] GC(32) Eden regions: 349->0(409)
[120.063s][info ][gc,heap        ] GC(32) Survivor regions: 1->0(52)
[120.063s][info ][gc,heap        ] GC(32) Old regions: 1->11
[120.063s][info ][gc,heap        ] GC(32) Archive regions: 2->2
[120.063s][info ][gc,heap        ] GC(32) Humongous regions: 0->0
[120.063s][info ][gc,metaspace   ] GC(32) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[120.064s][info ][gc             ] GC(32) Pause Full (System.gc()) 349M->1M(2048M) 15.641ms
[120.064s][info ][gc,cpu         ] GC(32) User=0.02s Sys=0.13s Real=0.02s
[123.897s][info ][gc,start       ] GC(33) Pause Young (Normal) (G1 Evacuation Pause)
[123.897s][info ][gc,task        ] GC(33) Using 15 workers of 15 for evacuation
[123.897s][debug][gc,age         ] GC(33) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[123.902s][trace][gc,age         ] GC(33) Age table with threshold 15 (max threshold 15)
[123.902s][trace][gc,age         ] GC(33) - age   1:     532064 bytes,     532064 total
[123.902s][info ][gc,phases      ] GC(33)   Pre Evacuate Collection Set: 0.5ms
[123.902s][info ][gc,phases      ] GC(33)   Merge Heap Roots: 0.4ms
[123.902s][info ][gc,phases      ] GC(33)   Evacuate Collection Set: 2.8ms
[123.902s][info ][gc,phases      ] GC(33)   Post Evacuate Collection Set: 0.5ms
[123.902s][info ][gc,phases      ] GC(33)   Other: 0.3ms
[123.902s][info ][gc,heap        ] GC(33) Eden regions: 409->0(408)
[123.902s][info ][gc,heap        ] GC(33) Survivor regions: 0->1(52)
[123.902s][info ][gc,heap        ] GC(33) Old regions: 11->11
[123.902s][info ][gc,heap        ] GC(33) Archive regions: 2->2
[123.902s][info ][gc,heap        ] GC(33) Humongous regions: 0->0
[123.902s][info ][gc,metaspace   ] GC(33) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[123.902s][info ][gc             ] GC(33) Pause Young (Normal) (G1 Evacuation Pause) 410M->1M(2048M) 4.665ms
[123.902s][info ][gc,cpu         ] GC(33) User=0.01s Sys=0.00s Real=0.01s
[127.724s][info ][gc,start       ] GC(34) Pause Young (Normal) (G1 Evacuation Pause)
[127.725s][info ][gc,task        ] GC(34) Using 15 workers of 15 for evacuation
[127.725s][debug][gc,age         ] GC(34) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[127.730s][trace][gc,age         ] GC(34) Age table with threshold 15 (max threshold 15)
[127.730s][trace][gc,age         ] GC(34) - age   1:     363192 bytes,     363192 total
[127.730s][trace][gc,age         ] GC(34) - age   2:     518160 bytes,     881352 total
[127.730s][info ][gc,phases      ] GC(34)   Pre Evacuate Collection Set: 0.4ms
[127.730s][info ][gc,phases      ] GC(34)   Merge Heap Roots: 0.6ms
[127.730s][info ][gc,phases      ] GC(34)   Evacuate Collection Set: 3.7ms
[127.730s][info ][gc,phases      ] GC(34)   Post Evacuate Collection Set: 0.7ms
[127.730s][info ][gc,phases      ] GC(34)   Other: 0.4ms
[127.730s][info ][gc,heap        ] GC(34) Eden regions: 408->0(408)
[127.730s][info ][gc,heap        ] GC(34) Survivor regions: 1->1(52)
[127.730s][info ][gc,heap        ] GC(34) Old regions: 11->11
[127.730s][info ][gc,heap        ] GC(34) Archive regions: 2->2
[127.730s][info ][gc,heap        ] GC(34) Humongous regions: 0->0
[127.730s][info ][gc,metaspace   ] GC(34) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[127.730s][info ][gc             ] GC(34) Pause Young (Normal) (G1 Evacuation Pause) 409M->2M(2048M) 5.944ms
[127.730s][info ][gc,cpu         ] GC(34) User=0.02s Sys=0.00s Real=0.01s
[131.550s][info ][gc,start       ] GC(35) Pause Young (Normal) (G1 Evacuation Pause)
[131.550s][info ][gc,task        ] GC(35) Using 15 workers of 15 for evacuation
[131.550s][debug][gc,age         ] GC(35) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[131.557s][trace][gc,age         ] GC(35) Age table with threshold 15 (max threshold 15)
[131.557s][trace][gc,age         ] GC(35) - age   1:     344472 bytes,     344472 total
[131.557s][trace][gc,age         ] GC(35) - age   2:     344128 bytes,     688600 total
[131.557s][trace][gc,age         ] GC(35) - age   3:     518160 bytes,    1206760 total
[131.557s][info ][gc,phases      ] GC(35)   Pre Evacuate Collection Set: 0.5ms
[131.557s][info ][gc,phases      ] GC(35)   Merge Heap Roots: 0.4ms
[131.557s][info ][gc,phases      ] GC(35)   Evacuate Collection Set: 5.0ms
[131.557s][info ][gc,phases      ] GC(35)   Post Evacuate Collection Set: 1.0ms
[131.557s][info ][gc,phases      ] GC(35)   Other: 0.4ms
[131.557s][info ][gc,heap        ] GC(35) Eden regions: 408->0(407)
[131.557s][info ][gc,heap        ] GC(35) Survivor regions: 1->2(52)
[131.557s][info ][gc,heap        ] GC(35) Old regions: 11->11
[131.557s][info ][gc,heap        ] GC(35) Archive regions: 2->2
[131.557s][info ][gc,heap        ] GC(35) Humongous regions: 0->0
[131.557s][info ][gc,metaspace   ] GC(35) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[131.557s][info ][gc             ] GC(35) Pause Young (Normal) (G1 Evacuation Pause) 410M->2M(2048M) 7.443ms
[131.557s][info ][gc,cpu         ] GC(35) User=0.03s Sys=0.00s Real=0.01s
[135.359s][info ][gc,start       ] GC(36) Pause Young (Normal) (G1 Evacuation Pause)
[135.359s][info ][gc,task        ] GC(36) Using 15 workers of 15 for evacuation
[135.359s][debug][gc,age         ] GC(36) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[135.366s][trace][gc,age         ] GC(36) Age table with threshold 15 (max threshold 15)
[135.366s][trace][gc,age         ] GC(36) - age   1:     356744 bytes,     356744 total
[135.366s][trace][gc,age         ] GC(36) - age   2:     343936 bytes,     700680 total
[135.366s][trace][gc,age         ] GC(36) - age   3:     344128 bytes,    1044808 total
[135.366s][trace][gc,age         ] GC(36) - age   4:     518160 bytes,    1562968 total
[135.366s][info ][gc,phases      ] GC(36)   Pre Evacuate Collection Set: 0.4ms
[135.366s][info ][gc,phases      ] GC(36)   Merge Heap Roots: 0.5ms
[135.366s][info ][gc,phases      ] GC(36)   Evacuate Collection Set: 4.8ms
[135.366s][info ][gc,phases      ] GC(36)   Post Evacuate Collection Set: 0.7ms
[135.366s][info ][gc,phases      ] GC(36)   Other: 0.5ms
[135.366s][info ][gc,heap        ] GC(36) Eden regions: 407->0(407)
[135.366s][info ][gc,heap        ] GC(36) Survivor regions: 2->2(52)
[135.366s][info ][gc,heap        ] GC(36) Old regions: 11->11
[135.366s][info ][gc,heap        ] GC(36) Archive regions: 2->2
[135.366s][info ][gc,heap        ] GC(36) Humongous regions: 0->0
[135.366s][info ][gc,metaspace   ] GC(36) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[135.366s][info ][gc             ] GC(36) Pause Young (Normal) (G1 Evacuation Pause) 409M->2M(2048M) 6.966ms
[135.366s][info ][gc,cpu         ] GC(36) User=0.02s Sys=0.01s Real=0.01s
[139.189s][info ][gc,start       ] GC(37) Pause Young (Normal) (G1 Evacuation Pause)
[139.189s][info ][gc,task        ] GC(37) Using 15 workers of 15 for evacuation
[139.189s][debug][gc,age         ] GC(37) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[139.197s][trace][gc,age         ] GC(37) Age table with threshold 15 (max threshold 15)
[139.197s][trace][gc,age         ] GC(37) - age   1:     355912 bytes,     355912 total
[139.197s][trace][gc,age         ] GC(37) - age   2:     342784 bytes,     698696 total
[139.197s][trace][gc,age         ] GC(37) - age   3:     343936 bytes,    1042632 total
[139.197s][trace][gc,age         ] GC(37) - age   4:     344128 bytes,    1386760 total
[139.197s][trace][gc,age         ] GC(37) - age   5:     518160 bytes,    1904920 total
[139.197s][info ][gc,phases      ] GC(37)   Pre Evacuate Collection Set: 0.6ms
[139.197s][info ][gc,phases      ] GC(37)   Merge Heap Roots: 0.4ms
[139.197s][info ][gc,phases      ] GC(37)   Evacuate Collection Set: 5.9ms
[139.197s][info ][gc,phases      ] GC(37)   Post Evacuate Collection Set: 1.1ms
[139.197s][info ][gc,phases      ] GC(37)   Other: 0.4ms
[139.197s][info ][gc,heap        ] GC(37) Eden regions: 407->0(407)
[139.197s][info ][gc,heap        ] GC(37) Survivor regions: 2->2(52)
[139.197s][info ][gc,heap        ] GC(37) Old regions: 11->11
[139.197s][info ][gc,heap        ] GC(37) Archive regions: 2->2
[139.197s][info ][gc,heap        ] GC(37) Humongous regions: 0->0
[139.197s][info ][gc,metaspace   ] GC(37) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[139.197s][info ][gc             ] GC(37) Pause Young (Normal) (G1 Evacuation Pause) 409M->3M(2048M) 8.431ms
[139.197s][info ][gc,cpu         ] GC(37) User=0.02s Sys=0.00s Real=0.01s
[142.986s][info ][gc,start       ] GC(38) Pause Young (Normal) (G1 Evacuation Pause)
[142.987s][info ][gc,task        ] GC(38) Using 15 workers of 15 for evacuation
[142.987s][debug][gc,age         ] GC(38) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[142.995s][trace][gc,age         ] GC(38) Age table with threshold 15 (max threshold 15)
[142.995s][trace][gc,age         ] GC(38) - age   1:     356616 bytes,     356616 total
[142.995s][trace][gc,age         ] GC(38) - age   2:     342976 bytes,     699592 total
[142.995s][trace][gc,age         ] GC(38) - age   3:     342784 bytes,    1042376 total
[142.995s][trace][gc,age         ] GC(38) - age   4:     343936 bytes,    1386312 total
[142.995s][trace][gc,age         ] GC(38) - age   5:     344128 bytes,    1730440 total
[142.995s][trace][gc,age         ] GC(38) - age   6:     518160 bytes,    2248600 total
[142.995s][info ][gc,phases      ] GC(38)   Pre Evacuate Collection Set: 0.4ms
[142.995s][info ][gc,phases      ] GC(38)   Merge Heap Roots: 0.6ms
[142.995s][info ][gc,phases      ] GC(38)   Evacuate Collection Set: 6.1ms
[142.995s][info ][gc,phases      ] GC(38)   Post Evacuate Collection Set: 1.1ms
[142.995s][info ][gc,phases      ] GC(38)   Other: 0.4ms
[142.995s][info ][gc,heap        ] GC(38) Eden regions: 407->0(406)
[142.995s][info ][gc,heap        ] GC(38) Survivor regions: 2->3(52)
[142.995s][info ][gc,heap        ] GC(38) Old regions: 11->11
[142.995s][info ][gc,heap        ] GC(38) Archive regions: 2->2
[142.995s][info ][gc,heap        ] GC(38) Humongous regions: 0->0
[142.995s][info ][gc,metaspace   ] GC(38) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[142.995s][info ][gc             ] GC(38) Pause Young (Normal) (G1 Evacuation Pause) 410M->3M(2048M) 8.523ms
[142.995s][info ][gc,cpu         ] GC(38) User=0.03s Sys=0.00s Real=0.01s
[146.775s][info ][gc,start       ] GC(39) Pause Young (Normal) (G1 Evacuation Pause)
[146.775s][info ][gc,task        ] GC(39) Using 15 workers of 15 for evacuation
[146.776s][debug][gc,age         ] GC(39) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[146.783s][trace][gc,age         ] GC(39) Age table with threshold 15 (max threshold 15)
[146.783s][trace][gc,age         ] GC(39) - age   1:     342616 bytes,     342616 total
[146.783s][trace][gc,age         ] GC(39) - age   2:     342656 bytes,     685272 total
[146.783s][trace][gc,age         ] GC(39) - age   3:     342976 bytes,    1028248 total
[146.783s][trace][gc,age         ] GC(39) - age   4:     342784 bytes,    1371032 total
[146.783s][trace][gc,age         ] GC(39) - age   5:     343936 bytes,    1714968 total
[146.783s][trace][gc,age         ] GC(39) - age   6:     344128 bytes,    2059096 total
[146.783s][trace][gc,age         ] GC(39) - age   7:     518160 bytes,    2577256 total
[146.783s][info ][gc,phases      ] GC(39)   Pre Evacuate Collection Set: 0.5ms
[146.783s][info ][gc,phases      ] GC(39)   Merge Heap Roots: 0.4ms
[146.783s][info ][gc,phases      ] GC(39)   Evacuate Collection Set: 6.1ms
[146.783s][info ][gc,phases      ] GC(39)   Post Evacuate Collection Set: 0.4ms
[146.783s][info ][gc,phases      ] GC(39)   Other: 0.5ms
[146.783s][info ][gc,heap        ] GC(39) Eden regions: 406->0(406)
[146.783s][info ][gc,heap        ] GC(39) Survivor regions: 3->3(52)
[146.783s][info ][gc,heap        ] GC(39) Old regions: 11->11
[146.783s][info ][gc,heap        ] GC(39) Archive regions: 2->2
[146.783s][info ][gc,heap        ] GC(39) Humongous regions: 0->0
[146.783s][info ][gc,metaspace   ] GC(39) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[146.783s][info ][gc             ] GC(39) Pause Young (Normal) (G1 Evacuation Pause) 409M->4M(2048M) 7.884ms
[146.783s][info ][gc,cpu         ] GC(39) User=0.03s Sys=0.00s Real=0.01s
[150.571s][info ][gc,start       ] GC(40) Pause Young (Normal) (G1 Evacuation Pause)
[150.571s][info ][gc,task        ] GC(40) Using 15 workers of 15 for evacuation
[150.572s][debug][gc,age         ] GC(40) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[150.580s][trace][gc,age         ] GC(40) Age table with threshold 15 (max threshold 15)
[150.581s][trace][gc,age         ] GC(40) - age   1:     348048 bytes,     348048 total
[150.581s][trace][gc,age         ] GC(40) - age   2:     342080 bytes,     690128 total
[150.581s][trace][gc,age         ] GC(40) - age   3:     342656 bytes,    1032784 total
[150.581s][trace][gc,age         ] GC(40) - age   4:     342976 bytes,    1375760 total
[150.581s][trace][gc,age         ] GC(40) - age   5:     342784 bytes,    1718544 total
[150.581s][trace][gc,age         ] GC(40) - age   6:     343936 bytes,    2062480 total
[150.581s][trace][gc,age         ] GC(40) - age   7:     344128 bytes,    2406608 total
[150.581s][trace][gc,age         ] GC(40) - age   8:     518160 bytes,    2924768 total
[150.581s][info ][gc,phases      ] GC(40)   Pre Evacuate Collection Set: 0.4ms
[150.581s][info ][gc,phases      ] GC(40)   Merge Heap Roots: 0.3ms
[150.581s][info ][gc,phases      ] GC(40)   Evacuate Collection Set: 7.4ms
[150.581s][info ][gc,phases      ] GC(40)   Post Evacuate Collection Set: 0.8ms
[150.581s][info ][gc,phases      ] GC(40)   Other: 0.4ms
[150.581s][info ][gc,heap        ] GC(40) Eden regions: 406->0(405)
[150.581s][info ][gc,heap        ] GC(40) Survivor regions: 3->4(52)
[150.581s][info ][gc,heap        ] GC(40) Old regions: 11->11
[150.581s][info ][gc,heap        ] GC(40) Archive regions: 2->2
[150.581s][info ][gc,heap        ] GC(40) Humongous regions: 0->0
[150.581s][info ][gc,metaspace   ] GC(40) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[150.581s][info ][gc             ] GC(40) Pause Young (Normal) (G1 Evacuation Pause) 410M->4M(2048M) 9.228ms
[150.581s][info ][gc,cpu         ] GC(40) User=0.03s Sys=0.00s Real=0.01s
[154.388s][info ][gc,start       ] GC(41) Pause Young (Normal) (G1 Evacuation Pause)
[154.388s][info ][gc,task        ] GC(41) Using 15 workers of 15 for evacuation
[154.388s][debug][gc,age         ] GC(41) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[154.398s][trace][gc,age         ] GC(41) Age table with threshold 15 (max threshold 15)
[154.398s][trace][gc,age         ] GC(41) - age   1:     355664 bytes,     355664 total
[154.398s][trace][gc,age         ] GC(41) - age   2:     342208 bytes,     697872 total
[154.398s][trace][gc,age         ] GC(41) - age   3:     342080 bytes,    1039952 total
[154.398s][trace][gc,age         ] GC(41) - age   4:     342656 bytes,    1382608 total
[154.398s][trace][gc,age         ] GC(41) - age   5:     342976 bytes,    1725584 total
[154.398s][trace][gc,age         ] GC(41) - age   6:     342784 bytes,    2068368 total
[154.398s][trace][gc,age         ] GC(41) - age   7:     343936 bytes,    2412304 total
[154.398s][trace][gc,age         ] GC(41) - age   8:     344128 bytes,    2756432 total
[154.398s][trace][gc,age         ] GC(41) - age   9:     518160 bytes,    3274592 total
[154.398s][info ][gc,phases      ] GC(41)   Pre Evacuate Collection Set: 0.5ms
[154.398s][info ][gc,phases      ] GC(41)   Merge Heap Roots: 0.5ms
[154.398s][info ][gc,phases      ] GC(41)   Evacuate Collection Set: 7.8ms
[154.398s][info ][gc,phases      ] GC(41)   Post Evacuate Collection Set: 1.0ms
[154.398s][info ][gc,phases      ] GC(41)   Other: 0.4ms
[154.398s][info ][gc,heap        ] GC(41) Eden regions: 405->0(405)
[154.398s][info ][gc,heap        ] GC(41) Survivor regions: 4->4(52)
[154.398s][info ][gc,heap        ] GC(41) Old regions: 11->11
[154.398s][info ][gc,heap        ] GC(41) Archive regions: 2->2
[154.398s][info ][gc,heap        ] GC(41) Humongous regions: 0->0
[154.398s][info ][gc,metaspace   ] GC(41) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[154.398s][info ][gc             ] GC(41) Pause Young (Normal) (G1 Evacuation Pause) 409M->4M(2048M) 10.168ms
[154.398s][info ][gc,cpu         ] GC(41) User=0.04s Sys=0.00s Real=0.01s
[158.188s][info ][gc,start       ] GC(42) Pause Young (Normal) (G1 Evacuation Pause)
[158.188s][info ][gc,task        ] GC(42) Using 15 workers of 15 for evacuation
[158.188s][debug][gc,age         ] GC(42) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[158.198s][trace][gc,age         ] GC(42) Age table with threshold 15 (max threshold 15)
[158.198s][trace][gc,age         ] GC(42) - age   1:     348560 bytes,     348560 total
[158.198s][trace][gc,age         ] GC(42) - age   2:     341760 bytes,     690320 total
[158.198s][trace][gc,age         ] GC(42) - age   3:     342208 bytes,    1032528 total
[158.198s][trace][gc,age         ] GC(42) - age   4:     342080 bytes,    1374608 total
[158.198s][trace][gc,age         ] GC(42) - age   5:     342656 bytes,    1717264 total
[158.198s][trace][gc,age         ] GC(42) - age   6:     342976 bytes,    2060240 total
[158.198s][trace][gc,age         ] GC(42) - age   7:     342784 bytes,    2403024 total
[158.198s][trace][gc,age         ] GC(42) - age   8:     343936 bytes,    2746960 total
[158.198s][trace][gc,age         ] GC(42) - age   9:     344128 bytes,    3091088 total
[158.198s][trace][gc,age         ] GC(42) - age  10:     518160 bytes,    3609248 total
[158.198s][info ][gc,phases      ] GC(42)   Pre Evacuate Collection Set: 0.5ms
[158.198s][info ][gc,phases      ] GC(42)   Merge Heap Roots: 0.4ms
[158.198s][info ][gc,phases      ] GC(42)   Evacuate Collection Set: 8.3ms
[158.198s][info ][gc,phases      ] GC(42)   Post Evacuate Collection Set: 0.7ms
[158.198s][info ][gc,phases      ] GC(42)   Other: 0.4ms
[158.198s][info ][gc,heap        ] GC(42) Eden regions: 405->0(405)
[158.198s][info ][gc,heap        ] GC(42) Survivor regions: 4->4(52)
[158.198s][info ][gc,heap        ] GC(42) Old regions: 11->11
[158.198s][info ][gc,heap        ] GC(42) Archive regions: 2->2
[158.198s][info ][gc,heap        ] GC(42) Humongous regions: 0->0
[158.198s][info ][gc,metaspace   ] GC(42) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[158.198s][info ][gc             ] GC(42) Pause Young (Normal) (G1 Evacuation Pause) 409M->5M(2048M) 10.142ms
[158.198s][info ][gc,cpu         ] GC(42) User=0.03s Sys=0.00s Real=0.01s
[162.006s][info ][gc,start       ] GC(43) Pause Young (Normal) (G1 Evacuation Pause)
[162.006s][info ][gc,task        ] GC(43) Using 15 workers of 15 for evacuation
[162.006s][debug][gc,age         ] GC(43) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[162.016s][trace][gc,age         ] GC(43) Age table with threshold 15 (max threshold 15)
[162.016s][trace][gc,age         ] GC(43) - age   1:     346608 bytes,     346608 total
[162.016s][trace][gc,age         ] GC(43) - age   2:     341568 bytes,     688176 total
[162.016s][trace][gc,age         ] GC(43) - age   3:     341760 bytes,    1029936 total
[162.016s][trace][gc,age         ] GC(43) - age   4:     342208 bytes,    1372144 total
[162.016s][trace][gc,age         ] GC(43) - age   5:     342080 bytes,    1714224 total
[162.016s][trace][gc,age         ] GC(43) - age   6:     342656 bytes,    2056880 total
[162.016s][trace][gc,age         ] GC(43) - age   7:     342976 bytes,    2399856 total
[162.016s][trace][gc,age         ] GC(43) - age   8:     342784 bytes,    2742640 total
[162.016s][trace][gc,age         ] GC(43) - age   9:     343936 bytes,    3086576 total
[162.016s][trace][gc,age         ] GC(43) - age  10:     344128 bytes,    3430704 total
[162.016s][trace][gc,age         ] GC(43) - age  11:     518160 bytes,    3948864 total
[162.016s][info ][gc,phases      ] GC(43)   Pre Evacuate Collection Set: 0.5ms
[162.016s][info ][gc,phases      ] GC(43)   Merge Heap Roots: 0.4ms
[162.016s][info ][gc,phases      ] GC(43)   Evacuate Collection Set: 8.2ms
[162.016s][info ][gc,phases      ] GC(43)   Post Evacuate Collection Set: 0.6ms
[162.016s][info ][gc,phases      ] GC(43)   Other: 0.4ms
[162.016s][info ][gc,heap        ] GC(43) Eden regions: 405->0(404)
[162.016s][info ][gc,heap        ] GC(43) Survivor regions: 4->5(52)
[162.016s][info ][gc,heap        ] GC(43) Old regions: 11->11
[162.016s][info ][gc,heap        ] GC(43) Archive regions: 2->2
[162.016s][info ][gc,heap        ] GC(43) Humongous regions: 0->0
[162.016s][info ][gc,metaspace   ] GC(43) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[162.016s][info ][gc             ] GC(43) Pause Young (Normal) (G1 Evacuation Pause) 410M->5M(2048M) 10.029ms
[162.016s][info ][gc,cpu         ] GC(43) User=0.04s Sys=0.00s Real=0.01s
[165.793s][info ][gc,start       ] GC(44) Pause Young (Normal) (G1 Evacuation Pause)
[165.793s][info ][gc,task        ] GC(44) Using 15 workers of 15 for evacuation
[165.793s][debug][gc,age         ] GC(44) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[165.802s][trace][gc,age         ] GC(44) Age table with threshold 15 (max threshold 15)
[165.802s][trace][gc,age         ] GC(44) - age   1:     355088 bytes,     355088 total
[165.802s][trace][gc,age         ] GC(44) - age   2:     341632 bytes,     696720 total
[165.802s][trace][gc,age         ] GC(44) - age   3:     341568 bytes,    1038288 total
[165.802s][trace][gc,age         ] GC(44) - age   4:     341760 bytes,    1380048 total
[165.802s][trace][gc,age         ] GC(44) - age   5:     342208 bytes,    1722256 total
[165.802s][trace][gc,age         ] GC(44) - age   6:     342080 bytes,    2064336 total
[165.802s][trace][gc,age         ] GC(44) - age   7:     342656 bytes,    2406992 total
[165.802s][trace][gc,age         ] GC(44) - age   8:     342976 bytes,    2749968 total
[165.802s][trace][gc,age         ] GC(44) - age   9:     342784 bytes,    3092752 total
[165.802s][trace][gc,age         ] GC(44) - age  10:     343936 bytes,    3436688 total
[165.802s][trace][gc,age         ] GC(44) - age  11:     344128 bytes,    3780816 total
[165.802s][trace][gc,age         ] GC(44) - age  12:     518160 bytes,    4298976 total
[165.802s][info ][gc,phases      ] GC(44)   Pre Evacuate Collection Set: 0.3ms
[165.802s][info ][gc,phases      ] GC(44)   Merge Heap Roots: 0.3ms
[165.802s][info ][gc,phases      ] GC(44)   Evacuate Collection Set: 7.5ms
[165.802s][info ][gc,phases      ] GC(44)   Post Evacuate Collection Set: 0.8ms
[165.802s][info ][gc,phases      ] GC(44)   Other: 0.3ms
[165.802s][info ][gc,heap        ] GC(44) Eden regions: 404->0(404)
[165.802s][info ][gc,heap        ] GC(44) Survivor regions: 5->5(52)
[165.802s][info ][gc,heap        ] GC(44) Old regions: 11->11
[165.802s][info ][gc,heap        ] GC(44) Archive regions: 2->2
[165.802s][info ][gc,heap        ] GC(44) Humongous regions: 0->0
[165.802s][info ][gc,metaspace   ] GC(44) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[165.802s][info ][gc             ] GC(44) Pause Young (Normal) (G1 Evacuation Pause) 409M->5M(2048M) 9.187ms
[165.802s][info ][gc,cpu         ] GC(44) User=0.03s Sys=0.00s Real=0.01s
[169.572s][info ][gc,start       ] GC(45) Pause Young (Normal) (G1 Evacuation Pause)
[169.572s][info ][gc,task        ] GC(45) Using 15 workers of 15 for evacuation
[169.572s][debug][gc,age         ] GC(45) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[169.581s][trace][gc,age         ] GC(45) Age table with threshold 15 (max threshold 15)
[169.581s][trace][gc,age         ] GC(45) - age   1:     353440 bytes,     353440 total
[169.581s][trace][gc,age         ] GC(45) - age   2:     341216 bytes,     694656 total
[169.581s][trace][gc,age         ] GC(45) - age   3:     341632 bytes,    1036288 total
[169.581s][trace][gc,age         ] GC(45) - age   4:     341568 bytes,    1377856 total
[169.581s][trace][gc,age         ] GC(45) - age   5:     341760 bytes,    1719616 total
[169.581s][trace][gc,age         ] GC(45) - age   6:     342208 bytes,    2061824 total
[169.581s][trace][gc,age         ] GC(45) - age   7:     342080 bytes,    2403904 total
[169.581s][trace][gc,age         ] GC(45) - age   8:     342656 bytes,    2746560 total
[169.581s][trace][gc,age         ] GC(45) - age   9:     342976 bytes,    3089536 total
[169.581s][trace][gc,age         ] GC(45) - age  10:     342784 bytes,    3432320 total
[169.581s][trace][gc,age         ] GC(45) - age  11:     343936 bytes,    3776256 total
[169.581s][trace][gc,age         ] GC(45) - age  12:     344128 bytes,    4120384 total
[169.581s][trace][gc,age         ] GC(45) - age  13:     518160 bytes,    4638544 total
[169.581s][info ][gc,phases      ] GC(45)   Pre Evacuate Collection Set: 0.4ms
[169.581s][info ][gc,phases      ] GC(45)   Merge Heap Roots: 0.4ms
[169.581s][info ][gc,phases      ] GC(45)   Evacuate Collection Set: 7.8ms
[169.581s][info ][gc,phases      ] GC(45)   Post Evacuate Collection Set: 0.5ms
[169.581s][info ][gc,phases      ] GC(45)   Other: 0.3ms
[169.581s][info ][gc,heap        ] GC(45) Eden regions: 404->0(404)
[169.581s][info ][gc,heap        ] GC(45) Survivor regions: 5->5(52)
[169.581s][info ][gc,heap        ] GC(45) Old regions: 11->11
[169.581s][info ][gc,heap        ] GC(45) Archive regions: 2->2
[169.581s][info ][gc,heap        ] GC(45) Humongous regions: 0->0
[169.581s][info ][gc,metaspace   ] GC(45) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[169.581s][info ][gc             ] GC(45) Pause Young (Normal) (G1 Evacuation Pause) 409M->6M(2048M) 9.373ms
[169.581s][info ][gc,cpu         ] GC(45) User=0.04s Sys=0.00s Real=0.01s
[173.398s][info ][gc,start       ] GC(46) Pause Young (Normal) (G1 Evacuation Pause)
[173.398s][info ][gc,task        ] GC(46) Using 15 workers of 15 for evacuation
[173.398s][debug][gc,age         ] GC(46) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[173.408s][trace][gc,age         ] GC(46) Age table with threshold 15 (max threshold 15)
[173.408s][trace][gc,age         ] GC(46) - age   1:     341464 bytes,     341464 total
[173.408s][trace][gc,age         ] GC(46) - age   2:     340576 bytes,     682040 total
[173.408s][trace][gc,age         ] GC(46) - age   3:     341216 bytes,    1023256 total
[173.408s][trace][gc,age         ] GC(46) - age   4:     341632 bytes,    1364888 total
[173.408s][trace][gc,age         ] GC(46) - age   5:     341568 bytes,    1706456 total
[173.408s][trace][gc,age         ] GC(46) - age   6:     341760 bytes,    2048216 total
[173.408s][trace][gc,age         ] GC(46) - age   7:     342208 bytes,    2390424 total
[173.408s][trace][gc,age         ] GC(46) - age   8:     342080 bytes,    2732504 total
[173.408s][trace][gc,age         ] GC(46) - age   9:     342656 bytes,    3075160 total
[173.408s][trace][gc,age         ] GC(46) - age  10:     342976 bytes,    3418136 total
[173.408s][trace][gc,age         ] GC(46) - age  11:     342784 bytes,    3760920 total
[173.408s][trace][gc,age         ] GC(46) - age  12:     343936 bytes,    4104856 total
[173.409s][trace][gc,age         ] GC(46) - age  13:     344128 bytes,    4448984 total
[173.409s][trace][gc,age         ] GC(46) - age  14:     518160 bytes,    4967144 total
[173.409s][info ][gc,phases      ] GC(46)   Pre Evacuate Collection Set: 0.4ms
[173.409s][info ][gc,phases      ] GC(46)   Merge Heap Roots: 0.6ms
[173.409s][info ][gc,phases      ] GC(46)   Evacuate Collection Set: 8.6ms
[173.409s][info ][gc,phases      ] GC(46)   Post Evacuate Collection Set: 0.4ms
[173.409s][info ][gc,phases      ] GC(46)   Other: 0.3ms
[173.409s][info ][gc,heap        ] GC(46) Eden regions: 404->0(403)
[173.409s][info ][gc,heap        ] GC(46) Survivor regions: 5->6(52)
[173.409s][info ][gc,heap        ] GC(46) Old regions: 11->11
[173.409s][info ][gc,heap        ] GC(46) Archive regions: 2->2
[173.409s][info ][gc,heap        ] GC(46) Humongous regions: 0->0
[173.409s][info ][gc,metaspace   ] GC(46) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[173.409s][info ][gc             ] GC(46) Pause Young (Normal) (G1 Evacuation Pause) 410M->6M(2048M) 10.361ms
[173.409s][info ][gc,cpu         ] GC(46) User=0.03s Sys=0.00s Real=0.01s
[177.198s][info ][gc,start       ] GC(47) Pause Young (Normal) (G1 Evacuation Pause)
[177.199s][info ][gc,task        ] GC(47) Using 15 workers of 15 for evacuation
[177.199s][debug][gc,age         ] GC(47) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[177.207s][trace][gc,age         ] GC(47) Age table with threshold 15 (max threshold 15)
[177.207s][trace][gc,age         ] GC(47) - age   1:     353104 bytes,     353104 total
[177.207s][trace][gc,age         ] GC(47) - age   2:     340928 bytes,     694032 total
[177.207s][trace][gc,age         ] GC(47) - age   3:     340576 bytes,    1034608 total
[177.207s][trace][gc,age         ] GC(47) - age   4:     341216 bytes,    1375824 total
[177.207s][trace][gc,age         ] GC(47) - age   5:     341632 bytes,    1717456 total
[177.207s][trace][gc,age         ] GC(47) - age   6:     341568 bytes,    2059024 total
[177.207s][trace][gc,age         ] GC(47) - age   7:     341760 bytes,    2400784 total
[177.207s][trace][gc,age         ] GC(47) - age   8:     342208 bytes,    2742992 total
[177.207s][trace][gc,age         ] GC(47) - age   9:     342080 bytes,    3085072 total
[177.207s][trace][gc,age         ] GC(47) - age  10:     342656 bytes,    3427728 total
[177.207s][trace][gc,age         ] GC(47) - age  11:     342976 bytes,    3770704 total
[177.207s][trace][gc,age         ] GC(47) - age  12:     342784 bytes,    4113488 total
[177.207s][trace][gc,age         ] GC(47) - age  13:     343936 bytes,    4457424 total
[177.207s][trace][gc,age         ] GC(47) - age  14:     344128 bytes,    4801552 total
[177.207s][trace][gc,age         ] GC(47) - age  15:     518160 bytes,    5319712 total
[177.207s][info ][gc,phases      ] GC(47)   Pre Evacuate Collection Set: 0.5ms
[177.207s][info ][gc,phases      ] GC(47)   Merge Heap Roots: 0.4ms
[177.207s][info ][gc,phases      ] GC(47)   Evacuate Collection Set: 7.6ms
[177.207s][info ][gc,phases      ] GC(47)   Post Evacuate Collection Set: 0.3ms
[177.207s][info ][gc,phases      ] GC(47)   Other: 0.3ms
[177.207s][info ][gc,heap        ] GC(47) Eden regions: 403->0(403)
[177.207s][info ][gc,heap        ] GC(47) Survivor regions: 6->6(52)
[177.208s][info ][gc,heap        ] GC(47) Old regions: 11->11
[177.208s][info ][gc,heap        ] GC(47) Archive regions: 2->2
[177.208s][info ][gc,heap        ] GC(47) Humongous regions: 0->0
[177.208s][info ][gc,metaspace   ] GC(47) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[177.208s][info ][gc             ] GC(47) Pause Young (Normal) (G1 Evacuation Pause) 409M->7M(2048M) 9.023ms
[177.208s][info ][gc,cpu         ] GC(47) User=0.03s Sys=0.00s Real=0.01s
[180.983s][info ][gc,start       ] GC(48) Pause Young (Normal) (G1 Evacuation Pause)
[180.984s][info ][gc,task        ] GC(48) Using 15 workers of 15 for evacuation
[180.984s][debug][gc,age         ] GC(48) Desired survivor size 27262976 bytes, new threshold 15 (max threshold 15)
[180.994s][trace][gc,age         ] GC(48) Age table with threshold 15 (max threshold 15)
[180.994s][trace][gc,age         ] GC(48) - age   1:     347024 bytes,     347024 total
[180.994s][trace][gc,age         ] GC(48) - age   2:     340224 bytes,     687248 total
[180.994s][trace][gc,age         ] GC(48) - age   3:     340928 bytes,    1028176 total
[180.994s][trace][gc,age         ] GC(48) - age   4:     340576 bytes,    1368752 total
[180.994s][trace][gc,age         ] GC(48) - age   5:     341216 bytes,    1709968 total
[180.994s][trace][gc,age         ] GC(48) - age   6:     341632 bytes,    2051600 total
[180.994s][trace][gc,age         ] GC(48) - age   7:     341568 bytes,    2393168 total
[180.994s][trace][gc,age         ] GC(48) - age   8:     341760 bytes,    2734928 total
[180.994s][trace][gc,age         ] GC(48) - age   9:     342208 bytes,    3077136 total
[180.994s][trace][gc,age         ] GC(48) - age  10:     342080 bytes,    3419216 total
[180.994s][trace][gc,age         ] GC(48) - age  11:     342656 bytes,    3761872 total
[180.994s][trace][gc,age         ] GC(48) - age  12:     342976 bytes,    4104848 total
[180.994s][trace][gc,age         ] GC(48) - age  13:     342784 bytes,    4447632 total
[180.994s][trace][gc,age         ] GC(48) - age  14:     343936 bytes,    4791568 total
[180.994s][trace][gc,age         ] GC(48) - age  15:     344128 bytes,    5135696 total
[180.994s][info ][gc,phases      ] GC(48)   Pre Evacuate Collection Set: 0.5ms
[180.994s][info ][gc,phases      ] GC(48)   Merge Heap Roots: 0.5ms
[180.994s][info ][gc,phases      ] GC(48)   Evacuate Collection Set: 8.8ms
[180.994s][info ][gc,phases      ] GC(48)   Post Evacuate Collection Set: 0.4ms
[180.994s][info ][gc,phases      ] GC(48)   Other: 0.3ms
[180.994s][info ][gc,heap        ] GC(48) Eden regions: 403->0(403)
[180.994s][info ][gc,heap        ] GC(48) Survivor regions: 6->6(52)
[180.994s][info ][gc,heap        ] GC(48) Old regions: 11->12
[180.994s][info ][gc,heap        ] GC(48) Archive regions: 2->2
[180.994s][info ][gc,heap        ] GC(48) Humongous regions: 0->0
[180.994s][info ][gc,metaspace   ] GC(48) Metaspace: 907K(1088K)->907K(1088K) NonClass: 823K(896K)->823K(896K) Class: 83K(192K)->83K(192K)
[180.994s][info ][gc             ] GC(48) Pause Young (Normal) (G1 Evacuation Pause) 410M->7M(2048M) 10.447ms
[180.994s][info ][gc,cpu         ] GC(48) User=0.04s Sys=0.00s Real=0.01s


More information about the core-libs-dev mailing list