-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.txt
1919 lines (1815 loc) · 456 KB
/
log.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
20:19:16,100 WARN |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [HazelcastInstanceFactory] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - WARNING: Classpath misconfiguration: found multiple META-INF/services/com.hazelcast.instance.impl.NodeExtension resources: file:/home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/target/classes/META-INF/services/com.hazelcast.instance.impl.NodeExtension, jar:file:/home/jenkins/.m2/repository/com/hazelcast/hazelcast/5.2-SNAPSHOT/hazelcast-5.2-SNAPSHOT.jar!/META-INF/services/com.hazelcast.instance.impl.NodeExtension, jar:file:/home/jenkins/.m2/repository/com/hazelcast/hazelcast/5.2-SNAPSHOT/hazelcast-5.2-SNAPSHOT-tests.jar!/META-INF/services/com.hazelcast.instance.impl.NodeExtension
20:19:16,124 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [LOCAL] [A] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:16,124 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithEmptyTargetCluster - [LOCAL] [A] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:16,124 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [LOCAL] [A] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:16,124 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [LOCAL] [A] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:16,124 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithPartiallyFilledTargetCluster - [LOCAL] [A] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:16,124 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetCluster - [LOCAL] [A] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:16,171 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [LOCAL] [A] [5.2-SNAPSHOT] Created new empty hot-restart directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat_ BINARY]_7549d676-ce6a-4da6-8388-95b8cd07136d/c0230d15-8d3c-4d40-a9bd-57a16aa5aaef
20:19:16,180 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster - [LOCAL] [A] [5.2-SNAPSHOT] Created new empty hot-restart directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat_ BINARY]_463cd0ed-a527-4d49-8799-c7188798cb78/090428dc-3221-4846-8ac5-0d7ab226e20b
20:19:16,180 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [LOCAL] [A] [5.2-SNAPSHOT] Created new empty hot-restart directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat_ BINARY]_fe5355a2-16a5-4565-ae0e-719600fb6fc0/0110a4e5-1c43-4b20-8d19-300e04832f6c
20:19:16,180 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [LOCAL] [A] [5.2-SNAPSHOT] Created new empty hot-restart directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat_ BINARY]_b2f3f464-e16b-4479-90ad-85017c01c007/2c528f2e-3cee-4776-94d1-639eafbd3c11
20:19:16,180 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithEmptyTargetCluster - [LOCAL] [A] [5.2-SNAPSHOT] Created new empty hot-restart directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat_ BINARY]_f159149c-4277-4673-8aa4-649090dd92fa/ac887e64-deae-4baa-97d0-8c6eb7e48223
20:19:16,180 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithPartiallyFilledTargetCluster - [LOCAL] [A] [5.2-SNAPSHOT] Created new empty hot-restart directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat_ BINARY]_cc4af146-2824-4c41-aaf1-729148fe24c2/00c26921-7833-4abf-876d-b2f74f2d1221
20:19:16,187 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:16,187 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:16,187 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:16,187 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:16,187 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:16,188 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:16,187 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:16,188 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:16,188 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:16,187 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:16,188 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5701
20:19:16,188 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5701
20:19:16,188 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:16,188 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:16,188 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5701
20:19:16,188 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5701
20:19:16,188 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5701
20:19:16,188 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Cluster name: A
20:19:16,188 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Cluster name: A
20:19:16,188 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Cluster name: A
20:19:16,188 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Cluster name: A
20:19:16,188 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Cluster name: A
20:19:16,188 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:16,188 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:16,188 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:16,188 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5701
20:19:16,189 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] The Jet engine is disabled.
To enable the Jet engine on the members, do one of the following:
- Change member config using Java API: config.getJetConfig().setEnabled(true)
- Change XML/YAML configuration property: Set hazelcast.jet.enabled to true
- Add system property: -Dhz.jet.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_JET_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:16,189 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:16,189 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Cluster name: A
20:19:16,189 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Checking Hazelcast Enterprise license...
20:19:16,189 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Jet is enabled
20:19:16,189 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:16,189 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Jet is enabled
20:19:16,189 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Jet is enabled
20:19:16,189 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Jet is enabled
20:19:16,189 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:16,189 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Jet is enabled
20:19:16,190 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Checking Hazelcast Enterprise license...
20:19:16,190 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Checking Hazelcast Enterprise license...
20:19:16,190 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Checking Hazelcast Enterprise license...
20:19:16,190 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Checking Hazelcast Enterprise license...
20:19:16,190 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Checking Hazelcast Enterprise license...
20:19:16,194 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] License{allowedNumberOfNodes=99, expiryDate=Dec/31/2099 23:59:59, featureList=[ Management Center, Clustered JMX, Clustered REST, Security, WAN Replication, High Density Memory, Hot Restart/Persistence, Rolling Upgrade, Streaming Management Center, Streaming Lossless Cluster Restart, Streaming Job Upgrades, Streaming Enterprise, Cluster Client Filtering, CP Subsystem Persistence, Dynamic Configuration ], type=Enterprise, companyName=null, ownerEmail=null, keyHash=6f+zBgeuSE3Aln7fKn7/+5BQneonRR6yrUlNVeGRXBY=, No Version Restriction}
20:19:16,194 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] License{allowedNumberOfNodes=99, expiryDate=Dec/31/2099 23:59:59, featureList=[ Management Center, Clustered JMX, Clustered REST, Security, WAN Replication, High Density Memory, Hot Restart/Persistence, Rolling Upgrade, Streaming Management Center, Streaming Lossless Cluster Restart, Streaming Job Upgrades, Streaming Enterprise, Cluster Client Filtering, CP Subsystem Persistence, Dynamic Configuration ], type=Enterprise, companyName=null, ownerEmail=null, keyHash=6f+zBgeuSE3Aln7fKn7/+5BQneonRR6yrUlNVeGRXBY=, No Version Restriction}
20:19:16,194 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] License{allowedNumberOfNodes=99, expiryDate=Dec/31/2099 23:59:59, featureList=[ Management Center, Clustered JMX, Clustered REST, Security, WAN Replication, High Density Memory, Hot Restart/Persistence, Rolling Upgrade, Streaming Management Center, Streaming Lossless Cluster Restart, Streaming Job Upgrades, Streaming Enterprise, Cluster Client Filtering, CP Subsystem Persistence, Dynamic Configuration ], type=Enterprise, companyName=null, ownerEmail=null, keyHash=6f+zBgeuSE3Aln7fKn7/+5BQneonRR6yrUlNVeGRXBY=, No Version Restriction}
20:19:16,194 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] License{allowedNumberOfNodes=99, expiryDate=Dec/31/2099 23:59:59, featureList=[ Management Center, Clustered JMX, Clustered REST, Security, WAN Replication, High Density Memory, Hot Restart/Persistence, Rolling Upgrade, Streaming Management Center, Streaming Lossless Cluster Restart, Streaming Job Upgrades, Streaming Enterprise, Cluster Client Filtering, CP Subsystem Persistence, Dynamic Configuration ], type=Enterprise, companyName=null, ownerEmail=null, keyHash=6f+zBgeuSE3Aln7fKn7/+5BQneonRR6yrUlNVeGRXBY=, No Version Restriction}
20:19:16,194 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] License{allowedNumberOfNodes=99, expiryDate=Dec/31/2099 23:59:59, featureList=[ Management Center, Clustered JMX, Clustered REST, Security, WAN Replication, High Density Memory, Hot Restart/Persistence, Rolling Upgrade, Streaming Management Center, Streaming Lossless Cluster Restart, Streaming Job Upgrades, Streaming Enterprise, Cluster Client Filtering, CP Subsystem Persistence, Dynamic Configuration ], type=Enterprise, companyName=null, ownerEmail=null, keyHash=6f+zBgeuSE3Aln7fKn7/+5BQneonRR6yrUlNVeGRXBY=, No Version Restriction}
20:19:16,194 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] License{allowedNumberOfNodes=99, expiryDate=Dec/31/2099 23:59:59, featureList=[ Management Center, Clustered JMX, Clustered REST, Security, WAN Replication, High Density Memory, Hot Restart/Persistence, Rolling Upgrade, Streaming Management Center, Streaming Lossless Cluster Restart, Streaming Job Upgrades, Streaming Enterprise, Cluster Client Filtering, CP Subsystem Persistence, Dynamic Configuration ], type=Enterprise, companyName=null, ownerEmail=null, keyHash=6f+zBgeuSE3Aln7fKn7/+5BQneonRR6yrUlNVeGRXBY=, No Version Restriction}
20:19:16,344 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled
20:19:16,344 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled
20:19:16,344 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled
20:19:16,347 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled
20:19:16,347 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled
20:19:16,347 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled
20:19:16,410 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [WanThrottlingAcknowledger] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Using throttling WAN acknowledgement strategy with pending invocation threshold 50000
20:19:16,410 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [WanThrottlingAcknowledger] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Using throttling WAN acknowledgement strategy with pending invocation threshold 50000
20:19:16,410 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [WanThrottlingAcknowledger] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Using throttling WAN acknowledgement strategy with pending invocation threshold 50000
20:19:16,410 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [WanThrottlingAcknowledger] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Using throttling WAN acknowledgement strategy with pending invocation threshold 50000
20:19:16,410 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [WanThrottlingAcknowledger] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Using throttling WAN acknowledgement strategy with pending invocation threshold 50000
20:19:16,410 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [WanThrottlingAcknowledger] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Using throttling WAN acknowledgement strategy with pending invocation threshold 50000
20:19:16,677 WARN |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [CPSubsystem] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees.
20:19:16,677 WARN |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [CPSubsystem] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees.
20:19:16,677 WARN |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [CPSubsystem] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees.
20:19:16,677 WARN |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [CPSubsystem] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees.
20:19:16,677 WARN |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [CPSubsystem] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees.
20:19:16,677 WARN |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [CPSubsystem] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees.
20:19:16,922 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [EnterpriseJetServiceBackend] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Setting number of cooperative threads and default parallelism to 2
20:19:16,922 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [EnterpriseJetServiceBackend] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Setting number of cooperative threads and default parallelism to 2
20:19:16,922 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [EnterpriseJetServiceBackend] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Setting number of cooperative threads and default parallelism to 2
20:19:16,922 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [EnterpriseJetServiceBackend] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Setting number of cooperative threads and default parallelism to 2
20:19:16,922 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [EnterpriseJetServiceBackend] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Setting number of cooperative threads and default parallelism to 2
20:19:16,986 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [Diagnostics] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
20:19:16,986 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [Diagnostics] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
20:19:16,986 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [Diagnostics] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
20:19:16,987 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [Diagnostics] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
20:19:16,987 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [Diagnostics] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
20:19:16,989 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [Diagnostics] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
20:19:16,994 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] [127.0.0.1]:5701 is STARTING
20:19:16,994 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] [127.0.0.1]:5701 is STARTING
20:19:16,994 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] [127.0.0.1]:5701 is STARTING
20:19:16,994 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] [127.0.0.1]:5701 is STARTING
20:19:16,994 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] [127.0.0.1]:5701 is STARTING
20:19:16,994 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] [127.0.0.1]:5701 is STARTING
20:19:17,008 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Cluster metadata could not be found on disk. Will not load Hot Restart data.
20:19:17,008 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Cluster metadata could not be found on disk. Will not load Hot Restart data.
20:19:17,008 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Cluster metadata could not be found on disk. Will not load Hot Restart data.
20:19:17,008 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Cluster metadata could not be found on disk. Will not load Hot Restart data.
20:19:17,008 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Cluster metadata could not be found on disk. Will not load Hot Restart data.
20:19:17,008 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Cluster metadata could not be found on disk. Will not load Hot Restart data.
20:19:17,015 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [hotrestart] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20.s00 homeDir: WanMerkleHotRestartComplexTest_testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat_ BINARY]_f159149c-4277-4673-8aa4-649090dd92fa/ac887e64-deae-4baa-97d0-8c6eb7e48223/s00
20:19:17,015 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [hotrestart] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a80.s00 homeDir: WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat_ BINARY]_7549d676-ce6a-4da6-8388-95b8cd07136d/c0230d15-8d3c-4d40-a9bd-57a16aa5aaef/s00
20:19:17,015 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [hotrestart] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] hz.ClusterA-d82c4410-196d-4644-902a-080cee17cbe40.s00 homeDir: WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat_ BINARY]_b2f3f464-e16b-4479-90ad-85017c01c007/2c528f2e-3cee-4776-94d1-639eafbd3c11/s00
20:19:17,015 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [hotrestart] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] hz.ClusterA-9d1310e4-f9b6-4026-99c2-358120b455d50.s00 homeDir: WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat_ BINARY]_463cd0ed-a527-4d49-8799-c7188798cb78/090428dc-3221-4846-8ac5-0d7ab226e20b/s00
20:19:17,015 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [hotrestart] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] hz.ClusterA-0c6e5f79-2534-4f0e-86b4-299f450951900.s00 homeDir: WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat_ BINARY]_fe5355a2-16a5-4565-ae0e-719600fb6fc0/0110a4e5-1c43-4b20-8d19-300e04832f6c/s00
20:19:17,015 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [hotrestart] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db0.s00 homeDir: WanMerkleHotRestartComplexTest_testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat_ BINARY]_cc4af146-2824-4c41-aaf1-729148fe24c2/00c26921-7833-4abf-876d-b2f74f2d1221/s00
20:19:17,064 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
Members {size:1, ver:1} [
Member [127.0.0.1]:5701 - b815800b-d6fb-48fe-a51e-a0f7046b0f8f this
]
20:19:17,064 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterService] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
Members {size:1, ver:1} [
Member [127.0.0.1]:5701 - 23ea7ad5-5931-4951-af06-f4cd79431354 this
]
20:19:17,064 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterService] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
Members {size:1, ver:1} [
Member [127.0.0.1]:5701 - baf5f63b-c407-468c-ac10-f4590d51295c this
]
20:19:17,064 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
Members {size:1, ver:1} [
Member [127.0.0.1]:5701 - 66f76622-758a-42ea-b74e-9d7da4516e81 this
]
20:19:17,064 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterService] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
Members {size:1, ver:1} [
Member [127.0.0.1]:5701 - 76efba5f-aeb9-4bef-882a-08ce7b80059c this
]
20:19:17,065 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
Members {size:1, ver:1} [
Member [127.0.0.1]:5701 - c247bec9-fee5-4a4f-bfee-8bc423c96ef8 this
]
20:19:17,072 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Starting hot-restart service. Base directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat_ BINARY]_cc4af146-2824-4c41-aaf1-729148fe24c2/00c26921-7833-4abf-876d-b2f74f2d1221
20:19:17,072 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Starting hot-restart service. Base directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat_ BINARY]_7549d676-ce6a-4da6-8388-95b8cd07136d/c0230d15-8d3c-4d40-a9bd-57a16aa5aaef
20:19:17,072 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Starting hot-restart service. Base directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat_ BINARY]_b2f3f464-e16b-4479-90ad-85017c01c007/2c528f2e-3cee-4776-94d1-639eafbd3c11
20:19:17,072 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Starting hot-restart service. Base directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat_ BINARY]_f159149c-4277-4673-8aa4-649090dd92fa/ac887e64-deae-4baa-97d0-8c6eb7e48223
20:19:17,072 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Starting hot-restart service. Base directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat_ BINARY]_463cd0ed-a527-4d49-8799-c7188798cb78/090428dc-3221-4846-8ac5-0d7ab226e20b
20:19:17,072 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Starting hot-restart service. Base directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat_ BINARY]_fe5355a2-16a5-4565-ae0e-719600fb6fc0/0110a4e5-1c43-4b20-8d19-300e04832f6c
20:19:17,072 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] No need to start validation since expected member count is: 1
20:19:17,072 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] No need to start validation since expected member count is: 1
20:19:17,072 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Setting cluster partition table...
20:19:17,072 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Setting cluster partition table...
20:19:17,072 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] No need to start validation since expected member count is: 1
20:19:17,072 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Starting hot restart local data load.
20:19:17,072 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Setting cluster partition table...
20:19:17,073 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] No need to start validation since expected member count is: 1
20:19:17,073 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Setting cluster partition table...
20:19:17,073 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Starting hot restart local data load.
20:19:17,073 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] No need to start validation since expected member count is: 1
20:19:17,073 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Starting hot restart local data load.
20:19:17,073 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Setting cluster partition table...
20:19:17,073 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] No need to start validation since expected member count is: 1
20:19:17,073 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Initializing Hot Restart stores, not expecting to reload any data.
20:19:17,074 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Starting hot restart local data load.
20:19:17,073 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Setting cluster partition table...
20:19:17,074 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Initializing Hot Restart stores, not expecting to reload any data.
20:19:17,074 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Starting hot restart local data load.
20:19:17,074 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Initializing Hot Restart stores, not expecting to reload any data.
20:19:17,074 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Initializing Hot Restart stores, not expecting to reload any data.
20:19:17,074 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Initializing Hot Restart stores, not expecting to reload any data.
20:19:17,076 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Starting hot restart local data load.
20:19:17,076 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Initializing Hot Restart stores, not expecting to reload any data.
20:19:17,089 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [hotrestart] hz.ClusterA-d82c4410-196d-4644-902a-080cee17cbe40.s00.restart-thread - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] hz.ClusterA-d82c4410-196d-4644-902a-080cee17cbe40.s00 reloaded 0 keys; chunk seq 001
20:19:17,089 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [hotrestart] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db0.s00.restart-thread - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db0.s00 reloaded 0 keys; chunk seq 001
20:19:17,089 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [hotrestart] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20.s00.restart-thread - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20.s00 reloaded 0 keys; chunk seq 001
20:19:17,089 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [hotrestart] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a80.s00.restart-thread - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a80.s00 reloaded 0 keys; chunk seq 001
20:19:17,089 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [hotrestart] hz.ClusterA-9d1310e4-f9b6-4026-99c2-358120b455d50.s00.restart-thread - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] hz.ClusterA-9d1310e4-f9b6-4026-99c2-358120b455d50.s00 reloaded 0 keys; chunk seq 001
20:19:17,089 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Local Hot Restart procedure completed with success.
20:19:17,089 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Local Hot Restart procedure completed with success.
20:19:17,089 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Shortcutting cluster start to success as there is no hot restart data on disk.
20:19:17,089 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Local Hot Restart procedure completed with success.
20:19:17,089 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [hotrestart] hz.ClusterA-0c6e5f79-2534-4f0e-86b4-299f450951900.s00.restart-thread - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] hz.ClusterA-0c6e5f79-2534-4f0e-86b4-299f450951900.s00 reloaded 0 keys; chunk seq 001
20:19:17,090 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Shortcutting cluster start to success as there is no hot restart data on disk.
20:19:17,089 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Shortcutting cluster start to success as there is no hot restart data on disk.
20:19:17,090 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Local Hot Restart procedure completed with success.
20:19:17,090 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Setting final cluster state to: ACTIVE
20:19:17,090 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Setting final cluster state to: ACTIVE
20:19:17,090 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Shortcutting cluster start to success as there is no hot restart data on disk.
20:19:17,090 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Local Hot Restart procedure completed with success.
20:19:17,090 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Setting final cluster state to: ACTIVE
20:19:17,090 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Shortcutting cluster start to success as there is no hot restart data on disk.
20:19:17,090 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Local Hot Restart procedure completed with success.
20:19:17,090 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Setting final cluster state to: ACTIVE
20:19:17,090 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Shortcutting cluster start to success as there is no hot restart data on disk.
20:19:17,090 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Setting final cluster state to: ACTIVE
20:19:17,090 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Completed hot restart with final cluster state: ACTIVE
20:19:17,090 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Completed hot restart with final cluster state: ACTIVE
20:19:17,090 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Completed hot restart with final cluster state: ACTIVE
20:19:17,090 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Completed hot restart with final cluster state: ACTIVE
20:19:17,090 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Completed hot restart with final cluster state: ACTIVE
20:19:17,090 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Setting final cluster state to: ACTIVE
20:19:17,091 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Completed hot restart with final cluster state: ACTIVE
20:19:17,091 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] All cluster members have transitioned to the final cluster state
20:19:17,091 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] All cluster members have transitioned to the final cluster state
20:19:17,091 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] All cluster members have transitioned to the final cluster state
20:19:17,091 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] All cluster members have transitioned to the final cluster state
20:19:17,091 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] All cluster members have transitioned to the final cluster state
20:19:17,091 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] All cluster members have transitioned to the final cluster state
20:19:18,086 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Hot Restart procedure completed in 1 seconds
20:19:18,087 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Hot Restart procedure completed in 1 seconds
20:19:18,087 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Hot Restart procedure completed in 1 seconds
20:19:18,087 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Hot Restart procedure completed in 1 seconds
20:19:18,087 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Hot Restart procedure completed in 1 seconds
20:19:18,086 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Hot Restart procedure completed in 1 seconds
20:19:18,089 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [EnterpriseJobCoordinationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Jet started scanning for jobs
20:19:18,089 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [EnterpriseJobCoordinationService] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Jet started scanning for jobs
20:19:18,089 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [EnterpriseJobCoordinationService] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Jet started scanning for jobs
20:19:18,089 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [EnterpriseJobCoordinationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Jet started scanning for jobs
20:19:18,089 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [EnterpriseJobCoordinationService] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Jet started scanning for jobs
20:19:18,092 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] [127.0.0.1]:5701 is STARTED
20:19:18,092 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] [127.0.0.1]:5701 is STARTED
20:19:18,092 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] [127.0.0.1]:5701 is STARTED
20:19:18,092 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] [127.0.0.1]:5701 is STARTED
20:19:18,092 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] [127.0.0.1]:5701 is STARTED
20:19:18,092 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] [127.0.0.1]:5701 is STARTED
20:19:18,099 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [HealthMonitor] hz.ClusterA-d82c4410-196d-4644-902a-080cee17cbe40.HealthMonitor - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] processors=8, physical.memory.total=377.6G, physical.memory.free=124.7G, swap.space.total=4.0G, swap.space.free=3.7G, heap.memory.used=214.1M, heap.memory.free=809.5M, heap.memory.total=1024.0M, heap.memory.max=1024.0M, heap.memory.used/total=20.81%, heap.memory.used/max=20.81%, minor.gc.count=5, minor.gc.time=17ms, major.gc.count=0, major.gc.time=0ms, load.process=50.00%, load.system=100.00%, load.systemAverage=10.63, thread.count=177, thread.peakCount=177, cluster.timeDiff=0, event.q.size=0, executor.q.async.size=0, executor.q.client.size=0, executor.q.client.query.size=0, executor.q.client.blocking.size=0, executor.q.query.size=0, executor.q.scheduled.size=0, executor.q.io.size=0, executor.q.system.size=0, executor.q.operations.size=0, executor.q.priorityOperation.size=0, operations.completed.count=1, executor.q.mapLoad.size=0, executor.q.mapLoadAllKeys.size=0, executor.q.cluster.size=0, executor.q.response.size=0, operations.running.count=0, operations.pending.invocations.percentage=0.00%, operations.pending.invocations.count=0, proxy.count=1, clientEndpoint.count=0, connection.active.count=0, client.connection.count=0, connection.count=0
20:19:18,099 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [HealthMonitor] hz.ClusterA-9d1310e4-f9b6-4026-99c2-358120b455d50.HealthMonitor - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] processors=8, physical.memory.total=377.6G, physical.memory.free=124.7G, swap.space.total=4.0G, swap.space.free=3.7G, heap.memory.used=213.0M, heap.memory.free=811.0M, heap.memory.total=1024.0M, heap.memory.max=1024.0M, heap.memory.used/total=20.76%, heap.memory.used/max=20.76%, minor.gc.count=5, minor.gc.time=17ms, major.gc.count=0, major.gc.time=0ms, load.process=0.00%, load.system=100.00%, load.systemAverage=10.63, thread.count=177, thread.peakCount=177, cluster.timeDiff=0, event.q.size=0, executor.q.async.size=0, executor.q.client.size=0, executor.q.client.query.size=0, executor.q.client.blocking.size=0, executor.q.query.size=0, executor.q.scheduled.size=0, executor.q.io.size=0, executor.q.system.size=0, executor.q.operations.size=0, executor.q.priorityOperation.size=0, operations.completed.count=1, executor.q.mapLoad.size=0, executor.q.mapLoadAllKeys.size=0, executor.q.cluster.size=0, executor.q.response.size=0, operations.running.count=0, operations.pending.invocations.percentage=0.00%, operations.pending.invocations.count=0, proxy.count=1, clientEndpoint.count=0, connection.active.count=0, client.connection.count=0, connection.count=0
20:19:18,099 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [HealthMonitor] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20.HealthMonitor - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] processors=8, physical.memory.total=377.6G, physical.memory.free=124.7G, swap.space.total=4.0G, swap.space.free=3.7G, heap.memory.used=213.5M, heap.memory.free=809.9M, heap.memory.total=1024.0M, heap.memory.max=1024.0M, heap.memory.used/total=20.81%, heap.memory.used/max=20.81%, minor.gc.count=5, minor.gc.time=17ms, major.gc.count=0, major.gc.time=0ms, load.process=0.00%, load.system=100.00%, load.systemAverage=10.63, thread.count=177, thread.peakCount=177, cluster.timeDiff=0, event.q.size=0, executor.q.async.size=0, executor.q.client.size=0, executor.q.client.query.size=0, executor.q.client.blocking.size=0, executor.q.query.size=0, executor.q.scheduled.size=0, executor.q.io.size=0, executor.q.system.size=0, executor.q.operations.size=0, executor.q.priorityOperation.size=0, operations.completed.count=1, executor.q.mapLoad.size=0, executor.q.mapLoadAllKeys.size=0, executor.q.cluster.size=0, executor.q.response.size=0, operations.running.count=0, operations.pending.invocations.percentage=0.00%, operations.pending.invocations.count=0, proxy.count=1, clientEndpoint.count=0, connection.active.count=0, client.connection.count=0, connection.count=0
20:19:18,099 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [HealthMonitor] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db0.HealthMonitor - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] processors=8, physical.memory.total=377.6G, physical.memory.free=124.7G, swap.space.total=4.0G, swap.space.free=3.7G, heap.memory.used=213.0M, heap.memory.free=811.0M, heap.memory.total=1024.0M, heap.memory.max=1024.0M, heap.memory.used/total=20.66%, heap.memory.used/max=20.66%, minor.gc.count=5, minor.gc.time=17ms, major.gc.count=0, major.gc.time=0ms, load.process=33.33%, load.system=100.00%, load.systemAverage=10.63, thread.count=177, thread.peakCount=177, cluster.timeDiff=0, event.q.size=0, executor.q.async.size=0, executor.q.client.size=0, executor.q.client.query.size=0, executor.q.client.blocking.size=0, executor.q.query.size=0, executor.q.scheduled.size=0, executor.q.io.size=0, executor.q.system.size=0, executor.q.operations.size=0, executor.q.priorityOperation.size=0, operations.completed.count=1, executor.q.mapLoad.size=0, executor.q.mapLoadAllKeys.size=0, executor.q.cluster.size=0, executor.q.response.size=0, operations.running.count=0, operations.pending.invocations.percentage=0.00%, operations.pending.invocations.count=0, proxy.count=1, clientEndpoint.count=0, connection.active.count=0, client.connection.count=0, connection.count=0
20:19:18,099 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [HealthMonitor] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a80.HealthMonitor - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] processors=8, physical.memory.total=377.6G, physical.memory.free=124.7G, swap.space.total=4.0G, swap.space.free=3.7G, heap.memory.used=213.0M, heap.memory.free=811.0M, heap.memory.total=1024.0M, heap.memory.max=1024.0M, heap.memory.used/total=20.66%, heap.memory.used/max=20.66%, minor.gc.count=5, minor.gc.time=17ms, major.gc.count=0, major.gc.time=0ms, load.process=33.33%, load.system=100.00%, load.systemAverage=10.63, thread.count=177, thread.peakCount=177, cluster.timeDiff=0, event.q.size=0, executor.q.async.size=0, executor.q.client.size=0, executor.q.client.query.size=0, executor.q.client.blocking.size=0, executor.q.query.size=0, executor.q.scheduled.size=0, executor.q.io.size=0, executor.q.system.size=0, executor.q.operations.size=0, executor.q.priorityOperation.size=0, operations.completed.count=1, executor.q.mapLoad.size=0, executor.q.mapLoadAllKeys.size=0, executor.q.cluster.size=0, executor.q.response.size=0, operations.running.count=0, operations.pending.invocations.percentage=0.00%, operations.pending.invocations.count=0, proxy.count=1, clientEndpoint.count=0, connection.active.count=0, client.connection.count=0, connection.count=0
20:19:18,099 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [HealthMonitor] hz.ClusterA-0c6e5f79-2534-4f0e-86b4-299f450951900.HealthMonitor - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] processors=8, physical.memory.total=377.6G, physical.memory.free=124.7G, swap.space.total=4.0G, swap.space.free=3.7G, heap.memory.used=213.5M, heap.memory.free=810.5M, heap.memory.total=1024.0M, heap.memory.max=1024.0M, heap.memory.used/total=20.81%, heap.memory.used/max=20.81%, minor.gc.count=5, minor.gc.time=17ms, major.gc.count=0, major.gc.time=0ms, load.process=50.00%, load.system=100.00%, load.systemAverage=10.63, thread.count=177, thread.peakCount=177, cluster.timeDiff=0, event.q.size=0, executor.q.async.size=0, executor.q.client.size=0, executor.q.client.query.size=0, executor.q.client.blocking.size=0, executor.q.query.size=0, executor.q.scheduled.size=0, executor.q.io.size=0, executor.q.system.size=0, executor.q.operations.size=0, executor.q.priorityOperation.size=0, operations.completed.count=1, executor.q.mapLoad.size=0, executor.q.mapLoadAllKeys.size=0, executor.q.cluster.size=0, executor.q.response.size=0, operations.running.count=0, operations.pending.invocations.percentage=0.00%, operations.pending.invocations.count=0, proxy.count=1, clientEndpoint.count=0, connection.active.count=0, client.connection.count=0, connection.count=0
20:19:18,107 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [LOCAL] [A] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:18,108 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [LOCAL] [A] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:18,108 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithEmptyTargetCluster - [LOCAL] [A] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:18,108 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetCluster - [LOCAL] [A] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:18,108 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithPartiallyFilledTargetCluster - [LOCAL] [A] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:18,108 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [LOCAL] [A] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:18,112 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [LOCAL] [A] [5.2-SNAPSHOT] Created new empty hot-restart directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat_ BINARY]_fe5355a2-16a5-4565-ae0e-719600fb6fc0/37b085bc-7ca4-4802-989a-013e990eaf60
20:19:18,113 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster - [LOCAL] [A] [5.2-SNAPSHOT] Created new empty hot-restart directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat_ BINARY]_463cd0ed-a527-4d49-8799-c7188798cb78/231c85c2-29e6-4328-845d-b1427fc5fc82
20:19:18,113 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [LOCAL] [A] [5.2-SNAPSHOT] Created new empty hot-restart directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat_ BINARY]_7549d676-ce6a-4da6-8388-95b8cd07136d/63b0afb6-3faf-4e65-9a6f-454e78e7408f
20:19:18,113 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [LOCAL] [A] [5.2-SNAPSHOT] Created new empty hot-restart directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat_ BINARY]_b2f3f464-e16b-4479-90ad-85017c01c007/65dc509f-5277-49e7-94b3-f8a232d9404a
20:19:18,113 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithEmptyTargetCluster - [LOCAL] [A] [5.2-SNAPSHOT] Created new empty hot-restart directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat_ BINARY]_f159149c-4277-4673-8aa4-649090dd92fa/c41c2b78-8ac7-4023-baea-3fac30e030b8
20:19:18,113 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:18,113 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:18,113 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithPartiallyFilledTargetCluster - [LOCAL] [A] [5.2-SNAPSHOT] Created new empty hot-restart directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat_ BINARY]_cc4af146-2824-4c41-aaf1-729148fe24c2/688c3d0a-df89-40b0-9b4b-875338797270
20:19:18,113 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:18,113 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:18,113 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:18,113 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5702
20:19:18,113 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:18,113 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5702
20:19:18,113 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Cluster name: A
20:19:18,113 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5702
20:19:18,114 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Cluster name: A
20:19:18,114 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:18,114 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Cluster name: A
20:19:18,114 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:18,114 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Jet is enabled
20:19:18,114 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:18,114 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:18,114 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Jet is enabled
20:19:18,114 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] The Jet engine is disabled.
To enable the Jet engine on the members, do one of the following:
- Change member config using Java API: config.getJetConfig().setEnabled(true)
- Change XML/YAML configuration property: Set hazelcast.jet.enabled to true
- Add system property: -Dhz.jet.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_JET_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:18,114 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:18,114 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:18,114 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Checking Hazelcast Enterprise license...
20:19:18,114 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Checking Hazelcast Enterprise license...
20:19:18,114 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Checking Hazelcast Enterprise license...
20:19:18,114 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:18,114 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5702
20:19:18,114 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:18,114 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Cluster name: A
20:19:18,114 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5702
20:19:18,114 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:18,114 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:18,114 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Cluster name: A
20:19:18,114 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Jet is enabled
20:19:18,114 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5702
20:19:18,114 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:18,114 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Cluster name: A
20:19:18,114 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Checking Hazelcast Enterprise license...
20:19:18,114 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:18,114 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Jet is enabled
20:19:18,115 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Jet is enabled
20:19:18,115 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Checking Hazelcast Enterprise license...
20:19:18,115 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Checking Hazelcast Enterprise license...
20:19:18,115 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] License{allowedNumberOfNodes=99, expiryDate=Dec/31/2099 23:59:59, featureList=[ Management Center, Clustered JMX, Clustered REST, Security, WAN Replication, High Density Memory, Hot Restart/Persistence, Rolling Upgrade, Streaming Management Center, Streaming Lossless Cluster Restart, Streaming Job Upgrades, Streaming Enterprise, Cluster Client Filtering, CP Subsystem Persistence, Dynamic Configuration ], type=Enterprise, companyName=null, ownerEmail=null, keyHash=6f+zBgeuSE3Aln7fKn7/+5BQneonRR6yrUlNVeGRXBY=, No Version Restriction}
20:19:18,115 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] License{allowedNumberOfNodes=99, expiryDate=Dec/31/2099 23:59:59, featureList=[ Management Center, Clustered JMX, Clustered REST, Security, WAN Replication, High Density Memory, Hot Restart/Persistence, Rolling Upgrade, Streaming Management Center, Streaming Lossless Cluster Restart, Streaming Job Upgrades, Streaming Enterprise, Cluster Client Filtering, CP Subsystem Persistence, Dynamic Configuration ], type=Enterprise, companyName=null, ownerEmail=null, keyHash=6f+zBgeuSE3Aln7fKn7/+5BQneonRR6yrUlNVeGRXBY=, No Version Restriction}
20:19:18,115 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] License{allowedNumberOfNodes=99, expiryDate=Dec/31/2099 23:59:59, featureList=[ Management Center, Clustered JMX, Clustered REST, Security, WAN Replication, High Density Memory, Hot Restart/Persistence, Rolling Upgrade, Streaming Management Center, Streaming Lossless Cluster Restart, Streaming Job Upgrades, Streaming Enterprise, Cluster Client Filtering, CP Subsystem Persistence, Dynamic Configuration ], type=Enterprise, companyName=null, ownerEmail=null, keyHash=6f+zBgeuSE3Aln7fKn7/+5BQneonRR6yrUlNVeGRXBY=, No Version Restriction}
20:19:18,115 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] License{allowedNumberOfNodes=99, expiryDate=Dec/31/2099 23:59:59, featureList=[ Management Center, Clustered JMX, Clustered REST, Security, WAN Replication, High Density Memory, Hot Restart/Persistence, Rolling Upgrade, Streaming Management Center, Streaming Lossless Cluster Restart, Streaming Job Upgrades, Streaming Enterprise, Cluster Client Filtering, CP Subsystem Persistence, Dynamic Configuration ], type=Enterprise, companyName=null, ownerEmail=null, keyHash=6f+zBgeuSE3Aln7fKn7/+5BQneonRR6yrUlNVeGRXBY=, No Version Restriction}
20:19:18,115 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] License{allowedNumberOfNodes=99, expiryDate=Dec/31/2099 23:59:59, featureList=[ Management Center, Clustered JMX, Clustered REST, Security, WAN Replication, High Density Memory, Hot Restart/Persistence, Rolling Upgrade, Streaming Management Center, Streaming Lossless Cluster Restart, Streaming Job Upgrades, Streaming Enterprise, Cluster Client Filtering, CP Subsystem Persistence, Dynamic Configuration ], type=Enterprise, companyName=null, ownerEmail=null, keyHash=6f+zBgeuSE3Aln7fKn7/+5BQneonRR6yrUlNVeGRXBY=, No Version Restriction}
20:19:18,116 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] License{allowedNumberOfNodes=99, expiryDate=Dec/31/2099 23:59:59, featureList=[ Management Center, Clustered JMX, Clustered REST, Security, WAN Replication, High Density Memory, Hot Restart/Persistence, Rolling Upgrade, Streaming Management Center, Streaming Lossless Cluster Restart, Streaming Job Upgrades, Streaming Enterprise, Cluster Client Filtering, CP Subsystem Persistence, Dynamic Configuration ], type=Enterprise, companyName=null, ownerEmail=null, keyHash=6f+zBgeuSE3Aln7fKn7/+5BQneonRR6yrUlNVeGRXBY=, No Version Restriction}
20:19:18,137 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled
20:19:18,139 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [WanThrottlingAcknowledger] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Using throttling WAN acknowledgement strategy with pending invocation threshold 50000
20:19:18,142 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled
20:19:18,142 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled
20:19:18,142 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled
20:19:18,144 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [WanThrottlingAcknowledger] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Using throttling WAN acknowledgement strategy with pending invocation threshold 50000
20:19:18,144 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [WanThrottlingAcknowledger] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Using throttling WAN acknowledgement strategy with pending invocation threshold 50000
20:19:18,145 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled
20:19:18,147 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [WanThrottlingAcknowledger] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Using throttling WAN acknowledgement strategy with pending invocation threshold 50000
20:19:18,147 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled
20:19:18,148 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [WanThrottlingAcknowledger] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Using throttling WAN acknowledgement strategy with pending invocation threshold 50000
20:19:18,148 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [WanThrottlingAcknowledger] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Using throttling WAN acknowledgement strategy with pending invocation threshold 50000
20:19:18,190 WARN |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [CPSubsystem] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees.
20:19:18,190 WARN |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [CPSubsystem] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees.
20:19:18,190 WARN |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [CPSubsystem] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees.
20:19:18,190 WARN |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [CPSubsystem] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees.
20:19:18,190 WARN |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [CPSubsystem] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees.
20:19:18,190 WARN |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [CPSubsystem] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees.
20:19:18,204 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [EnterpriseJetServiceBackend] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Setting number of cooperative threads and default parallelism to 2
20:19:18,204 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [EnterpriseJetServiceBackend] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Setting number of cooperative threads and default parallelism to 2
20:19:18,204 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [EnterpriseJetServiceBackend] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Setting number of cooperative threads and default parallelism to 2
20:19:18,204 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [EnterpriseJetServiceBackend] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Setting number of cooperative threads and default parallelism to 2
20:19:18,205 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [EnterpriseJetServiceBackend] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Setting number of cooperative threads and default parallelism to 2
20:19:18,215 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [Diagnostics] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
20:19:18,216 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [Diagnostics] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
20:19:18,216 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [Diagnostics] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
20:19:18,216 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] [127.0.0.1]:5702 is STARTING
20:19:18,216 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] [127.0.0.1]:5702 is STARTING
20:19:18,216 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] [127.0.0.1]:5702 is STARTING
20:19:18,217 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [Diagnostics] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
20:19:18,217 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] [127.0.0.1]:5702 is STARTING
20:19:18,217 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [Diagnostics] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
20:19:18,218 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] [127.0.0.1]:5702 is STARTING
20:19:18,218 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Cluster metadata could not be found on disk. Will not load Hot Restart data.
20:19:18,218 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Cluster metadata could not be found on disk. Will not load Hot Restart data.
20:19:18,218 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Cluster metadata could not be found on disk. Will not load Hot Restart data.
20:19:18,218 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Cluster metadata could not be found on disk. Will not load Hot Restart data.
20:19:18,218 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [hotrestart] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] hz.ClusterA-9d1310e4-f9b6-4026-99c2-358120b455d51.s00 homeDir: WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat_ BINARY]_463cd0ed-a527-4d49-8799-c7188798cb78/231c85c2-29e6-4328-845d-b1427fc5fc82/s00
20:19:18,218 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [hotrestart] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1.s00 homeDir: WanMerkleHotRestartComplexTest_testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat_ BINARY]_cc4af146-2824-4c41-aaf1-729148fe24c2/688c3d0a-df89-40b0-9b4b-875338797270/s00
20:19:18,218 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [hotrestart] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b21.s00 homeDir: WanMerkleHotRestartComplexTest_testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat_ BINARY]_f159149c-4277-4673-8aa4-649090dd92fa/c41c2b78-8ac7-4023-baea-3fac30e030b8/s00
20:19:18,218 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [hotrestart] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] hz.ClusterA-0c6e5f79-2534-4f0e-86b4-299f450951901.s00 homeDir: WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat_ BINARY]_fe5355a2-16a5-4565-ae0e-719600fb6fc0/37b085bc-7ca4-4802-989a-013e990eaf60/s00
20:19:18,219 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Cluster metadata could not be found on disk. Will not load Hot Restart data.
20:19:18,219 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [hotrestart] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] hz.ClusterA-d82c4410-196d-4644-902a-080cee17cbe41.s00 homeDir: WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat_ BINARY]_b2f3f464-e16b-4479-90ad-85017c01c007/65dc509f-5277-49e7-94b3-f8a232d9404a/s00
20:19:18,227 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [MockServer] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5701-76efba5f-aeb9-4bef-882a-08ce7b80059c, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5702, uuid=b03676f3-c4c2-403c-82ef-4c77f72d6c39], remoteEndpoint=[address=[127.0.0.1]:5701, uuid=76efba5f-aeb9-4bef-882a-08ce7b80059c], alive=true}
20:19:18,227 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [MockServer] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5701-b815800b-d6fb-48fe-a51e-a0f7046b0f8f, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5702, uuid=8a711d58-f092-4a6b-8f03-c67df2e5431e], remoteEndpoint=[address=[127.0.0.1]:5701, uuid=b815800b-d6fb-48fe-a51e-a0f7046b0f8f], alive=true}
20:19:18,227 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [MockServer] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5701-23ea7ad5-5931-4951-af06-f4cd79431354, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5702, uuid=d0abc2d2-84c0-4f7f-8dcd-c30f33181900], remoteEndpoint=[address=[127.0.0.1]:5701, uuid=23ea7ad5-5931-4951-af06-f4cd79431354], alive=true}
20:19:18,227 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [MockServer] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5701-66f76622-758a-42ea-b74e-9d7da4516e81, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5702, uuid=e1391daa-9bbc-4d96-b7e5-2e84b1de2f88], remoteEndpoint=[address=[127.0.0.1]:5701, uuid=66f76622-758a-42ea-b74e-9d7da4516e81], alive=true}
20:19:18,227 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [MockServer] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5701-baf5f63b-c407-468c-ac10-f4590d51295c, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5702, uuid=7f3db59e-54ef-498b-9909-ef1c1a9e2512], remoteEndpoint=[address=[127.0.0.1]:5701, uuid=baf5f63b-c407-468c-ac10-f4590d51295c], alive=true}
20:19:18,227 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [Diagnostics] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
20:19:18,228 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] [127.0.0.1]:5702 is STARTING
20:19:18,230 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Cluster metadata could not be found on disk. Will not load Hot Restart data.
20:19:18,231 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [hotrestart] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a81.s00 homeDir: WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat_ BINARY]_7549d676-ce6a-4da6-8388-95b8cd07136d/63b0afb6-3faf-4e65-9a6f-454e78e7408f/s00
20:19:18,233 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [MockServer] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5701-c247bec9-fee5-4a4f-bfee-8bc423c96ef8, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5702, uuid=4e47c3be-7464-42c4-9fd4-f134f3599d8a], remoteEndpoint=[address=[127.0.0.1]:5701, uuid=c247bec9-fee5-4a4f-bfee-8bc423c96ef8], alive=true}
20:19:18,237 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [MockServer] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a80.priority-generic-operation.thread-0 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5702-4e47c3be-7464-42c4-9fd4-f134f3599d8a, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5701, uuid=c247bec9-fee5-4a4f-bfee-8bc423c96ef8], remoteEndpoint=[address=[127.0.0.1]:5702, uuid=4e47c3be-7464-42c4-9fd4-f134f3599d8a], alive=true}
20:19:18,237 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [MockServer] hz.ClusterA-0c6e5f79-2534-4f0e-86b4-299f450951900.priority-generic-operation.thread-0 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5702-8a711d58-f092-4a6b-8f03-c67df2e5431e, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5701, uuid=b815800b-d6fb-48fe-a51e-a0f7046b0f8f], remoteEndpoint=[address=[127.0.0.1]:5702, uuid=8a711d58-f092-4a6b-8f03-c67df2e5431e], alive=true}
20:19:18,237 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [MockServer] hz.ClusterA-9d1310e4-f9b6-4026-99c2-358120b455d50.priority-generic-operation.thread-0 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5702-d0abc2d2-84c0-4f7f-8dcd-c30f33181900, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5701, uuid=23ea7ad5-5931-4951-af06-f4cd79431354], remoteEndpoint=[address=[127.0.0.1]:5702, uuid=d0abc2d2-84c0-4f7f-8dcd-c30f33181900], alive=true}
20:19:18,237 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [MockServer] hz.ClusterA-d82c4410-196d-4644-902a-080cee17cbe40.generic-operation.thread-0 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5702-e1391daa-9bbc-4d96-b7e5-2e84b1de2f88, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5701, uuid=66f76622-758a-42ea-b74e-9d7da4516e81], remoteEndpoint=[address=[127.0.0.1]:5702, uuid=e1391daa-9bbc-4d96-b7e5-2e84b1de2f88], alive=true}
20:19:18,237 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [MockServer] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db0.priority-generic-operation.thread-0 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5702-b03676f3-c4c2-403c-82ef-4c77f72d6c39, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5701, uuid=76efba5f-aeb9-4bef-882a-08ce7b80059c], remoteEndpoint=[address=[127.0.0.1]:5702, uuid=b03676f3-c4c2-403c-82ef-4c77f72d6c39], alive=true}
20:19:18,237 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [MockServer] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20.priority-generic-operation.thread-0 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5702-7f3db59e-54ef-498b-9909-ef1c1a9e2512, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5701, uuid=baf5f63b-c407-468c-ac10-f4590d51295c], remoteEndpoint=[address=[127.0.0.1]:5702, uuid=7f3db59e-54ef-498b-9909-ef1c1a9e2512], alive=true}
20:19:18,242 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterService] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a80.priority-generic-operation.thread-0 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
Members {size:2, ver:2} [
Member [127.0.0.1]:5701 - c247bec9-fee5-4a4f-bfee-8bc423c96ef8 this
Member [127.0.0.1]:5702 - 4e47c3be-7464-42c4-9fd4-f134f3599d8a
]
20:19:18,241 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterService] hz.ClusterA-d82c4410-196d-4644-902a-080cee17cbe40.generic-operation.thread-0 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
Members {size:2, ver:2} [
Member [127.0.0.1]:5701 - 66f76622-758a-42ea-b74e-9d7da4516e81 this
Member [127.0.0.1]:5702 - e1391daa-9bbc-4d96-b7e5-2e84b1de2f88
]
20:19:18,242 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterService] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20.priority-generic-operation.thread-0 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
Members {size:2, ver:2} [
Member [127.0.0.1]:5701 - baf5f63b-c407-468c-ac10-f4590d51295c this
Member [127.0.0.1]:5702 - 7f3db59e-54ef-498b-9909-ef1c1a9e2512
]
20:19:18,241 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterService] hz.ClusterA-0c6e5f79-2534-4f0e-86b4-299f450951900.priority-generic-operation.thread-0 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
Members {size:2, ver:2} [
Member [127.0.0.1]:5701 - b815800b-d6fb-48fe-a51e-a0f7046b0f8f this
Member [127.0.0.1]:5702 - 8a711d58-f092-4a6b-8f03-c67df2e5431e
]
20:19:18,242 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterService] hz.ClusterA-9d1310e4-f9b6-4026-99c2-358120b455d50.priority-generic-operation.thread-0 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
Members {size:2, ver:2} [
Member [127.0.0.1]:5701 - 23ea7ad5-5931-4951-af06-f4cd79431354 this
Member [127.0.0.1]:5702 - d0abc2d2-84c0-4f7f-8dcd-c30f33181900
]
20:19:18,242 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterService] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db0.priority-generic-operation.thread-0 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
Members {size:2, ver:2} [
Member [127.0.0.1]:5701 - 76efba5f-aeb9-4bef-882a-08ce7b80059c this
Member [127.0.0.1]:5702 - b03676f3-c4c2-403c-82ef-4c77f72d6c39
]
20:19:18,344 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterService] hz.ClusterA-0c6e5f79-2534-4f0e-86b4-299f450951901.priority-generic-operation.thread-0 - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT]
Members {size:2, ver:2} [
Member [127.0.0.1]:5701 - b815800b-d6fb-48fe-a51e-a0f7046b0f8f
Member [127.0.0.1]:5702 - 8a711d58-f092-4a6b-8f03-c67df2e5431e this
]
20:19:18,344 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterService] hz.ClusterA-9d1310e4-f9b6-4026-99c2-358120b455d51.generic-operation.thread-1 - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT]
Members {size:2, ver:2} [
Member [127.0.0.1]:5701 - 23ea7ad5-5931-4951-af06-f4cd79431354
Member [127.0.0.1]:5702 - d0abc2d2-84c0-4f7f-8dcd-c30f33181900 this
]
20:19:18,344 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterService] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1.priority-generic-operation.thread-0 - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT]
Members {size:2, ver:2} [
Member [127.0.0.1]:5701 - 76efba5f-aeb9-4bef-882a-08ce7b80059c
Member [127.0.0.1]:5702 - b03676f3-c4c2-403c-82ef-4c77f72d6c39 this
]
20:19:18,344 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterService] hz.ClusterA-d82c4410-196d-4644-902a-080cee17cbe41.generic-operation.thread-1 - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT]
Members {size:2, ver:2} [
Member [127.0.0.1]:5701 - 66f76622-758a-42ea-b74e-9d7da4516e81
Member [127.0.0.1]:5702 - e1391daa-9bbc-4d96-b7e5-2e84b1de2f88 this
]
20:19:18,344 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterService] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b21.generic-operation.thread-1 - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT]
Members {size:2, ver:2} [
Member [127.0.0.1]:5701 - baf5f63b-c407-468c-ac10-f4590d51295c
Member [127.0.0.1]:5702 - 7f3db59e-54ef-498b-9909-ef1c1a9e2512 this
]
20:19:18,345 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Starting hot-restart service. Base directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat_ BINARY]_cc4af146-2824-4c41-aaf1-729148fe24c2/688c3d0a-df89-40b0-9b4b-875338797270
20:19:18,345 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterService] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a81.priority-generic-operation.thread-0 - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT]
Members {size:2, ver:2} [
Member [127.0.0.1]:5701 - c247bec9-fee5-4a4f-bfee-8bc423c96ef8
Member [127.0.0.1]:5702 - 4e47c3be-7464-42c4-9fd4-f134f3599d8a this
]
20:19:18,346 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] No need to start validation since expected member count is: 1
20:19:18,346 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Setting cluster partition table...
20:19:18,346 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Starting hot-restart service. Base directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat_ BINARY]_b2f3f464-e16b-4479-90ad-85017c01c007/65dc509f-5277-49e7-94b3-f8a232d9404a
20:19:18,346 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Starting hot-restart service. Base directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat_ BINARY]_fe5355a2-16a5-4565-ae0e-719600fb6fc0/37b085bc-7ca4-4802-989a-013e990eaf60
20:19:18,346 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Starting hot-restart service. Base directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat_ BINARY]_463cd0ed-a527-4d49-8799-c7188798cb78/231c85c2-29e6-4328-845d-b1427fc5fc82
20:19:18,346 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Starting hot restart local data load.
20:19:18,346 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Starting hot-restart service. Base directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat_ BINARY]_f159149c-4277-4673-8aa4-649090dd92fa/c41c2b78-8ac7-4023-baea-3fac30e030b8
20:19:18,346 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Starting hot-restart service. Base directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat_ BINARY]_7549d676-ce6a-4da6-8388-95b8cd07136d/63b0afb6-3faf-4e65-9a6f-454e78e7408f
20:19:18,346 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] No need to start validation since expected member count is: 1
20:19:18,346 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Setting cluster partition table...
20:19:18,346 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Starting hot restart local data load.
20:19:18,346 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] No need to start validation since expected member count is: 1
20:19:18,346 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Setting cluster partition table...
20:19:18,346 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] No need to start validation since expected member count is: 1
20:19:18,346 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Starting hot restart local data load.
20:19:18,347 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Setting cluster partition table...
20:19:18,347 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Starting hot restart local data load.
20:19:18,347 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Initializing Hot Restart stores, not expecting to reload any data.
20:19:18,347 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] No need to start validation since expected member count is: 1
20:19:18,347 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Setting cluster partition table...
20:19:18,347 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] No need to start validation since expected member count is: 1
20:19:18,347 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Setting cluster partition table...
20:19:18,347 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Starting hot restart local data load.
20:19:18,347 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Initializing Hot Restart stores, not expecting to reload any data.
20:19:18,348 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Initializing Hot Restart stores, not expecting to reload any data.
20:19:18,349 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Initializing Hot Restart stores, not expecting to reload any data.
20:19:18,349 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Starting hot restart local data load.
20:19:18,350 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Initializing Hot Restart stores, not expecting to reload any data.
20:19:18,350 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Initializing Hot Restart stores, not expecting to reload any data.
20:19:18,352 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [hotrestart] hz.ClusterA-d82c4410-196d-4644-902a-080cee17cbe41.s00.restart-thread - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] hz.ClusterA-d82c4410-196d-4644-902a-080cee17cbe41.s00 reloaded 0 keys; chunk seq 001
20:19:18,352 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [hotrestart] hz.ClusterA-9d1310e4-f9b6-4026-99c2-358120b455d51.s00.restart-thread - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] hz.ClusterA-9d1310e4-f9b6-4026-99c2-358120b455d51.s00 reloaded 0 keys; chunk seq 001
20:19:18,353 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Local Hot Restart procedure completed with success.
20:19:18,353 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Shortcutting cluster start to success as there is no hot restart data on disk.
20:19:18,353 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Local Hot Restart procedure completed with success.
20:19:18,353 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Setting final cluster state to: ACTIVE
20:19:18,353 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Shortcutting cluster start to success as there is no hot restart data on disk.
20:19:18,353 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Setting final cluster state to: ACTIVE
20:19:18,353 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Completed hot restart with final cluster state: ACTIVE
20:19:18,353 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Completed hot restart with final cluster state: ACTIVE
20:19:18,353 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [hotrestart] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1.s00.restart-thread - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1.s00 reloaded 0 keys; chunk seq 001
20:19:18,353 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Local Hot Restart procedure completed with success.
20:19:18,353 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [hotrestart] hz.ClusterA-0c6e5f79-2534-4f0e-86b4-299f450951901.s00.restart-thread - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] hz.ClusterA-0c6e5f79-2534-4f0e-86b4-299f450951901.s00 reloaded 0 keys; chunk seq 001
20:19:18,353 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Shortcutting cluster start to success as there is no hot restart data on disk.
20:19:18,354 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Setting final cluster state to: ACTIVE
20:19:18,354 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Local Hot Restart procedure completed with success.
20:19:18,354 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [hotrestart] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b21.s00.restart-thread - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b21.s00 reloaded 0 keys; chunk seq 001
20:19:18,354 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Completed hot restart with final cluster state: ACTIVE
20:19:18,354 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Shortcutting cluster start to success as there is no hot restart data on disk.
20:19:18,354 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Setting final cluster state to: ACTIVE
20:19:18,354 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [hotrestart] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a81.s00.restart-thread - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a81.s00 reloaded 0 keys; chunk seq 001
20:19:18,354 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Local Hot Restart procedure completed with success.
20:19:18,354 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Completed hot restart with final cluster state: ACTIVE
20:19:18,354 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Shortcutting cluster start to success as there is no hot restart data on disk.
20:19:18,354 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Local Hot Restart procedure completed with success.
20:19:18,354 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Setting final cluster state to: ACTIVE
20:19:18,354 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Shortcutting cluster start to success as there is no hot restart data on disk.
20:19:18,354 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Completed hot restart with final cluster state: ACTIVE
20:19:18,355 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Setting final cluster state to: ACTIVE
20:19:18,355 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Completed hot restart with final cluster state: ACTIVE
20:19:18,360 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] All cluster members have transitioned to the final cluster state
20:19:18,360 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] All cluster members have transitioned to the final cluster state
20:19:18,360 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] All cluster members have transitioned to the final cluster state
20:19:18,360 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] All cluster members have transitioned to the final cluster state
20:19:18,360 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] All cluster members have transitioned to the final cluster state
20:19:18,360 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] All cluster members have transitioned to the final cluster state
20:19:19,349 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Hot Restart procedure completed in 1 seconds
20:19:19,349 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Hot Restart procedure completed in 1 seconds
20:19:19,349 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Hot Restart procedure completed in 1 seconds
20:19:19,350 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Hot Restart procedure completed in 1 seconds
20:19:19,350 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [EnterpriseJobCoordinationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Jet started scanning for jobs
20:19:19,350 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [EnterpriseJobCoordinationService] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Jet started scanning for jobs
20:19:19,350 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [EnterpriseJobCoordinationService] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Jet started scanning for jobs
20:19:19,350 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [EnterpriseJobCoordinationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Jet started scanning for jobs
20:19:19,351 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] [127.0.0.1]:5702 is STARTED
20:19:19,351 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] [127.0.0.1]:5702 is STARTED
20:19:19,351 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] [127.0.0.1]:5702 is STARTED
20:19:19,351 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] [127.0.0.1]:5702 is STARTED
20:19:19,351 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Hot Restart procedure completed in 1 seconds
20:19:19,351 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Hot Restart procedure completed in 1 seconds
20:19:19,351 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [EnterpriseJobCoordinationService] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Jet started scanning for jobs
20:19:19,352 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] [127.0.0.1]:5702 is STARTED
20:19:19,352 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] [127.0.0.1]:5702 is STARTED
20:19:19,356 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [LOCAL] [A] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:19,356 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [HealthMonitor] hz.ClusterA-9d1310e4-f9b6-4026-99c2-358120b455d51.HealthMonitor - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] processors=8, physical.memory.total=377.6G, physical.memory.free=124.6G, swap.space.total=4.0G, swap.space.free=3.7G, heap.memory.used=377.5M, heap.memory.free=646.5M, heap.memory.total=1024.0M, heap.memory.max=1024.0M, heap.memory.used/total=36.72%, heap.memory.used/max=36.72%, minor.gc.count=5, minor.gc.time=17ms, major.gc.count=0, major.gc.time=0ms, load.process=16.67%, load.system=100.00%, load.systemAverage=10.63, thread.count=358, thread.peakCount=358, cluster.timeDiff=-14, event.q.size=0, executor.q.async.size=0, executor.q.client.size=0, executor.q.client.query.size=0, executor.q.client.blocking.size=0, executor.q.query.size=0, executor.q.scheduled.size=0, executor.q.io.size=0, executor.q.system.size=0, executor.q.operations.size=0, executor.q.priorityOperation.size=0, operations.completed.count=25, executor.q.mapLoad.size=0, executor.q.mapLoadAllKeys.size=0, executor.q.cluster.size=0, executor.q.response.size=0, operations.running.count=0, operations.pending.invocations.percentage=0.00%, operations.pending.invocations.count=0, proxy.count=1, clientEndpoint.count=0, connection.active.count=0, client.connection.count=0, connection.count=0
20:19:19,356 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [HealthMonitor] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1.HealthMonitor - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] processors=8, physical.memory.total=377.6G, physical.memory.free=124.6G, swap.space.total=4.0G, swap.space.free=3.7G, heap.memory.used=377.5M, heap.memory.free=646.5M, heap.memory.total=1024.0M, heap.memory.max=1024.0M, heap.memory.used/total=36.77%, heap.memory.used/max=36.77%, minor.gc.count=5, minor.gc.time=17ms, major.gc.count=0, major.gc.time=0ms, load.process=0.00%, load.system=100.00%, load.systemAverage=10.63, thread.count=358, thread.peakCount=358, cluster.timeDiff=-15, event.q.size=0, executor.q.async.size=0, executor.q.client.size=0, executor.q.client.query.size=0, executor.q.client.blocking.size=0, executor.q.query.size=0, executor.q.scheduled.size=0, executor.q.io.size=0, executor.q.system.size=0, executor.q.operations.size=0, executor.q.priorityOperation.size=0, operations.completed.count=23, executor.q.mapLoad.size=0, executor.q.mapLoadAllKeys.size=0, executor.q.cluster.size=0, executor.q.response.size=0, operations.running.count=0, operations.pending.invocations.percentage=0.00%, operations.pending.invocations.count=0, proxy.count=1, clientEndpoint.count=0, connection.active.count=0, client.connection.count=0, connection.count=0
20:19:19,357 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [HealthMonitor] hz.ClusterA-d82c4410-196d-4644-902a-080cee17cbe41.HealthMonitor - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] processors=8, physical.memory.total=377.6G, physical.memory.free=124.6G, swap.space.total=4.0G, swap.space.free=3.7G, heap.memory.used=377.5M, heap.memory.free=646.5M, heap.memory.total=1024.0M, heap.memory.max=1024.0M, heap.memory.used/total=36.67%, heap.memory.used/max=36.67%, minor.gc.count=5, minor.gc.time=17ms, major.gc.count=0, major.gc.time=0ms, load.process=50.00%, load.system=100.00%, load.systemAverage=10.63, thread.count=358, thread.peakCount=358, cluster.timeDiff=-13, event.q.size=0, executor.q.async.size=0, executor.q.client.size=0, executor.q.client.query.size=0, executor.q.client.blocking.size=0, executor.q.query.size=0, executor.q.scheduled.size=0, executor.q.io.size=0, executor.q.system.size=0, executor.q.operations.size=0, executor.q.priorityOperation.size=0, operations.completed.count=21, executor.q.mapLoad.size=0, executor.q.mapLoadAllKeys.size=0, executor.q.cluster.size=0, executor.q.response.size=0, operations.running.count=0, operations.pending.invocations.percentage=0.00%, operations.pending.invocations.count=0, proxy.count=1, clientEndpoint.count=0, connection.active.count=0, client.connection.count=0, connection.count=0
20:19:19,358 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [HealthMonitor] hz.ClusterA-0c6e5f79-2534-4f0e-86b4-299f450951901.HealthMonitor - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] processors=8, physical.memory.total=377.6G, physical.memory.free=124.6G, swap.space.total=4.0G, swap.space.free=3.7G, heap.memory.used=377.5M, heap.memory.free=646.5M, heap.memory.total=1024.0M, heap.memory.max=1024.0M, heap.memory.used/total=36.82%, heap.memory.used/max=36.82%, minor.gc.count=5, minor.gc.time=17ms, major.gc.count=0, major.gc.time=0ms, load.process=0.00%, load.system=100.00%, load.systemAverage=10.63, thread.count=358, thread.peakCount=358, cluster.timeDiff=-7, event.q.size=0, executor.q.async.size=0, executor.q.client.size=0, executor.q.client.query.size=0, executor.q.client.blocking.size=0, executor.q.query.size=0, executor.q.scheduled.size=0, executor.q.io.size=0, executor.q.system.size=0, executor.q.operations.size=0, executor.q.priorityOperation.size=0, operations.completed.count=25, executor.q.mapLoad.size=0, executor.q.mapLoadAllKeys.size=0, executor.q.cluster.size=0, executor.q.response.size=0, operations.running.count=0, operations.pending.invocations.percentage=0.00%, operations.pending.invocations.count=0, proxy.count=1, clientEndpoint.count=0, connection.active.count=0, client.connection.count=0, connection.count=0
20:19:19,358 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [HealthMonitor] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b21.HealthMonitor - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] processors=8, physical.memory.total=377.6G, physical.memory.free=124.6G, swap.space.total=4.0G, swap.space.free=3.7G, heap.memory.used=379.1M, heap.memory.free=644.9M, heap.memory.total=1024.0M, heap.memory.max=1024.0M, heap.memory.used/total=36.87%, heap.memory.used/max=36.87%, minor.gc.count=5, minor.gc.time=17ms, major.gc.count=0, major.gc.time=0ms, load.process=25.00%, load.system=100.00%, load.systemAverage=10.63, thread.count=358, thread.peakCount=358, cluster.timeDiff=-14, event.q.size=0, executor.q.async.size=0, executor.q.client.size=0, executor.q.client.query.size=0, executor.q.client.blocking.size=0, executor.q.query.size=0, executor.q.scheduled.size=0, executor.q.io.size=0, executor.q.system.size=0, executor.q.operations.size=0, executor.q.priorityOperation.size=0, operations.completed.count=25, executor.q.mapLoad.size=0, executor.q.mapLoadAllKeys.size=0, executor.q.cluster.size=0, executor.q.response.size=0, operations.running.count=0, operations.pending.invocations.percentage=0.00%, operations.pending.invocations.count=0, proxy.count=1, clientEndpoint.count=0, connection.active.count=0, client.connection.count=0, connection.count=0
20:19:19,358 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [HealthMonitor] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a81.HealthMonitor - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] processors=8, physical.memory.total=377.6G, physical.memory.free=124.6G, swap.space.total=4.0G, swap.space.free=3.7G, heap.memory.used=378.1M, heap.memory.free=645.9M, heap.memory.total=1024.0M, heap.memory.max=1024.0M, heap.memory.used/total=36.82%, heap.memory.used/max=36.87%, minor.gc.count=5, minor.gc.time=17ms, major.gc.count=0, major.gc.time=0ms, load.process=0.00%, load.system=100.00%, load.systemAverage=10.63, thread.count=358, thread.peakCount=358, cluster.timeDiff=-6, event.q.size=0, executor.q.async.size=0, executor.q.client.size=0, executor.q.client.query.size=0, executor.q.client.blocking.size=0, executor.q.query.size=0, executor.q.scheduled.size=0, executor.q.io.size=0, executor.q.system.size=0, executor.q.operations.size=0, executor.q.priorityOperation.size=0, operations.completed.count=25, executor.q.mapLoad.size=0, executor.q.mapLoadAllKeys.size=0, executor.q.cluster.size=0, executor.q.response.size=0, operations.running.count=0, operations.pending.invocations.percentage=0.00%, operations.pending.invocations.count=0, proxy.count=1, clientEndpoint.count=0, connection.active.count=0, client.connection.count=0, connection.count=0
20:19:19,361 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [LOCAL] [A] [5.2-SNAPSHOT] Created new empty hot-restart directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat_ BINARY]_7549d676-ce6a-4da6-8388-95b8cd07136d/7ec708a8-0a77-4f34-bff4-92061cdd94c5
20:19:19,361 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Initializing cluster partition table arrangement...
20:19:19,361 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Initializing cluster partition table arrangement...
20:19:19,361 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Initializing cluster partition table arrangement...
20:19:19,361 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Initializing cluster partition table arrangement...
20:19:19,361 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Initializing cluster partition table arrangement...
20:19:19,362 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:19,362 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:19,362 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5703
20:19:19,362 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Cluster name: A
20:19:19,362 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:19,362 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] The Jet engine is disabled.
To enable the Jet engine on the members, do one of the following:
- Change member config using Java API: config.getJetConfig().setEnabled(true)
- Change XML/YAML configuration property: Set hazelcast.jet.enabled to true
- Add system property: -Dhz.jet.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_JET_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:19,362 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Checking Hazelcast Enterprise license...
20:19:19,363 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] License{allowedNumberOfNodes=99, expiryDate=Dec/31/2099 23:59:59, featureList=[ Management Center, Clustered JMX, Clustered REST, Security, WAN Replication, High Density Memory, Hot Restart/Persistence, Rolling Upgrade, Streaming Management Center, Streaming Lossless Cluster Restart, Streaming Job Upgrades, Streaming Enterprise, Cluster Client Filtering, CP Subsystem Persistence, Dynamic Configuration ], type=Enterprise, companyName=null, ownerEmail=null, keyHash=6f+zBgeuSE3Aln7fKn7/+5BQneonRR6yrUlNVeGRXBY=, No Version Restriction}
20:19:19,371 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetCluster - [LOCAL] [B] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:19,371 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithEmptyTargetCluster - [LOCAL] [B] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:19,371 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [LOCAL] [B] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:19,371 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithPartiallyFilledTargetCluster - [LOCAL] [B] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:19,371 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [LOCAL] [B] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:19,373 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:19,373 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:19,373 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5801
20:19:19,373 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:19,373 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Cluster name: B
20:19:19,373 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:19,373 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5801
20:19:19,373 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:19,373 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Cluster name: B
20:19:19,373 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Jet is enabled
20:19:19,373 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:19,373 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:19,373 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:19,373 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Jet is enabled
20:19:19,373 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5801
20:19:19,373 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:19,373 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Cluster name: B
20:19:19,373 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Checking Hazelcast Enterprise license...
20:19:19,374 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:19,374 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Checking Hazelcast Enterprise license...
20:19:19,374 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:19,374 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5801
20:19:19,374 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:19,374 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Cluster name: B
20:19:19,374 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Jet is enabled
20:19:19,374 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:19,374 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:19,374 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Jet is enabled
20:19:19,374 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Checking Hazelcast Enterprise license...
20:19:19,374 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5801
20:19:19,374 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Checking Hazelcast Enterprise license...
20:19:19,374 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Cluster name: B
20:19:19,374 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:19,374 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Jet is enabled
20:19:19,374 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] License{allowedNumberOfNodes=99, expiryDate=Dec/31/2099 23:59:59, featureList=[ Management Center, Clustered JMX, Clustered REST, Security, WAN Replication, High Density Memory, Hot Restart/Persistence, Rolling Upgrade, Streaming Management Center, Streaming Lossless Cluster Restart, Streaming Job Upgrades, Streaming Enterprise, Cluster Client Filtering, CP Subsystem Persistence, Dynamic Configuration ], type=Enterprise, companyName=null, ownerEmail=null, keyHash=6f+zBgeuSE3Aln7fKn7/+5BQneonRR6yrUlNVeGRXBY=, No Version Restriction}
20:19:19,374 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] License{allowedNumberOfNodes=99, expiryDate=Dec/31/2099 23:59:59, featureList=[ Management Center, Clustered JMX, Clustered REST, Security, WAN Replication, High Density Memory, Hot Restart/Persistence, Rolling Upgrade, Streaming Management Center, Streaming Lossless Cluster Restart, Streaming Job Upgrades, Streaming Enterprise, Cluster Client Filtering, CP Subsystem Persistence, Dynamic Configuration ], type=Enterprise, companyName=null, ownerEmail=null, keyHash=6f+zBgeuSE3Aln7fKn7/+5BQneonRR6yrUlNVeGRXBY=, No Version Restriction}
20:19:19,374 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] License{allowedNumberOfNodes=99, expiryDate=Dec/31/2099 23:59:59, featureList=[ Management Center, Clustered JMX, Clustered REST, Security, WAN Replication, High Density Memory, Hot Restart/Persistence, Rolling Upgrade, Streaming Management Center, Streaming Lossless Cluster Restart, Streaming Job Upgrades, Streaming Enterprise, Cluster Client Filtering, CP Subsystem Persistence, Dynamic Configuration ], type=Enterprise, companyName=null, ownerEmail=null, keyHash=6f+zBgeuSE3Aln7fKn7/+5BQneonRR6yrUlNVeGRXBY=, No Version Restriction}
20:19:19,374 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Checking Hazelcast Enterprise license...
20:19:19,374 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] License{allowedNumberOfNodes=99, expiryDate=Dec/31/2099 23:59:59, featureList=[ Management Center, Clustered JMX, Clustered REST, Security, WAN Replication, High Density Memory, Hot Restart/Persistence, Rolling Upgrade, Streaming Management Center, Streaming Lossless Cluster Restart, Streaming Job Upgrades, Streaming Enterprise, Cluster Client Filtering, CP Subsystem Persistence, Dynamic Configuration ], type=Enterprise, companyName=null, ownerEmail=null, keyHash=6f+zBgeuSE3Aln7fKn7/+5BQneonRR6yrUlNVeGRXBY=, No Version Restriction}
20:19:19,375 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] License{allowedNumberOfNodes=99, expiryDate=Dec/31/2099 23:59:59, featureList=[ Management Center, Clustered JMX, Clustered REST, Security, WAN Replication, High Density Memory, Hot Restart/Persistence, Rolling Upgrade, Streaming Management Center, Streaming Lossless Cluster Restart, Streaming Job Upgrades, Streaming Enterprise, Cluster Client Filtering, CP Subsystem Persistence, Dynamic Configuration ], type=Enterprise, companyName=null, ownerEmail=null, keyHash=6f+zBgeuSE3Aln7fKn7/+5BQneonRR6yrUlNVeGRXBY=, No Version Restriction}
20:19:19,379 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled
20:19:19,381 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [WanThrottlingAcknowledger] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Using throttling WAN acknowledgement strategy with pending invocation threshold 50000
20:19:19,390 WARN |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [CPSubsystem] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees.
20:19:19,392 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled
20:19:19,392 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled
20:19:19,393 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled
20:19:19,394 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [WanThrottlingAcknowledger] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Using throttling WAN acknowledgement strategy with pending invocation threshold 50000
20:19:19,394 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [WanThrottlingAcknowledger] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Using throttling WAN acknowledgement strategy with pending invocation threshold 50000
20:19:19,395 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled
20:19:19,395 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [WanThrottlingAcknowledger] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Using throttling WAN acknowledgement strategy with pending invocation threshold 50000
20:19:19,397 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [WanThrottlingAcknowledger] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Using throttling WAN acknowledgement strategy with pending invocation threshold 50000
20:19:19,397 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Collecting debug metrics and sending to diagnostics is enabled
20:19:19,398 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [WanThrottlingAcknowledger] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Using throttling WAN acknowledgement strategy with pending invocation threshold 50000
20:19:19,403 WARN |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [CPSubsystem] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees.
20:19:19,403 WARN |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [CPSubsystem] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees.
20:19:19,404 WARN |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [CPSubsystem] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees.
20:19:19,422 WARN |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [CPSubsystem] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees.
20:19:19,423 WARN |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [CPSubsystem] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] CP Subsystem is not enabled. CP data structures will operate in UNSAFE mode! Please note that UNSAFE mode will not provide strong consistency guarantees.
20:19:19,429 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [EnterpriseJetServiceBackend] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Setting number of cooperative threads and default parallelism to 2
20:19:19,430 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [EnterpriseJetServiceBackend] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Setting number of cooperative threads and default parallelism to 2
20:19:19,432 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [EnterpriseJetServiceBackend] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Setting number of cooperative threads and default parallelism to 2
20:19:19,433 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [EnterpriseJetServiceBackend] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Setting number of cooperative threads and default parallelism to 2
20:19:19,434 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [EnterpriseJetServiceBackend] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Setting number of cooperative threads and default parallelism to 2
20:19:19,439 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [Diagnostics] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
20:19:19,440 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] [127.0.0.1]:5801 is STARTING
20:19:19,440 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [ClusterService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT]
Members {size:1, ver:1} [
Member [127.0.0.1]:5801 - 4bbfed4a-27c7-4b48-a33c-d0e0ed5f7086 this
]
20:19:19,441 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [EnterpriseJobCoordinationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Jet started scanning for jobs
20:19:19,441 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] [127.0.0.1]:5801 is STARTED
20:19:19,442 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Initializing cluster partition table arrangement...
20:19:19,442 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [Diagnostics] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
20:19:19,442 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [Diagnostics] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
20:19:19,442 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] [127.0.0.1]:5801 is STARTING
20:19:19,442 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] [127.0.0.1]:5801 is STARTING
20:19:19,443 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterService] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT]
Members {size:1, ver:1} [
Member [127.0.0.1]:5801 - 502bf054-afac-4205-b98a-1aac67587dfd this
]
20:19:19,443 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterService] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT]
Members {size:1, ver:1} [
Member [127.0.0.1]:5801 - 77e8c669-4c96-4d6a-aa82-1a947a056685 this
]
20:19:19,443 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [EnterpriseJobCoordinationService] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Jet started scanning for jobs
20:19:19,443 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [EnterpriseJobCoordinationService] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Jet started scanning for jobs
20:19:19,444 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [WanMapTestSupport] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - Filling map MAP_MERKLE [0,1000)
20:19:19,444 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] [127.0.0.1]:5801 is STARTED
20:19:19,444 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] [127.0.0.1]:5801 is STARTED
20:19:19,444 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [Diagnostics] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
20:19:19,445 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Initializing cluster partition table arrangement...
20:19:19,445 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] [127.0.0.1]:5801 is STARTING
20:19:19,445 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Initializing cluster partition table arrangement...
20:19:19,445 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [ClusterService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT]
Members {size:1, ver:1} [
Member [127.0.0.1]:5801 - 484e2b9c-c60b-4f68-9c27-293eebb37cf7 this
]
20:19:19,445 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [WanMapTestSupport] testConsistencyCheckWithFullyFilledTargetCluster - Filling map MAP_MERKLE [0,1000)
20:19:19,445 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [WanMapTestSupport] testConsistencyCheckWithEmptyTargetCluster - Filling map MAP_MERKLE [0,1000)
20:19:19,445 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [EnterpriseJobCoordinationService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Jet started scanning for jobs
20:19:19,445 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [Diagnostics] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
20:19:19,446 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] [127.0.0.1]:5801 is STARTING
20:19:19,446 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] [127.0.0.1]:5801 is STARTED
20:19:19,446 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterService] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT]
Members {size:1, ver:1} [
Member [127.0.0.1]:5801 - 2bd22851-9010-4b27-9d5f-7e635793b11e this
]
20:19:19,446 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [EnterpriseJobCoordinationService] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Jet started scanning for jobs
20:19:19,450 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Initializing cluster partition table arrangement...
20:19:19,450 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] [127.0.0.1]:5801 is STARTED
20:19:19,450 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [WanMapTestSupport] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - Filling map MAP_MERKLE [0,1000)
20:19:19,452 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Initializing cluster partition table arrangement...
20:19:19,452 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [HealthMonitor] hz.ClusterB-77e31210-5863-4abc-9b4e-ffe43ff5d6810.HealthMonitor - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] processors=8, physical.memory.total=377.6G, physical.memory.free=124.6G, swap.space.total=4.0G, swap.space.free=3.7G, heap.memory.used=465.5M, heap.memory.free=558.0M, heap.memory.total=1024.0M, heap.memory.max=1024.0M, heap.memory.used/total=45.22%, heap.memory.used/max=45.22%, minor.gc.count=5, minor.gc.time=17ms, major.gc.count=0, major.gc.time=0ms, load.process=0.00%, load.system=100.00%, load.systemAverage=10.63, thread.count=502, thread.peakCount=502, cluster.timeDiff=0, event.q.size=0, executor.q.async.size=0, executor.q.client.size=0, executor.q.client.query.size=0, executor.q.client.blocking.size=0, executor.q.query.size=0, executor.q.scheduled.size=0, executor.q.io.size=0, executor.q.system.size=0, executor.q.operations.size=0, executor.q.priorityOperation.size=0, operations.completed.count=0, executor.q.mapLoad.size=0, executor.q.mapLoadAllKeys.size=0, executor.q.cluster.size=0, executor.q.response.size=0, operations.running.count=0, operations.pending.invocations.percentage=0.00%, operations.pending.invocations.count=0, proxy.count=1, clientEndpoint.count=0, connection.active.count=0, client.connection.count=0, connection.count=0
20:19:19,452 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [WanMapTestSupport] testConsistencyCheckWithPartiallyFilledTargetCluster - Filling map MAP_MERKLE [0,1000)
20:19:19,453 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [HealthMonitor] hz.ClusterB-0755998c-17d0-4f81-ae04-c7908a2731d30.HealthMonitor - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] processors=8, physical.memory.total=377.6G, physical.memory.free=124.5G, swap.space.total=4.0G, swap.space.free=3.7G, heap.memory.used=467.5M, heap.memory.free=556.5M, heap.memory.total=1024.0M, heap.memory.max=1024.0M, heap.memory.used/total=45.46%, heap.memory.used/max=45.46%, minor.gc.count=5, minor.gc.time=17ms, major.gc.count=0, major.gc.time=0ms, load.process=16.67%, load.system=100.00%, load.systemAverage=10.63, thread.count=504, thread.peakCount=504, cluster.timeDiff=0, event.q.size=0, executor.q.async.size=0, executor.q.client.size=0, executor.q.client.query.size=0, executor.q.client.blocking.size=0, executor.q.query.size=0, executor.q.scheduled.size=0, executor.q.io.size=0, executor.q.system.size=0, executor.q.operations.size=0, executor.q.priorityOperation.size=0, operations.completed.count=0, executor.q.mapLoad.size=0, executor.q.mapLoadAllKeys.size=0, executor.q.cluster.size=0, executor.q.response.size=0, operations.running.count=0, operations.pending.invocations.percentage=0.00%, operations.pending.invocations.count=0, proxy.count=1, clientEndpoint.count=0, connection.active.count=0, client.connection.count=0, connection.count=0
20:19:19,453 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [HealthMonitor] hz.ClusterB-4cc3d7f3-b8cb-45c3-8208-04d9917c045a0.HealthMonitor - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] processors=8, physical.memory.total=377.6G, physical.memory.free=124.5G, swap.space.total=4.0G, swap.space.free=3.7G, heap.memory.used=468.5M, heap.memory.free=555.5M, heap.memory.total=1024.0M, heap.memory.max=1024.0M, heap.memory.used/total=45.51%, heap.memory.used/max=45.51%, minor.gc.count=5, minor.gc.time=17ms, major.gc.count=0, major.gc.time=0ms, load.process=0.00%, load.system=100.00%, load.systemAverage=10.63, thread.count=504, thread.peakCount=504, cluster.timeDiff=0, event.q.size=0, executor.q.async.size=0, executor.q.client.size=0, executor.q.client.query.size=0, executor.q.client.blocking.size=0, executor.q.query.size=0, executor.q.scheduled.size=0, executor.q.io.size=0, executor.q.system.size=0, executor.q.operations.size=0, executor.q.priorityOperation.size=0, operations.completed.count=0, executor.q.mapLoad.size=0, executor.q.mapLoadAllKeys.size=0, executor.q.cluster.size=0, executor.q.response.size=0, operations.running.count=0, operations.pending.invocations.percentage=0.00%, operations.pending.invocations.count=0, proxy.count=1, clientEndpoint.count=0, connection.active.count=0, client.connection.count=0, connection.count=0
20:19:19,454 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [HealthMonitor] hz.ClusterB-f50db6d4-9247-4815-be3f-c5d5d57363e70.HealthMonitor - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] processors=8, physical.memory.total=377.6G, physical.memory.free=124.5G, swap.space.total=4.0G, swap.space.free=3.7G, heap.memory.used=471.0M, heap.memory.free=553.0M, heap.memory.total=1024.0M, heap.memory.max=1024.0M, heap.memory.used/total=45.66%, heap.memory.used/max=45.66%, minor.gc.count=5, minor.gc.time=17ms, major.gc.count=0, major.gc.time=0ms, load.process=11.11%, load.system=100.00%, load.systemAverage=10.63, thread.count=504, thread.peakCount=504, cluster.timeDiff=0, event.q.size=0, executor.q.async.size=0, executor.q.client.size=0, executor.q.client.query.size=0, executor.q.client.blocking.size=0, executor.q.query.size=0, executor.q.scheduled.size=0, executor.q.io.size=0, executor.q.system.size=0, executor.q.operations.size=0, executor.q.priorityOperation.size=0, operations.completed.count=0, executor.q.mapLoad.size=0, executor.q.mapLoadAllKeys.size=0, executor.q.cluster.size=0, executor.q.response.size=0, operations.running.count=0, operations.pending.invocations.percentage=0.00%, operations.pending.invocations.count=0, proxy.count=1, clientEndpoint.count=0, connection.active.count=0, client.connection.count=0, connection.count=0
20:19:19,455 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [HealthMonitor] hz.ClusterB-a4ee2eae-8ded-40cc-8790-851c5820d9c90.HealthMonitor - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] processors=8, physical.memory.total=377.6G, physical.memory.free=124.5G, swap.space.total=4.0G, swap.space.free=3.7G, heap.memory.used=471.0M, heap.memory.free=553.0M, heap.memory.total=1024.0M, heap.memory.max=1024.0M, heap.memory.used/total=45.76%, heap.memory.used/max=45.76%, minor.gc.count=5, minor.gc.time=17ms, major.gc.count=0, major.gc.time=0ms, load.process=33.33%, load.system=100.00%, load.systemAverage=10.63, thread.count=504, thread.peakCount=504, cluster.timeDiff=0, event.q.size=0, executor.q.async.size=0, executor.q.client.size=0, executor.q.client.query.size=0, executor.q.client.blocking.size=0, executor.q.query.size=0, executor.q.scheduled.size=0, executor.q.io.size=0, executor.q.system.size=0, executor.q.operations.size=0, executor.q.priorityOperation.size=0, operations.completed.count=0, executor.q.mapLoad.size=0, executor.q.mapLoadAllKeys.size=0, executor.q.cluster.size=0, executor.q.response.size=0, operations.running.count=0, operations.pending.invocations.percentage=0.00%, operations.pending.invocations.count=0, proxy.count=1, clientEndpoint.count=0, connection.active.count=0, client.connection.count=0, connection.count=0
20:19:19,456 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [Diagnostics] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
20:19:19,456 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] [127.0.0.1]:5703 is STARTING
20:19:19,457 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Cluster metadata could not be found on disk. Will not load Hot Restart data.
20:19:19,458 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [hotrestart] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a82.s00 homeDir: WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat_ BINARY]_7549d676-ce6a-4da6-8388-95b8cd07136d/7ec708a8-0a77-4f34-bff4-92061cdd94c5/s00
20:19:19,460 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [MockServer] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5701-c247bec9-fee5-4a4f-bfee-8bc423c96ef8, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5703, uuid=1f1e342b-d0a7-426a-a13c-c0f92448ab61], remoteEndpoint=[address=[127.0.0.1]:5701, uuid=c247bec9-fee5-4a4f-bfee-8bc423c96ef8], alive=true}
20:19:19,461 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [MockServer] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a80.priority-generic-operation.thread-0 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5703-1f1e342b-d0a7-426a-a13c-c0f92448ab61, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5701, uuid=c247bec9-fee5-4a4f-bfee-8bc423c96ef8], remoteEndpoint=[address=[127.0.0.1]:5703, uuid=1f1e342b-d0a7-426a-a13c-c0f92448ab61], alive=true}
20:19:19,462 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterService] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a80.priority-generic-operation.thread-0 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
Members {size:3, ver:3} [
Member [127.0.0.1]:5701 - c247bec9-fee5-4a4f-bfee-8bc423c96ef8 this
Member [127.0.0.1]:5702 - 4e47c3be-7464-42c4-9fd4-f134f3599d8a
Member [127.0.0.1]:5703 - 1f1e342b-d0a7-426a-a13c-c0f92448ab61
]
20:19:19,476 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [MockServer] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a81.priority-generic-operation.thread-0 - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5703-1f1e342b-d0a7-426a-a13c-c0f92448ab61, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5702, uuid=4e47c3be-7464-42c4-9fd4-f134f3599d8a], remoteEndpoint=[address=[127.0.0.1]:5703, uuid=1f1e342b-d0a7-426a-a13c-c0f92448ab61], alive=true}
20:19:19,476 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterService] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a81.priority-generic-operation.thread-0 - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT]
Members {size:3, ver:3} [
Member [127.0.0.1]:5701 - c247bec9-fee5-4a4f-bfee-8bc423c96ef8
Member [127.0.0.1]:5702 - 4e47c3be-7464-42c4-9fd4-f134f3599d8a this
Member [127.0.0.1]:5703 - 1f1e342b-d0a7-426a-a13c-c0f92448ab61
]
20:19:19,565 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterService] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a82.generic-operation.thread-0 - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT]
Members {size:3, ver:3} [
Member [127.0.0.1]:5701 - c247bec9-fee5-4a4f-bfee-8bc423c96ef8
Member [127.0.0.1]:5702 - 4e47c3be-7464-42c4-9fd4-f134f3599d8a
Member [127.0.0.1]:5703 - 1f1e342b-d0a7-426a-a13c-c0f92448ab61 this
]
20:19:19,579 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [MockServer] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5702-4e47c3be-7464-42c4-9fd4-f134f3599d8a, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5703, uuid=1f1e342b-d0a7-426a-a13c-c0f92448ab61], remoteEndpoint=[address=[127.0.0.1]:5702, uuid=4e47c3be-7464-42c4-9fd4-f134f3599d8a], alive=true}
20:19:19,579 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Starting hot-restart service. Base directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat_ BINARY]_7549d676-ce6a-4da6-8388-95b8cd07136d/7ec708a8-0a77-4f34-bff4-92061cdd94c5
20:19:19,579 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] No need to start validation since expected member count is: 1
20:19:19,579 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [PartitionStateManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Setting cluster partition table...
20:19:19,581 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Starting hot restart local data load.
20:19:19,581 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Initializing Hot Restart stores, not expecting to reload any data.
20:19:19,583 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [hotrestart] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a82.s00.restart-thread - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a82.s00 reloaded 0 keys; chunk seq 001
20:19:19,584 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Local Hot Restart procedure completed with success.
20:19:19,584 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Shortcutting cluster start to success as there is no hot restart data on disk.
20:19:19,584 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Setting final cluster state to: ACTIVE
20:19:19,585 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Completed hot restart with final cluster state: ACTIVE
20:19:19,586 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [ClusterMetadataManager] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] All cluster members have transitioned to the final cluster state
20:19:20,296 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [WanMapTestSupport] testConsistencyCheckWithPartiallyFilledTargetCluster - Filling map MAP_MERKLE [0,950)
20:19:20,297 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [WanMapTestSupport] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - Filling map MAP_MERKLE [0,1000)
20:19:20,300 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [WanMapTestSupport] testConsistencyCheckWithFullyFilledTargetCluster - Filling map MAP_MERKLE [0,1000)
20:19:20,301 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [WanMapTestSupport] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - Filling map MAP_MERKLE [0,1000)
20:19:20,323 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [LockClusterStateOp] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Locking cluster state. Initiator: [127.0.0.1]:5702, lease-time: 60000
20:19:20,323 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [LockClusterStateOp] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20.priority-generic-operation.thread-0 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Locking cluster state. Initiator: [127.0.0.1]:5702, lease-time: 60000
20:19:20,324 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [LockClusterStateOp] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Extending cluster state lock. Initiator: [127.0.0.1]:5702, lease-time: 20000
20:19:20,324 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [LockClusterStateOp] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20.priority-generic-operation.thread-0 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Extending cluster state lock. Initiator: [127.0.0.1]:5702, lease-time: 20000
20:19:20,327 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [CommitClusterStateOp] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Changing cluster state from ClusterState{state=ACTIVE, lock=LockGuard{lockOwner=[127.0.0.1]:5702, lockOwnerId='a40da436-4a25-4aa0-8dba-0503b46bd059', lockExpiryTime=1650486040323}} to ClusterStateChange{type=class com.hazelcast.cluster.ClusterState, newState=PASSIVE}, initiator: [127.0.0.1]:5702, transient: true
20:19:20,328 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [CommitClusterStateOp] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20.generic-operation.thread-0 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Changing cluster state from ClusterState{state=ACTIVE, lock=LockGuard{lockOwner=[127.0.0.1]:5702, lockOwnerId='a40da436-4a25-4aa0-8dba-0503b46bd059', lockExpiryTime=1650486040323}} to ClusterStateChange{type=class com.hazelcast.cluster.ClusterState, newState=PASSIVE}, initiator: [127.0.0.1]:5702, transient: true
20:19:20,383 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterService] testConsistencyCheckWithEmptyTargetCluster - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Sending shut down operations to all members...
20:19:20,383 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ShutdownNodeOp] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20.priority-generic-operation.thread-0 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Shutting down node in cluster passive state. Requested by: [127.0.0.1]:5702
20:19:20,384 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20..clusterShutdown - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] [127.0.0.1]:5701 is SHUTTING_DOWN
20:19:20,389 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20..clusterShutdown - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Shutting down hot-restart service.
20:19:20,392 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [LockClusterStateOp] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Locking cluster state. Initiator: [127.0.0.1]:5701, lease-time: 60000
20:19:20,394 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [LockClusterStateOp] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1.priority-generic-operation.thread-0 - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Locking cluster state. Initiator: [127.0.0.1]:5701, lease-time: 60000
20:19:20,394 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [LockClusterStateOp] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Extending cluster state lock. Initiator: [127.0.0.1]:5701, lease-time: 20000
20:19:20,394 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [LockClusterStateOp] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1.priority-generic-operation.thread-0 - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Extending cluster state lock. Initiator: [127.0.0.1]:5701, lease-time: 20000
20:19:20,395 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [CommitClusterStateOp] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Changing cluster state from ClusterState{state=ACTIVE, lock=LockGuard{lockOwner=[127.0.0.1]:5701, lockOwnerId='e34d0ff4-326b-453b-bd4a-6e6609bf1cdf', lockExpiryTime=1650486040392}} to ClusterStateChange{type=class com.hazelcast.cluster.ClusterState, newState=PASSIVE}, initiator: [127.0.0.1]:5701, transient: true
20:19:20,395 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [CommitClusterStateOp] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1.priority-generic-operation.thread-0 - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Changing cluster state from ClusterState{state=ACTIVE, lock=LockGuard{lockOwner=[127.0.0.1]:5701, lockOwnerId='e34d0ff4-326b-453b-bd4a-6e6609bf1cdf', lockExpiryTime=1650486040394}} to ClusterStateChange{type=class com.hazelcast.cluster.ClusterState, newState=PASSIVE}, initiator: [127.0.0.1]:5701, transient: true
20:19:20,402 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [Node] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20..clusterShutdown - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Shutting down connection manager...
20:19:20,403 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterService] testConsistencyCheckWithPartiallyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Sending shut down operations to all members...
20:19:20,404 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ShutdownNodeOp] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1.priority-generic-operation.thread-0 - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Shutting down node in cluster passive state. Requested by: [127.0.0.1]:5701
20:19:20,404 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [MockServer] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20..clusterShutdown - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Removed connection to endpoint: [address=[127.0.0.1]:5701, uuid=baf5f63b-c407-468c-ac10-f4590d51295c], connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5702, uuid=7f3db59e-54ef-498b-9909-ef1c1a9e2512], remoteEndpoint=[address=[127.0.0.1]:5701, uuid=baf5f63b-c407-468c-ac10-f4590d51295c], alive=false}
20:19:20,404 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1..clusterShutdown - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] [127.0.0.1]:5702 is SHUTTING_DOWN
20:19:20,405 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [MockServer] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20..clusterShutdown - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Removed connection to endpoint: [address=[127.0.0.1]:5702, uuid=7f3db59e-54ef-498b-9909-ef1c1a9e2512], connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5701, uuid=baf5f63b-c407-468c-ac10-f4590d51295c], remoteEndpoint=[address=[127.0.0.1]:5702, uuid=7f3db59e-54ef-498b-9909-ef1c1a9e2512], alive=false}
20:19:20,406 WARN |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [MembershipManager] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20..clusterShutdown - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Member [127.0.0.1]:5701 - baf5f63b-c407-468c-ac10-f4590d51295c is suspected to be dead for reason: Connection manager is stopped on Member [127.0.0.1]:5701 - baf5f63b-c407-468c-ac10-f4590d51295c this
20:19:20,407 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart[inMemoryFormat: BINARY]| - [WanMapTestSupport] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps_oneWithoutHotRestart - Filling map MAP_MERKLE2 [0,1000)
20:19:20,407 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1..clusterShutdown - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Shutting down hot-restart service.
20:19:20,407 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [WanSyncManager] testConsistencyCheckWithFullyFilledTargetCluster - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] WAN anti-entropy request WanConsistencyCheckEvent{mapName='MAP_MERKLE', partitionSet=[]} has been sent
20:19:20,407 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [MembershipManager] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20..clusterShutdown - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Starting mastership claim process...
20:19:20,408 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [MembershipManager] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20..clusterShutdown - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Local MembersView{version=2, members=[MemberInfo{address=[127.0.0.1]:5701, uuid=baf5f63b-c407-468c-ac10-f4590d51295c, liteMember=false, memberListJoinVersion=1}, MemberInfo{address=[127.0.0.1]:5702, uuid=7f3db59e-54ef-498b-9909-ef1c1a9e2512, liteMember=false, memberListJoinVersion=2}]} with suspected members: [Member [127.0.0.1]:5701 - baf5f63b-c407-468c-ac10-f4590d51295c] and initial addresses to ask: []
20:19:20,409 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [Node] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20..clusterShutdown - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Shutting down node engine...
20:19:20,423 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [Node] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1..clusterShutdown - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Shutting down connection manager...
20:19:20,423 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [MockServer] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1..clusterShutdown - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Removed connection to endpoint: [address=[127.0.0.1]:5702, uuid=b03676f3-c4c2-403c-82ef-4c77f72d6c39], connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5701, uuid=76efba5f-aeb9-4bef-882a-08ce7b80059c], remoteEndpoint=[address=[127.0.0.1]:5702, uuid=b03676f3-c4c2-403c-82ef-4c77f72d6c39], alive=false}
20:19:20,421 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [ClusterService] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b21.cached.thread-3 - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT]
Members {size:1, ver:3} [
Member [127.0.0.1]:5702 - 7f3db59e-54ef-498b-9909-ef1c1a9e2512 this
]
20:19:20,421 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [TransactionManagerService] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b21.cached.thread-6 - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Committing/rolling-back live transactions of [127.0.0.1]:5701, UUID: baf5f63b-c407-468c-ac10-f4590d51295c
20:19:20,424 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [MockServer] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1..clusterShutdown - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Removed connection to endpoint: [address=[127.0.0.1]:5701, uuid=76efba5f-aeb9-4bef-882a-08ce7b80059c], connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5702, uuid=b03676f3-c4c2-403c-82ef-4c77f72d6c39], remoteEndpoint=[address=[127.0.0.1]:5701, uuid=76efba5f-aeb9-4bef-882a-08ce7b80059c], alive=false}
20:19:20,424 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [MembershipManager] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b21.cached.thread-3 - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Mastership is claimed with: MembersView{version=3, members=[MemberInfo{address=[127.0.0.1]:5702, uuid=7f3db59e-54ef-498b-9909-ef1c1a9e2512, liteMember=false, memberListJoinVersion=2}]}
20:19:20,424 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [MembershipManager] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1..clusterShutdown - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Removing Member [127.0.0.1]:5702 - b03676f3-c4c2-403c-82ef-4c77f72d6c39
20:19:20,425 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [ClusterService] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1..clusterShutdown - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT]
Members {size:1, ver:3} [
Member [127.0.0.1]:5701 - 76efba5f-aeb9-4bef-882a-08ce7b80059c this
]
20:19:20,425 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [Node] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1..clusterShutdown - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Shutting down node engine...
20:19:20,425 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [TransactionManagerService] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db0.cached.thread-5 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Committing/rolling-back live transactions of [127.0.0.1]:5702, UUID: b03676f3-c4c2-403c-82ef-4c77f72d6c39
20:19:20,450 INFO |testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps[inMemoryFormat: BINARY]| - [WanMapTestSupport] testConsistencyCheckWithFullyFilledTargetClusterAndTwoMerkleMaps - Filling map MAP_MERKLE2 [0,1000)
20:19:20,463 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [MockServer] hz.ClusterA-9d1310e4-f9b6-4026-99c2-358120b455d51.cached.thread-1 - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5801-502bf054-afac-4205-b98a-1aac67587dfd, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5702, uuid=d0abc2d2-84c0-4f7f-8dcd-c30f33181900], remoteEndpoint=[address=[127.0.0.1]:5801, uuid=502bf054-afac-4205-b98a-1aac67587dfd], alive=true}
20:19:20,463 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [MockServer] hz.ClusterA-9d1310e4-f9b6-4026-99c2-358120b455d50.cached.thread-6 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5801-502bf054-afac-4205-b98a-1aac67587dfd, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5701, uuid=23ea7ad5-5931-4951-af06-f4cd79431354], remoteEndpoint=[address=[127.0.0.1]:5801, uuid=502bf054-afac-4205-b98a-1aac67587dfd], alive=true}
20:19:20,480 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [MockServer] hz.ClusterB-4cc3d7f3-b8cb-45c3-8208-04d9917c045a0.generic-operation.thread-0 - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5701-23ea7ad5-5931-4951-af06-f4cd79431354, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5801, uuid=502bf054-afac-4205-b98a-1aac67587dfd], remoteEndpoint=[address=[127.0.0.1]:5701, uuid=23ea7ad5-5931-4951-af06-f4cd79431354], alive=true}
20:19:20,481 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [MockServer] hz.ClusterB-4cc3d7f3-b8cb-45c3-8208-04d9917c045a0.priority-generic-operation.thread-0 - [127.0.0.1]:5801 [B] [5.2-SNAPSHOT] Created connection to endpoint: [127.0.0.1]:5702-d0abc2d2-84c0-4f7f-8dcd-c30f33181900, connection: MockConnection{localEndpoint=[address=[127.0.0.1]:5801, uuid=502bf054-afac-4205-b98a-1aac67587dfd], remoteEndpoint=[address=[127.0.0.1]:5702, uuid=d0abc2d2-84c0-4f7f-8dcd-c30f33181900], alive=true}
20:19:20,541 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1..clusterShutdown - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Destroying node NodeExtension.
20:19:20,548 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [Node] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1..clusterShutdown - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] Hazelcast Shutdown is completed in 144 ms.
20:19:20,548 INFO |testConsistencyCheckWithPartiallyFilledTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] hz.ClusterA-941cff77-ae05-4262-9564-faa345d5e0db1..clusterShutdown - [127.0.0.1]:5702 [A] [5.2-SNAPSHOT] [127.0.0.1]:5702 is SHUTDOWN
20:19:20,580 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [NodeExtension] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20..clusterShutdown - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Destroying node NodeExtension.
20:19:20,581 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [Node] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20..clusterShutdown - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] Hazelcast Shutdown is completed in 194 ms.
20:19:20,582 INFO |testConsistencyCheckWithEmptyTargetCluster[inMemoryFormat: BINARY]| - [LifecycleService] hz.ClusterA-a9749ebc-6406-4e7a-b600-8df1878c66b20..clusterShutdown - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] [127.0.0.1]:5701 is SHUTDOWN
20:19:20,582 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] Hot Restart procedure completed in 1 seconds
20:19:20,583 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [LifecycleService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] [127.0.0.1]:5703 is STARTED
20:19:20,586 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [MetricsConfigHelper] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [LOCAL] [A] [5.2-SNAPSHOT] Overridden metrics configuration with system property 'hazelcast.metrics.collection.frequency'='1' -> 'MetricsConfig.collectionFrequencySeconds'='1'
20:19:20,587 INFO |testConsistencyCheckWithFullyFilledTargetCluster[inMemoryFormat: BINARY]| - [WanSyncManager] ForkJoinPool.commonPool-worker-5 - [127.0.0.1]:5701 [A] [5.2-SNAPSHOT] WAN anti-entropy request WanConsistencyCheckEvent{mapName='MAP_MERKLE', partitionSet=[]} has been processed
20:19:20,589 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [HealthMonitor] hz.ClusterA-fcf2255b-254a-4f33-802a-4cd557b050a82.HealthMonitor - [127.0.0.1]:5703 [A] [5.2-SNAPSHOT] processors=8, physical.memory.total=377.6G, physical.memory.free=124.3G, swap.space.total=4.0G, swap.space.free=3.7G, heap.memory.used=103.4M, heap.memory.free=920.6M, heap.memory.total=1024.0M, heap.memory.max=1024.0M, heap.memory.used/total=9.87%, heap.memory.used/max=9.87%, minor.gc.count=5, minor.gc.time=17ms, major.gc.count=0, major.gc.time=0ms, load.process=24.14%, load.system=100.00%, load.systemAverage=10.63, thread.count=480, thread.peakCount=534, cluster.timeDiff=-3, event.q.size=0, executor.q.async.size=0, executor.q.client.size=0, executor.q.client.query.size=0, executor.q.client.blocking.size=0, executor.q.query.size=0, executor.q.scheduled.size=0, executor.q.io.size=0, executor.q.system.size=0, executor.q.operations.size=0, executor.q.priorityOperation.size=0, operations.completed.count=22, executor.q.mapLoad.size=0, executor.q.mapLoadAllKeys.size=0, executor.q.cluster.size=0, executor.q.response.size=0, operations.running.count=0, operations.pending.invocations.percentage=0.00%, operations.pending.invocations.count=0, proxy.count=1, clientEndpoint.count=0, connection.active.count=0, client.connection.count=0, connection.count=0
20:19:20,589 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [HotRestartIntegrationService] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [LOCAL] [A] [5.2-SNAPSHOT] Created new empty hot-restart directory: /home/jenkins/jenkins_slave/workspace/ufuk-test-runner/hazelcast-ee/hazelcast-enterprise/WanMerkleHotRestartComplexTest_testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat_ BINARY]_7549d676-ce6a-4da6-8388-95b8cd07136d/ed383502-9547-4d97-baf5-f5e89f8bd778
20:19:20,589 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [logo] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5704 [A] [5.2-SNAPSHOT]
+ + o o o o---o o----o o o---o o o----o o--o--o
+ + + + | | / \ / | | / / \ | |
+ + + + + o----o o o o o----o | o o o o----o |
+ + + + | | / \ / | | \ / \ | |
+ + o o o o o---o o----o o----o o---o o o o----o o
20:19:20,589 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5704 [A] [5.2-SNAPSHOT] Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved.
20:19:20,590 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5704 [A] [5.2-SNAPSHOT] Hazelcast Enterprise 5.2-SNAPSHOT (20220420 - ea7fd9f, 817afaa) starting at [127.0.0.1]:5704
20:19:20,590 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5704 [A] [5.2-SNAPSHOT] Cluster name: A
20:19:20,590 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5704 [A] [5.2-SNAPSHOT] Integrity Checker is disabled. Fail-fast on corrupted executables will not be performed.
To enable integrity checker do one of the following:
- Change member config using Java API: config.setIntegrityCheckerEnabled(true);
- Change XML/YAML configuration property: Set hazelcast.integrity-checker.enabled to true
- Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast embedded, works only when loading config via Config.load)
- Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended when running container image. For Hazelcast embedded, works only when loading config via Config.load)
20:19:20,590 INFO |testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate[inMemoryFormat: BINARY]| - [system] testConsistencyCheckWithFullyFilledTargetCluster_whenTwoSourceMembersTerminate - [127.0.0.1]:5704 [A] [5.2-SNAPSHOT] The Jet engine is disabled.
To enable the Jet engine on the members, do one of the following:
- Change member config using Java API: config.getJetConfig().setEnabled(true)
- Change XML/YAML configuration property: Set hazelcast.jet.enabled to true