Oracle Fusion Middleware/Coherence

9장. Coherence Demo (From / Coherence CE Community)

수상한 김토끼 2023. 6. 2. 10:59

안녕하세요.

'수상한 김토끼' 입니다.

8장까지의 내용을 통해 Coherence의 Session Cluster 적용 및 사용 방법을 확인해 보았습니다.

9장에서는 Coherence의 오픈소스 버전인 Coherence CE 커뮤니티에서 제공하는 Coherence Demo를 서버와 Eclipse에 구현해 보고 데이터 그리드로 활용법에 대해 알아가는 시간을 갖도록 하겠습니다.

 

이번 장 진행에 참고한 Coherence CE Examples 문서입니다.

https://coherence.community/examples.html

 

Coherence Community: Examples

Sock Shop Our flagship example application shows you not only how easy it is to develop Coherence-based microservices with Spring, Micronaut, or Helidon, but also how to deploy them to Kubernetes using Coherence Operator, and monitor them using Prometheus,

coherence.community

 

진행에 문제가 있거나 추가적인 내용은 위 문서를 참조해 주세요.

 

이 블로그 글은 미들웨어 경험이 없으신 분들도 쉽게 따라 하실 수 있도록 쉽게 작성하는 것이 목표입니다.

설명을 보고 진행하시다가 궁금하신 내용은 댓글로 문의하시면 가능한 범위 내에서 알려 드리도록 하겠습니다.


1. Demo 확인

우선 Coherence Demo가 어떤 내용이며 어떻게 구성되어 있는지 확인해 보겠습니다.

 

Coherence Demo는 Examples의 두 번째 항목으로 다음과 같이 Coherence의 기본적인 기능들과 손쉬운 확장, HA구성등을 보여주는 Application입니다.

Coherence Demo

The main "pure" Coherence demo application showcases many general features, as well as scalability and HA capabilities of Coherence:
  • Clustering and Data Sharding
  • Scalability and High Availability
  • Persistence to Disk
  • Parallel Queries and Aggregation
  • In-Place Processing
  • Multi-Data Center Federation (Grid Edition feature only)
  • OpenTracing Support
 View on GitHub

 

https://youtu.be/f9JHafygfUE

 

이번 장을 진행한 후 동영상과 똑같은 기능을 실행해 보실 수 있습니다.

 

우선 해당 프로젝트의 github로 들어가 내용을 확인해 보겠습니다.

https://github.com/coherence-community/coherence-demo/

 

GitHub - coherence-community/coherence-demo: The Coherence Demonstration

The Coherence Demonstration. Contribute to coherence-community/coherence-demo development by creating an account on GitHub.

github.com

 

GitHub 페이지 내용은 다음과 같습니다.

Overview

This document describes how to build and run the Coherence Demonstration application. The application showcases Coherence general features, scalability capabilities including:
  • Clustering and Data Sharding
  • Scalability and High Availability
  • Disk-Based Persistence
  • Parallel Queries
  • Efficient Aggregation
  • In-Place Processing
  • Federation (Grid Edition feature only)
  • Lambda Support
  • OpenTracing Support
You can run the application locally using mvn exec:exec or run on Kubernetes using the Coherence Operator. See the table of contents below for instructions.
The demonstration uses AngularJS 1.7.5, Bootstrap 3.3.4, and a number of other frameworks. The UI interacts with Coherence using the REST API.

상세한 내용은 해당 페이지 및 위 항목을 참조 바라며 본 블로그에서는 로컬 단독 실행 과정으로 진행해 보겠습니다.


2. Demo 필요 환경구성

General Prerequisites 항목을 보면 필요조건은 다음 3개입니다.

1. Java 17 SE 개발 키트 또는 런타임 환경
2. Maven 3.6.0 이상 버전
3. AngularJS를 지원하는 웹 브라우저

3번은 Chrome 혹은 Edge를 사용하면 문제 될 것이 없음으로 1, 2번 환경을 구성해 보겠습니다.

 

서버는 OCI의 Oracle Linux 8.7 환경을 사용했습니다.

1
2
3
4
[opc@coherence-demo ~]$ cat /etc/redhat-release
Red Hat Enterprise Linux release 8.7 (Ootpa)
[opc@coherence-demo ~]$ cat /etc/oracle-release
Oracle Linux Server release 8.7
cs

 

Oracle Java 17 SE 런타임 & Apache Maven 3.6.x 환경구성

아래 링크에서 Java 17 SE와 Maven을 다운로드할 수 있습니다.

https://www.oracle.com/java/technologies/downloads/

 

Download the Latest Java LTS Free

Subscribe to Java SE and get the most comprehensive Java support available, with 24/7 global access to the experts.

www.oracle.com

 

https://archive.apache.org/dist/maven/maven-3/3.6.3/binaries/

 

Index of /dist/maven/maven-3/3.6.3/binaries

 

archive.apache.org

 

서버 환경에 맞는 파일을 선택 후 서버에 업로드해 주세요.

Oracle Java 17 Download

 

Apache Maven 3.6.3 Download

 

업로드가 완료되었습니다.

1
2
3
4
5
6
7
[demo1@coherence-demo downloads]$ ls -altrh
total 348M
-rw-rw-r--1 demo1 demo1 9.1M Nov 19  2019 apache-maven-3.6.3-bin.tar.gz
-rw-rw-r--1 demo1 demo1 174M Jun  1 10:48 jdk-17_linux-x64_bin.tar.gz
drwxrwxr-x. 2 demo1 demo1  104 Jun  1 10:58 .
drwx------9 demo1 demo1 4.0K Jun  1 12:56 ..
[demo1@coherence-demo downloads]$
cs

 

파일을 원하는 위치에 풀어주고 환경설정을 진행합니다.

본 예제에서는 /home/demo1/ 경로를 사용했습니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[demo1@coherence-demo ~]$ pwd
/home/demo1
[demo1@coherence-demo ~]$ ls -altrh
total 20K
-rw-r--r--1 demo1 demo1  376 Aug  2  2022 .bashrc
-rw-r--r--1 demo1 demo1   18 Aug  2  2022 .bash_logout
drwxrwxr-x. 9 demo1 demo1  136 Jun  1 10:50 jdk-17.0.7
drwxrwxr-x. 2 demo1 demo1  104 Jun  1 10:58 downloads
drwxrwxr-x. 6 demo1 demo1   99 Jun  1 11:01 apache-maven-3.6.3
drwxrwxr-x. 3 demo1 demo1   24 Jun  1 11:08 .m2
drwx------3 demo1 demo1   20 Jun  1 11:21 .config
-rw-r--r--1 demo1 demo1  349 Jun  1 12:56 .bash_profile
-rw-------1 demo1 demo1 2.9K Jun  1 12:56 .viminfo
-rw-------1 demo1 demo1 2.0K Jun  1 13:00 .bash_history
drwxr-xr-x. 5 root  root    43 Jun  1 13:04 ..
drwx------7 demo1 demo1  186 Jun  2 01:05 .
cs

 

.bash_profile 파일에 Java SE 런타임과 Maven 설정을 기록했습니다.

[demo1@coherence-demo ~]$ cat .bash_profile
# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi

# User specific environment and startup programs

## JDK-java.17
JAVA_HOME=/home/demo1/jdk-17.0.7
PATH=$PATH:$JAVA_HOME/bin
CLASSPATH=$JAVA_HOME/jre/lib:$JAVA_HOME/lib/tools.jar

## MAVEN 3.6.3
M2_HOME=/home/demo1/apache-maven-3.6.3
PATH=$PATH:$M2_HOME/bin

. .bash_profile 혹은 해당 ID로 재로그인하여 환경이 적용된 것을 확인하는 것으로 필요 환경구성은 마무리됩니다.

[demo1@coherence-demo ~]$ java -version
java version "17.0.7" 2023-04-18 LTS
Java(TM) SE Runtime Environment (build 17.0.7+8-LTS-224)
Java HotSpot(TM) 64-Bit Server VM (build 17.0.7+8-LTS-224, mixed mode, sharing)

[demo1@coherence-demo ~]$ mvn -version
Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f)
Maven home: /home/demo1/apache-maven-3.6.3
Java version: 17.0.7, vendor: Oracle Corporation, runtime: /home/demo1/jdk-17.0.7
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "5.15.0-100.96.32.el8uek.x86_64", arch: "amd64", family: "unix"

위와 같이 java 버전과 mvn 버전이 확인되면 서버에 정상적으로 구성이 완료된 것으로 다음 단계를 진행할 수 있습니다.

 

필수 환경 구성이 완료되었습니다.


3. Coherence Demo Clone & Build & Run

GitHub에서 프로젝트를 내려받아 실행시켜 보겠습니다.

GitHub Clone URL

 Code Tab을 클릭해 Clone --> HTTPS 아래의 URL을 복사하여 Clone을 진행해 줍니다.

[demo1@coherence-demo ~]$ git clone https://github.com/coherence-community/coherence-demo.git
Cloning into 'coherence-demo'...
remote: Enumerating objects: 1119, done.
remote: Counting objects: 100% (142/142), done.
remote: Compressing objects: 100% (46/46), done.
remote: Total 1119 (delta 116), reused 99 (delta 89), pack-reused 977
Receiving objects: 100% (1119/1119), 158.12 MiB | 20.35 MiB/s, done.
Resolving deltas: 100% (580/580), done.

프로젝트 Clone이 완료되어 coherence-demo 디렉터리에 프로젝트가 생성되었습니다.

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
[demo1@coherence-demo ~]$ pwd
/home/demo1
[demo1@coherence-demo ~]$ ls -altrh
total 28K
-rw-r--r--1 demo1 demo1  376 Aug  2  2022 .bashrc
-rw-r--r--1 demo1 demo1   18 Aug  2  2022 .bash_logout
drwxrwxr-x. 9 demo1 demo1  136 Jun  1 10:50 jdk-17.0.7
drwxrwxr-x. 2 demo1 demo1  104 Jun  1 10:58 downloads
drwxrwxr-x. 6 demo1 demo1   99 Jun  1 11:01 apache-maven-3.6.3
drwxrwxr-x. 3 demo1 demo1   24 Jun  1 11:08 .m2
drwx------3 demo1 demo1   20 Jun  1 11:21 .config
-rw-r--r--1 demo1 demo1  349 Jun  1 12:56 .bash_profile
-rw-------1 demo1 demo1 2.9K Jun  1 12:56 .viminfo
-rw-------1 demo1 demo1 2.0K Jun  1 13:00 .bash_history
drwxr-xr-x. 5 root  root    43 Jun  1 13:04 ..
drwx------8 demo1 demo1 4.0K Jun  2 01:15 .
drwxrwxr-x. 8 demo1 demo1 4.0K Jun  2 01:15 coherence-demo
[demo1@coherence-demo ~]$ cd coherence-demo/
[demo1@coherence-demo coherence-demo]$ ls -altrh
total 128K
drwx------8 demo1 demo1 4.0K Jun  2 01:15 ..
-rw-rw-r--1 demo1 demo1  54K Jun  2 01:15 THIRD_PARTY_LICENSES.txt
-rw-rw-r--1 demo1 demo1 1.8K Jun  2 01:15 SECURITY.md
-rw-rw-r--1 demo1 demo1  23K Jun  2 01:15 README.md
-rw-rw-r--1 demo1 demo1 2.4K Jun  2 01:15 LICENSE.md
-rw-rw-r--1 demo1 demo1  299 Jun  2 01:15 .gitignore
drwxrwxr-x. 3 demo1 demo1   23 Jun  2 01:15 .github
-rw-rw-r--1 demo1 demo1 6.3K Jun  2 01:15 CONTRIBUTING.md
drwxrwxr-x. 2 demo1 demo1  119 Jun  2 01:15 assets
drwxrwxr-x. 3 demo1 demo1   18 Jun  2 01:15 src
-rw-rw-r--1 demo1 demo1  20K Jun  2 01:15 pom.xml
drwxrwxr-x. 2 demo1 demo1   39 Jun  2 01:15 docs
drwxrwxr-x. 2 demo1 demo1   89 Jun  2 01:15 yaml
drwxrwxr-x. 8 demo1 demo1  163 Jun  2 01:15 .git
drwxrwxr-x. 8 demo1 demo1 4.0K Jun  2 01:15 .
[demo1@coherence-demo coherence-demo]$
cs

 

GitHub의 가이드 대로 Maven 빌드를 진행합니다.

/home/demo1/coherence-demo 디렉터리로 이동해 다음 명령으로 빌드를 수행할 수 있습니다.

[demo1@coherence-demo coherence-demo]$ mvn clean install

필수 환경구성이 문제없이 진행된 경우 아래와 같이 빌드 성공 후 target 디렉터리에서 jar 파일을 확인할 수 있습니다.

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
[demo1@coherence-demo coherence-demo]$ mvn clean install
[INFO] Scanning for projects...
[INFO]
[INFO] ----------------< com.oracle.coherence:coherence-demo >-----------------
[INFO] Building coherence-demo 7.0.1-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ coherence-demo ---
[INFO]
[INFO] --- maven-enforcer-plugin:1.3.1:enforce (enforce) @ coherence-demo ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ coherence-demo ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] Copying 92 resources
[INFO]
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ coherence-demo ---
[INFO] Changes detected - recompiling the module!
[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent!
[INFO] Compiling 26 source files to /home/demo1/coherence-demo/target/classes
[WARNING] /home/demo1/coherence-demo/src/main/java/com/oracle/coherence/demo/application/StartMemberResource.java: /home/demo1/coherence-demo/src/main/java/com/oracle/coherence/demo/application/StartMemberResource.java uses or overrides a deprecated API.
[WARNING] /home/demo1/coherence-demo/src/main/java/com/oracle/coherence/demo/application/StartMemberResource.java: Recompile with -Xlint:deprecation for details.
[WARNING] /home/demo1/coherence-demo/src/main/java/com/oracle/coherence/demo/application/MemberInfoResource.java: Some input files use unchecked or unsafe operations.
[WARNING] /home/demo1/coherence-demo/src/main/java/com/oracle/coherence/demo/application/MemberInfoResource.java: Recompile with -Xlint:unchecked for details.
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ coherence-demo ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/demo1/coherence-demo/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ coherence-demo ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ coherence-demo ---
[INFO] No tests to run.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ coherence-demo ---
[INFO] Building jar: /home/demo1/coherence-demo/target/coherence-demo-7.0.1-SNAPSHOT.jar
[INFO]
[INFO] >>> maven-source-plugin:2.1.2:jar (attach-sources) > generate-sources @ coherence-demo >>>
[INFO]
[INFO] --- maven-enforcer-plugin:1.3.1:enforce (enforce) @ coherence-demo ---
[INFO]
[INFO] <<< maven-source-plugin:2.1.2:jar (attach-sources) < generate-sources @ coherence-demo <<<
[INFO]
[INFO]
[INFO] --- maven-source-plugin:2.1.2:jar (attach-sources) @ coherence-demo ---
[INFO] Building jar: /home/demo1/coherence-demo/target/coherence-demo-7.0.1-SNAPSHOT-sources.jar
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ coherence-demo ---
[INFO] Installing /home/demo1/coherence-demo/target/coherence-demo-7.0.1-SNAPSHOT.jar to /home/demo1/.m2/repository/com/oracle/coherence/coherence-demo/7.0.1-SNAPSHOT/coherence-demo-7.0.1-SNAPSHOT.jar
[INFO] Installing /home/demo1/coherence-demo/pom.xml to /home/demo1/.m2/repository/com/oracle/coherence/coherence-demo/7.0.1-SNAPSHOT/coherence-demo-7.0.1-SNAPSHOT.pom
[INFO] Installing /home/demo1/coherence-demo/target/coherence-demo-7.0.1-SNAPSHOT-sources.jar to /home/demo1/.m2/repository/com/oracle/coherence/coherence-demo/7.0.1-SNAPSHOT/coherence-demo-7.0.1-SNAPSHOT-sources.jar
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  7.105 s
[INFO] Finished at: 2023-06-02T01:36:30Z
[INFO] ------------------------------------------------------------------------
[demo1@coherence-demo coherence-demo]$ cd target/
[demo1@coherence-demo target]$ ls -altrh
total 3.8M
drwxrwxr-x. 9 demo1 demo1 4.0K Jun  2 01:36 ..
drwxrwxr-x. 3 demo1 demo1   35 Jun  2 01:36 maven-status
drwxrwxr-x. 3 demo1 demo1   25 Jun  2 01:36 generated-sources
drwxrwxr-x. 5 demo1 demo1 4.0K Jun  2 01:36 classes
drwxrwxr-x. 2 demo1 demo1   28 Jun  2 01:36 maven-archiver
-rw-rw-r--1 demo1 demo1 1.9M Jun  2 01:36 coherence-demo-7.0.1-SNAPSHOT.jar
drwxrwxr-x. 6 demo1 demo1  178 Jun  2 01:36 .
-rw-rw-r--1 demo1 demo1 1.9M Jun  2 01:36 coherence-demo-7.0.1-SNAPSHOT-sources.jar
[demo1@coherence-demo target]$
cs

다음 명령으로 빌드된 프로젝트를 실행하고 화면을 확인해 보겠습니다.

[demo1@coherence-demo coherence-demo]$ mvn exec:exec
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
[demo1@coherence-demo coherence-demo]$ pwd
/home/demo1/coherence-demo
[demo1@coherence-demo coherence-demo]$ mvn exec:exec
[INFO] Scanning for projects...
[INFO]
[INFO] ----------------< com.oracle.coherence:coherence-demo >-----------------
[INFO] Building coherence-demo 7.0.1-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- exec-maven-plugin:1.6.0:exec (default-cli) @ coherence-demo ---
Listening for transport dt_socket at address: 12345
*** Locale: en_US, Country=US, Language=en, Zone: GMT
2023-06-02 01:41:47.148/2.268 Oracle Coherence 23.03 <Info> (thread=Coherence, member=n/a): Loaded operational configuration from "jar:file:/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence/23.03/coherence-23.03.jar!/tangosol-coherence.xml"
2023-06-02 01:41:47.438/2.465 Oracle Coherence 23.03 <Info> (thread=Coherence, member=n/a): Loaded operational overrides from "jar:file:/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence/23.03/coherence-23.03.jar!/com/oracle/coherence/defaults/tangosol-coherence-override-dev.xml"
2023-06-02 01:41:47.494/2.521 Oracle Coherence 23.03 <Info> (thread=Coherence, member=n/a): Loaded operational overrides from "file:/home/demo1/coherence-demo/target/classes/tangosol-coherence-override.xml"
2023-06-02 01:41:47.499/2.527 Oracle Coherence 23.03 <Info> (thread=Coherence, member=n/a): Optional configuration override "../common/tangosol-coherence-override.xml" is not specified
2023-06-02 01:41:47.520/2.547 Oracle Coherence 23.03 <Info> (thread=Coherence, member=n/a): Optional configuration override "cache-factory-config.xml" is not specified
2023-06-02 01:41:47.525/2.553 Oracle Coherence 23.03 <Info> (thread=Coherence, member=n/a): Optional configuration override "cache-factory-builder-config.xml" is not specified
2023-06-02 01:41:47.531/2.558 Oracle Coherence 23.03 <Info> (thread=Coherence, member=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
2023-06-02 01:41:47.532/2.559 Oracle Coherence 23.03 <D6> (thread=Coherence, member=n/a): Loaded edition data from "jar:file:/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence/23.03/coherence-23.03.jar!/coherence-community.xml"
 
Oracle Coherence Version 23.03 Build 99661
 Community Edition: Development mode
Copyright (c) 20002023, Oracle and/or its affiliates. All rights reserved.
 
2023-06-02 01:41:47.886/2.914 Oracle Coherence CE 23.03 <D6> (thread=Coherence, member=n/a):
 
java.version: 17.0.7
java.home: /home/demo1/jdk-17.0.7
 
Java Specification:
- java.specification.name: Java Platform API Specification
- java.specification.vendor: Oracle Corporation
- java.specification.version: 17
Java Vendor:
- java.vendor: Oracle Corporation
- java.vendor.version: null
- java.vendor.url: https://java.oracle.com/
Java Virtual Machine:
- java.vm.name: Java HotSpot(TM) 64-Bit Server VM
- java.vm.vendor: Oracle Corporation
- java.vm.version: 17.0.7+8-LTS-224
Java Runtime Environment:
- java.runtime.name: Java(TM) SE Runtime Environment
- java.runtime.version: 17.0.7+8-LTS-224
Operating System:
- os.name: Linux
- os.version: 5.15.0-100.96.32.el8uek.x86_64
- os.arch: amd64
 
2023-06-02 01:41:48.997/4.024 Oracle Coherence CE 23.03 <Info> (thread=Coherence, member=n/a): Loaded Reporter configuration from "jar:file:/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence/23.03/coherence-23.03.jar!/reports/report-group.xml"
2023-06-02 01:41:49.122/4.149 Oracle Coherence CE 23.03 <Info> (thread=Coherence, member=n/a): Loaded cache configuration from "jar:file:/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence/23.03/coherence-23.03.jar!/coherence-system-config.xml"
2023-06-02 01:41:49.908/4.936 Oracle Coherence CE 23.03 <D5> (thread=Coherence, member=n/a): Created cache factory com.tangosol.net.ExtensibleConfigurableCacheFactory
2023-06-02 01:41:49.921/4.948 Oracle Coherence CE 23.03 <Info> (thread=Coherence, member=n/a): Created Session $SYS mode=ClusterMember
2023-06-02 01:41:49.924/4.952 Oracle Coherence CE 23.03 <Info> (thread=Coherence, member=n/a): Starting session $SYS with scope name $SYS
2023-06-02 01:41:49.936/4.965 Oracle Coherence CE 23.03 <Info> (thread=Coherence, member=n/a): ExtensibledConfigurableCacheFactory.activate() cache config with scope $SYS
2023-06-02 01:41:50.199/5.227 Oracle Coherence CE 23.03 <D7> (thread=Coherence, member=n/a): Initialized TracingShim: OpenTracingShim(API-Version=0.33.0, Dependencies=DefaultDependencies(Identity='New York.CoherenceDemoLauncher', SamplingRatio=-1.0), Tracer=OpenTracingTracer(Tracer=GlobalTracer{NoopTracer}))
2023-06-02 01:41:50.201/5.228 Oracle Coherence CE 23.03 <Warning> (thread=Coherence, member=n/a): Local address "127.0.0.1" is a loopback address; this cluster node will not connect to nodes located on different machines
2023-06-02 01:41:50.227/5.254 Oracle Coherence CE 23.03 <Info> (thread=Coherence, member=n/a): TCMP bound to /127.0.0.1:38289 using SystemDatagramSocketProvider
2023-06-02 01:41:53.580/8.608 Oracle Coherence CE 23.03 <Info> (thread=NameService:TcpAcceptor, member=n/a): TcpAcceptor now listening for connections on coherence-demo:38289.3
2023-06-02 01:41:53.585/8.612 Oracle Coherence CE 23.03 <D6> (thread=NameService:TcpAcceptor, member=n/a): Started: TcpAcceptor{Name=NameService:TcpAcceptor, State=(SERVICE_STARTED), ThreadCount=0, Codec=Codec(Format=POF), Serializer=com.tangosol.net.internal.NameServicePofContext, PingInterval=0, PingTimeout=30000, RequestTimeout=30000, MaxIncomingMessageSize=4096, MaxOutgoingMessageSize=0, SocketProvider=com.oracle.coherence.common.internal.net.MultiplexedSocketProvider@16aeb993, LocalAddress=WrapperSocketAddressProvider{Providers=[WrapperSocketAddressProvider{Providers=[LocalAddressProvider[0.0.0.0/0.0.0.0:0]]}]}, SocketOptions{LingerTimeout=0, KeepAlive=true, TcpNoDelay=true}, ListenBacklog=0, BufferPoolIn=BufferPool(BufferSize=2KB, BufferType=DIRECT, Capacity=Unlimited), BufferPoolOut=BufferPool(BufferSize=2KB, BufferType=DIRECT, Capacity=Unlimited)}
2023-06-02 01:41:53.588/8.616 Oracle Coherence CE 23.03 <Info> (thread=Cluster, member=n/a): NameService now listening for connections on coherence-demo:7574.3
2023-06-02 01:41:53.595/8.622 Oracle Coherence CE 23.03 <D6> (thread=Cluster, member=n/a): Stopped: TcpInitiator{Name=NameServiceBridge:TcpInitiator, State=(SERVICE_STOPPED), ThreadCount=0, Serializer=com.tangosol.net.internal.NameServicePofContext, PingInterval=0, PingTimeout=100, RequestTimeout=100, MaxIncomingMessageSize=0, MaxOutgoingMessageSize=0, ConnectTimeout=100, SocketProvider=com.oracle.coherence.common.internal.net.MultiplexedSocketProvider@16aeb993, RemoteAddresses=WrapperSocketAddressProvider{Providers=[WrapperSocketAddressProvider{Providers=[LocalAddressProvider[0.0.0.0/0.0.0.0:0]]}]}, SocketOptions{LingerTimeout=0, KeepAlive=true, TcpNoDelay=true}}
2023-06-02 01:41:53.600/8.628 Oracle Coherence CE 23.03 <Info> (thread=Cluster, member=n/a): Created a new cluster "New York" with Member(Id=1, Timestamp=2023-06-02 01:41:50.311, Address=127.0.0.1:38289, MachineId=10131, Location=machine:localhost,process:18677, Role=CoherenceDemoLauncher, Edition=Community Edition, Mode=Development, CpuCount=2, SocketCount=2)
2023-06-02 01:41:53.627/8.655 Oracle Coherence CE 23.03 <D4> (thread=Transport:TransportService, member=n/a): Initialized BufferManager to: NonDisposableBufferManager(delegate=DirectBufferManager(capacity=24.1MB, usage=0B..0B/0B, hit rate=0%, segment utilization=1KB(0%)/0, 2KB(0%)/0, 4KB(0%)/0, 8KB(0%)/0, 16KB(0%)/0, 32KB(0%)/0, 64KB(0%)/0, allocator=com.oracle.coherence.common.internal.io.SlabBufferManager$DirectBufferAllocator@6a0de891))
2023-06-02 01:41:53.631/8.658 Oracle Coherence CE 23.03 <D6> (thread=Transport:TransportService, member=n/a): tmb://127.0.0.1:38289.44206 opened using MultiplexedServerSocket[addr=/127.0.0.1,port=38289,subport=44206]
2023-06-02 01:41:53.632/8.659 Oracle Coherence CE 23.03 <D5> (thread=Transport:TransportService, member=n/a): Service TransportService is bound to tmb://127.0.0.1:38289.44206
2023-06-02 01:41:53.647/8.674 Oracle Coherence CE 23.03 <Info> (thread=Transport:TransportService, member=n/a): Service TransportService joined the cluster with senior service member 1
2023-06-02 01:41:53.658/8.685 Oracle Coherence CE 23.03 <Info> (thread=Coherence, member=n/a): Started cluster Name=New York, ClusterPort=7574
 
WellKnownAddressList(
  127.0.0.1
  )
 
MasterMemberSet(
  ThisMember=Member(Id=1, Timestamp=2023-06-02 01:41:50.311, Address=127.0.0.1:38289, MachineId=10131, Location=machine:localhost,process:18677, Role=CoherenceDemoLauncher)
  OldestMember=Member(Id=1, Timestamp=2023-06-02 01:41:50.311, Address=127.0.0.1:38289, MachineId=10131, Location=machine:localhost,process:18677, Role=CoherenceDemoLauncher)
  ActualMemberSet=MemberSet(Size=1
    Member(Id=1, Timestamp=2023-06-02 01:41:50.311, Address=127.0.0.1:38289, MachineId=10131, Location=machine:localhost,process:18677, Role=CoherenceDemoLauncher)
    )
  MemberId|ServiceJoined|MemberState|Version|Edition
    1|2023-06-02 01:41:50.311|JOINED|23.03.0|CE
  RecycleMillis=1200000
  RecycleSet=MemberSet(Size=0
    )
  )
 
TcpRing{Connections=[]}
IpMonitor{Addresses=0, Timeout=15s}
 
2023-06-02 01:41:53.682/8.710 Oracle Coherence CE 23.03 <Info> (thread=Invocation:Management, member=1): Service Management joined the cluster with senior service member 1
2023-06-02 01:41:53.939/8.966 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Service $SYS:Config joined the cluster with senior service member 1
2023-06-02 01:41:53.971/8.998 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Service $SYS:Config: sending PartitionConfig com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.ConfigSync to all
2023-06-02 01:41:54.023/9.051 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): This member has become the distribution coordinator for MemberSet(Size=1
  Member(Id=1, Timestamp=2023-06-02 01:41:50.311, Address=127.0.0.1:38289, MachineId=10131, Location=machine:localhost,process:18677, Role=CoherenceDemoLauncher)
  )
2023-06-02 01:41:54.050/9.078 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=10for PartitionSet{0..256}
2023-06-02 01:41:54.091/9.119 Oracle Coherence CE 23.03 <Info> (thread=Proxy:$SYS:HealthHttpProxy:HttpAcceptor, member=1): HttpAcceptor now listening for connections on coherence-demo:43919
2023-06-02 01:41:54.092/9.120 Oracle Coherence CE 23.03 <D6> (thread=Proxy:$SYS:HealthHttpProxy:HttpAcceptor, member=1): Started: HttpAcceptor{Name=Proxy:$SYS:HealthHttpProxy:HttpAcceptor, State=(SERVICE_STARTED), HttpServer=JavaHttpServer{Protocol=HTTP, AuthMethod=none}, LocalAddress=0.0.0.0, LocalPort=0, ResourceConfig={/=com.tangosol.internal.health.HealthHttpHandler@5f1b863f}}
2023-06-02 01:41:54.097/9.124 Oracle Coherence CE 23.03 <Info> (thread=Proxy:$SYS:HealthHttpProxy, member=1): Service $SYS:HealthHttpProxy joined the cluster with senior service member 1
2023-06-02 01:41:54.114/9.141 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Partition ownership has stabilized with 1 nodes
2023-06-02 01:41:54.120/9.147 Oracle Coherence CE 23.03 <Info> (thread=Proxy:$SYS:SystemProxy:TcpAcceptor, member=1): TcpAcceptor now listening for connections on coherence-demo:38289.56687
2023-06-02 01:41:54.136/9.164 Oracle Coherence CE 23.03 <D6> (thread=Proxy:$SYS:SystemProxy:TcpAcceptor, member=1): Started: TcpAcceptor{Name=Proxy:$SYS:SystemProxy:TcpAcceptor, State=(SERVICE_STARTED), ThreadCount=1, HungThreshold=0, TaskTimeout=0, Codec=Codec(Format=POF), Serializer=com.tangosol.io.DefaultSerializer, PingInterval=0, PingTimeout=30000, RequestTimeout=30000, MaxIncomingMessageSize=0, MaxOutgoingMessageSize=0, SocketProvider=com.oracle.coherence.common.internal.net.MultiplexedSocketProvider@16aeb993, LocalAddress=WrapperSocketAddressProvider{Providers=[LocalAddressProvider[0.0.0.0/0.0.0.0:38289]]}, SocketOptions{LingerTimeout=0, KeepAlive=true, TcpNoDelay=true}, ListenBacklog=0, BufferPoolIn=BufferPool(BufferSize=2KB, BufferType=DIRECT, Capacity=Unlimited), BufferPoolOut=BufferPool(BufferSize=2KB, BufferType=DIRECT, Capacity=Unlimited)}
2023-06-02 01:41:54.138/9.165 Oracle Coherence CE 23.03 <Info> (thread=Proxy:$SYS:SystemProxy, member=1): Service $SYS:SystemProxy joined the cluster with senior service member 1
2023-06-02 01:41:54.144/9.172 Oracle Coherence CE 23.03 <Info> (thread=Coherence, member=1): Started DefaultCacheServer
Services
  (
  ClusterService{Name=Cluster, State=(SERVICE_STARTED, STATE_JOINED), Id=0, OldestMemberId=1}
  TransportService{Name=TransportService, State=(SERVICE_STARTED), Id=1, OldestMemberId=1}
  InvocationService{Name=Management, State=(SERVICE_STARTED), Id=2, OldestMemberId=1}
  PartitionedCache{Name=$SYS:Config, State=(SERVICE_STARTED), Id=3, OldestMemberId=1, LocalStorage=enabled, PartitionCount=257, BackupCount=1, AssignedPartitions=257, BackupPartitions=0, CoordinatorId=1}
  ProxyService{Name=$SYS:HealthHttpProxy, State=(SERVICE_STARTED), Id=4, OldestMemberId=1}
  ProxyService{Name=$SYS:SystemProxy, State=(SERVICE_STARTED), Id=5, OldestMemberId=1}
  )
 
2023-06-02 01:41:54.145/9.172 Oracle Coherence CE 23.03 <Info> (thread=Coherence, member=1): Starting default Coherence instance
2023-06-02 01:41:54.145/9.173 Oracle Coherence CE 23.03 <D7> (thread=Coherence, member=1): Health: registered health check Default
2023-06-02 01:41:54.147/9.174 Oracle Coherence CE 23.03 <Info> (thread=Coherence, member=1): Starting default Session mode=ClusterMember
2023-06-02 01:41:54.208/9.236 Oracle Coherence CE 23.03 <Info> (thread=Coherence, member=1): Loaded cache configuration from "file:/home/demo1/coherence-demo/target/classes/cache-config.xml"
2023-06-02 01:41:54.508/9.535 Oracle Coherence CE 23.03 <D5> (thread=Coherence, member=1): Created cache factory com.tangosol.net.ExtensibleConfigurableCacheFactory
2023-06-02 01:41:54.509/9.537 Oracle Coherence CE 23.03 <Info> (thread=Coherence, member=1): Created Session $Default$ mode=ClusterMember
2023-06-02 01:41:54.509/9.537 Oracle Coherence CE 23.03 <Info> (thread=Coherence, member=1): Starting default session
2023-06-02 01:41:54.510/9.537 Oracle Coherence CE 23.03 <Info> (thread=Coherence, member=1): ExtensibledConfigurableCacheFactory.activate() cache config with scope
2023-06-02 01:41:54.521/9.549 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Loaded POF configuration from "file:/home/demo1/coherence-demo/target/classes/pof-config.xml"
2023-06-02 01:41:54.547/9.575 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Loaded included POF configuration from "jar:file:/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence/23.03/coherence-23.03.jar!/coherence-pof-config.xml"
2023-06-02 01:41:54.660/9.687 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Service DistributedCache joined the cluster with senior service member 1
2023-06-02 01:41:54.672/9.699 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Service DistributedCache: sending PartitionConfig com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.ConfigSync to all
2023-06-02 01:41:54.679/9.707 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): This member has become the distribution coordinator for MemberSet(Size=1
  Member(Id=1, Timestamp=2023-06-02 01:41:50.311, Address=127.0.0.1:38289, MachineId=10131, Location=machine:localhost,process:18677, Role=CoherenceDemoLauncher)
  )
2023-06-02 01:41:54.682/9.709 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=10for PartitionSet{0..256}
2023-06-02 01:41:54.689/9.717 Oracle Coherence CE 23.03 <Info> (thread=Invocation:InvocationService, member=1): Service InvocationService joined the cluster with senior service member 1
2023-06-02 01:41:54.725/9.753 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Partition ownership has stabilized with 1 nodes
Jun 022023 1:41:55 AM org.glassfish.jersey.server.wadl.WadlFeature configure
WARNING: JAXBContext implementation could not be found. WADL feature is disabled.
Jun 022023 1:41:55 AM org.glassfish.jersey.server.wadl.WadlFeature configure
WARNING: JAXBContext implementation could not be found. WADL feature is disabled.
Jun 022023 1:41:56 AM org.glassfish.jersey.server.wadl.WadlFeature configure
WARNING: JAXBContext implementation could not be found. WADL feature is disabled.
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
2023-06-02 01:41:56.480/11.508 Oracle Coherence CE 23.03 <Info> (thread=Proxy:RestService:HttpAcceptor, member=1): HttpAcceptor now listening for connections on coherence-demo:8080
2023-06-02 01:41:56.480/11.508 Oracle Coherence CE 23.03 <D6> (thread=Proxy:RestService:HttpAcceptor, member=1): Started: HttpAcceptor{Name=Proxy:RestService:HttpAcceptor, State=(SERVICE_STARTED), HttpServer=NettyHttpServer{Protocol=HTTP, AuthMethod=none}, LocalAddress=127.0.0.1, LocalPort=8080, ResourceConfig={/application=com.oracle.coherence.demo.application.ApplicationResourceConfig@75139dce, /service=com.oracle.coherence.demo.application.ServiceResourceConfig@23dc9656, /=com.oracle.coherence.demo.application.ManagementResourceConfig@46057d49}}
2023-06-02 01:41:56.484/11.512 Oracle Coherence CE 23.03 <Info> (thread=Proxy:RestService, member=1): Service RestService joined the cluster with senior service member 1
Adding Indexes... Done
Creating 100000 Positions...
Flushing 10000 trades from HashMap to Coherence cache...
Flushing 10000 trades from HashMap to Coherence cache...
Flushing 10000 trades from HashMap to Coherence cache...
Flushing 10000 trades from HashMap to Coherence cache...
[EL Info]: 2023-06-02 01:41:59.577--ServerSession(276298670)--EclipseLink, version: Eclipse Persistence Services - 3.0.2.v202107160933
Flushing 10000 trades from HashMap to Coherence cache...
Flushing 10000 trades from HashMap to Coherence cache...
Flushing 10000 trades from HashMap to Coherence cache...
Flushing 10000 trades from HashMap to Coherence cache...
Flushing 10000 trades from HashMap to Coherence cache...
Flushing 10000 trades from HashMap to Coherence cache...
Creation Complete! (Cache contains 100000 positions)
Open: http://127.0.0.1:8080/application/index.html to start the demo
***
*** Default cluster names chosen are Primary: New York, Secondary: San Francisco
***
2023-06-02 01:42:05.388/20.416 Oracle Coherence CE 23.03 <Info> (thread=Coherence, member=1): Started DefaultCacheServer
Services
  (
  ProxyService{Name=RestService, State=(SERVICE_STARTED), Id=8, OldestMemberId=1}
  InvocationService{Name=InvocationService, State=(SERVICE_STARTED), Id=7, OldestMemberId=1}
  PartitionedCache{Name=DistributedCache, State=(SERVICE_STARTED), Id=6, OldestMemberId=1, LocalStorage=enabled, PartitionCount=257, BackupCount=1, AssignedPartitions=257, BackupPartitions=0, CoordinatorId=1}
  )
2023-06-02 01:42:05.389/20.417 Oracle Coherence CE 23.03 <Info> (thread=Coherence, member=1): Started Coherence server
Services
  (
  ClusterService{Name=Cluster, State=(SERVICE_STARTED, STATE_JOINED), Id=0, OldestMemberId=1}
  TransportService{Name=TransportService, State=(SERVICE_STARTED), Id=1, OldestMemberId=1}
  InvocationService{Name=Management, State=(SERVICE_STARTED), Id=2, OldestMemberId=1}
  PartitionedCache{Name=$SYS:Config, State=(SERVICE_STARTED), Id=3, OldestMemberId=1, LocalStorage=enabled, PartitionCount=257, BackupCount=1, AssignedPartitions=257, BackupPartitions=0, CoordinatorId=1}
  ProxyService{Name=$SYS:HealthHttpProxy, State=(SERVICE_STARTED), Id=4, OldestMemberId=1}
  ProxyService{Name=$SYS:SystemProxy, State=(SERVICE_STARTED), Id=5, OldestMemberId=1}
  PartitionedCache{Name=DistributedCache, State=(SERVICE_STARTED), Id=6, OldestMemberId=1, LocalStorage=enabled, PartitionCount=257, BackupCount=1, AssignedPartitions=257, BackupPartitions=0, CoordinatorId=1}
  InvocationService{Name=InvocationService, State=(SERVICE_STARTED), Id=7, OldestMemberId=1}
  ProxyService{Name=RestService, State=(SERVICE_STARTED), Id=8, OldestMemberId=1}
  )
 
2023-06-02 01:45:00.362/195.390 Oracle Coherence CE 23.03 <D6> (thread=jersey-server-managed-async-executor-0, member=1): Loaded edition data from "jar:file:/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence/23.03/coherence-23.03.jar!/coherence-community.xml"
2023-06-02 01:45:45.226/240.254 Oracle Coherence CE 23.03 <Info> (thread=jersey-server-managed-async-executor-1, member=1): Starting server 1 of 4
Jun 022023 1:45:45 AM com.oracle.bedrock.runtime.java.LocalJavaApplicationLauncher launch
INFO: Oracle Bedrock 6.0.1: Starting Application...
------------------------------------------------------------------------
Application             : Coherence Demo Server
Application Class       : com.tangosol.net.Coherence
Application Launch Time : 2023-06-02 01:45:45
Application Launcher    : com.oracle.bedrock.runtime.java.JavaApplicationRunner
Class Path              : classes                                                        (/home/demo1/coherence-demo/target)
                        : coherence-23.03.jar                                            (/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence/23.03)
                        : coherence-management-23.03.jar                                 (/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence-management/23.03)
                        : coherence-json-23.03.jar                                       (/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence-json/23.03)
                        : jakarta.json.bind-api-2.0.0.jar                                (/home/demo1/.m2/repository/jakarta/json/bind/jakarta.json.bind-api/2.0.0)
                        : jakarta.json-api-2.0.2.jar                                     (/home/demo1/.m2/repository/jakarta/json/jakarta.json-api/2.0.2)
                        : coherence-http-netty-23.03.jar                                 (/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence-http-netty/23.03)
                        : netty-codec-http-4.1.86.Final.jar                              (/home/demo1/.m2/repository/io/netty/netty-codec-http/4.1.86.Final)
                        : coherence-12.2.1-6.0.1.jar                                     (/home/demo1/.m2/repository/com/oracle/bedrock/coherence/coherence-12.2.1/6.0.1)
                        : bedrock-runtime-6.0.1.jar                                      (/home/demo1/.m2/repository/com/oracle/bedrock/bedrock-runtime/6.0.1)
                        : bedrock-core-6.0.1.jar                                         (/home/demo1/.m2/repository/com/oracle/bedrock/bedrock-core/6.0.1)
                        : jakarta.el-api-5.0.0-RC1.jar                                   (/home/demo1/.m2/repository/jakarta/el/jakarta.el-api/5.0.0-RC1)
                        : jakarta.el-5.0.0-M1.jar                                        (/home/demo1/.m2/repository/org/glassfish/jakarta.el/5.0.0-M1)
                        : mockito-core-4.4.0.jar                                         (/home/demo1/.m2/repository/org/mockito/mockito-core/4.4.0)
                        : byte-buddy-1.12.8.jar                                          (/home/demo1/.m2/repository/net/bytebuddy/byte-buddy/1.12.8)
                        : byte-buddy-agent-1.12.8.jar                                    (/home/demo1/.m2/repository/net/bytebuddy/byte-buddy-agent/1.12.8)
                        : objenesis-3.2.jar                                              (/home/demo1/.m2/repository/org/objenesis/objenesis/3.2)
                        : bedrock-runtime-remote-6.0.1.jar                               (/home/demo1/.m2/repository/com/oracle/bedrock/bedrock-runtime-remote/6.0.1)
                        : jsch-0.1.55.jar                                                (/home/demo1/.m2/repository/com/jcraft/jsch/0.1.55)
                        : derby-10.15.2.0.jar                                            (/home/demo1/.m2/repository/org/apache/derby/derby/10.15.2.0)
                        : derbyshared-10.15.2.0.jar                                      (/home/demo1/.m2/repository/org/apache/derby/derbyshared/10.15.2.0)
                        : derbyclient-10.15.2.0.jar                                      (/home/demo1/.m2/repository/org/apache/derby/derbyclient/10.15.2.0)
                        : eclipselink-3.0.2.jar                                          (/home/demo1/.m2/repository/org/eclipse/persistence/eclipselink/3.0.2)
                        : jakarta.persistence-api-3.0.0.jar                              (/home/demo1/.m2/repository/jakarta/persistence/jakarta.persistence-api/3.0.0)
                        : jackson-annotations-2.14.1.jar                                 (/home/demo1/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.14.1)
                        : jackson-core-2.14.1.jar                                        (/home/demo1/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.14.1)
                        : jackson-databind-2.14.1.jar                                    (/home/demo1/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.14.1)
                        : jackson-jakarta-rs-json-provider-2.14.1.jar                    (/home/demo1/.m2/repository/com/fasterxml/jackson/jakarta/rs/jackson-jakarta-rs-json-provider/2.14.1)
                        : jackson-jakarta-rs-base-2.14.1.jar                             (/home/demo1/.m2/repository/com/fasterxml/jackson/jakarta/rs/jackson-jakarta-rs-base/2.14.1)
                        : jackson-module-jakarta-xmlbind-annotations-2.14.1.jar          (/home/demo1/.m2/repository/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.14.1)
                        : jakarta.activation-api-2.1.0.jar                               (/home/demo1/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.0)
                        : jaeger-client-1.8.1.jar                                        (/home/demo1/.m2/repository/io/jaegertracing/jaeger-client/1.8.1)
                        : jaeger-thrift-1.8.1.jar                                        (/home/demo1/.m2/repository/io/jaegertracing/jaeger-thrift/1.8.1)
                        : slf4j-api-1.7.28.jar                                           (/home/demo1/.m2/repository/org/slf4j/slf4j-api/1.7.28)
                        : libthrift-0.15.0.jar                                           (/home/demo1/.m2/repository/org/apache/thrift/libthrift/0.15.0)
                        : javax.annotation-api-1.3.2.jar                                 (/home/demo1/.m2/repository/javax/annotation/javax.annotation-api/1.3.2)
                        : okhttp-4.9.3.jar                                               (/home/demo1/.m2/repository/com/squareup/okhttp3/okhttp/4.9.3)
                        : okio-2.8.0.jar                                                 (/home/demo1/.m2/repository/com/squareup/okio/okio/2.8.0)
                        : jaeger-core-1.8.1.jar                                          (/home/demo1/.m2/repository/io/jaegertracing/jaeger-core/1.8.1)
                        : opentracing-api-0.33.0.jar                                     (/home/demo1/.m2/repository/io/opentracing/opentracing-api/0.33.0)
                        : gson-2.9.0.jar                                                 (/home/demo1/.m2/repository/com/google/code/gson/gson/2.9.0)
                        : jaeger-tracerresolver-1.8.1.jar                                (/home/demo1/.m2/repository/io/jaegertracing/jaeger-tracerresolver/1.8.1)
                        : opentracing-tracerresolver-0.1.8.jar                           (/home/demo1/.m2/repository/io/opentracing/contrib/opentracing-tracerresolver/0.1.8)
                        : kotlin-stdlib-common-1.8.20.jar                                (/home/demo1/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.8.20)
                        : kotlin-stdlib-1.8.20.jar                                       (/home/demo1/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.8.20)
                        : annotations-13.0.jar                                           (/home/demo1/.m2/repository/org/jetbrains/annotations/13.0)
                        : jakarta.ws.rs-api-3.0.0.jar                                    (/home/demo1/.m2/repository/jakarta/ws/rs/jakarta.ws.rs-api/3.0.0)
                        : jakarta.management.j2ee-api-1.1.4.jar                          (/home/demo1/.m2/repository/jakarta/management/j2ee/jakarta.management.j2ee-api/1.1.4)
                        : jakarta.xml.bind-api-3.0.1.jar                                 (/home/demo1/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/3.0.1)
                        : jakarta.activation-2.0.1.jar                                   (/home/demo1/.m2/repository/com/sun/activation/jakarta.activation/2.0.1)
                        : jersey-common-3.0.5.jar                                        (/home/demo1/.m2/repository/org/glassfish/jersey/core/jersey-common/3.0.5)
                        : jakarta.annotation-api-2.0.0.jar                               (/home/demo1/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.0.0)
                        : jakarta.inject-api-2.0.1.jar                                   (/home/demo1/.m2/repository/jakarta/inject/jakarta.inject-api/2.0.1)
                        : osgi-resource-locator-1.0.3.jar                                (/home/demo1/.m2/repository/org/glassfish/hk2/osgi-resource-locator/1.0.3)
                        : jersey-server-3.0.5.jar                                        (/home/demo1/.m2/repository/org/glassfish/jersey/core/jersey-server/3.0.5)
                        : jersey-client-3.0.5.jar                                        (/home/demo1/.m2/repository/org/glassfish/jersey/core/jersey-client/3.0.5)
                        : jakarta.validation-api-3.0.0.jar                               (/home/demo1/.m2/repository/jakarta/validation/jakarta.validation-api/3.0.0)
                        : jersey-hk2-3.0.5.jar                                           (/home/demo1/.m2/repository/org/glassfish/jersey/inject/jersey-hk2/3.0.5)
                        : hk2-locator-3.0.3.jar                                          (/home/demo1/.m2/repository/org/glassfish/hk2/hk2-locator/3.0.3)
                        : aopalliance-repackaged-3.0.3.jar                               (/home/demo1/.m2/repository/org/glassfish/hk2/external/aopalliance-repackaged/3.0.3)
                        : hk2-api-3.0.3.jar                                              (/home/demo1/.m2/repository/org/glassfish/hk2/hk2-api/3.0.3)
                        : hk2-utils-3.0.3.jar                                            (/home/demo1/.m2/repository/org/glassfish/hk2/hk2-utils/3.0.3)
                        : javassist-3.28.0-GA.jar                                        (/home/demo1/.m2/repository/org/javassist/javassist/3.28.0-GA)
                        : jersey-media-multipart-3.0.5.jar                               (/home/demo1/.m2/repository/org/glassfish/jersey/media/jersey-media-multipart/3.0.5)
                        : mimepull-1.9.13.jar                                            (/home/demo1/.m2/repository/org/jvnet/mimepull/mimepull/1.9.13)
                        : jersey-media-json-jackson-3.0.5.jar                            (/home/demo1/.m2/repository/org/glassfish/jersey/media/jersey-media-json-jackson/3.0.5)
                        : jersey-entity-filtering-3.0.5.jar                              (/home/demo1/.m2/repository/org/glassfish/jersey/ext/jersey-entity-filtering/3.0.5)
                        : jersey-media-sse-3.0.5.jar                                     (/home/demo1/.m2/repository/org/glassfish/jersey/media/jersey-media-sse/3.0.5)
                        : jersey-container-servlet-3.0.5.jar                             (/home/demo1/.m2/repository/org/glassfish/jersey/containers/jersey-container-servlet/3.0.5)
                        : jersey-container-servlet-core-3.0.5.jar                        (/home/demo1/.m2/repository/org/glassfish/jersey/containers/jersey-container-servlet-core/3.0.5)
                        : opentracing-jdbc-0.2.10.jar                                    (/home/demo1/.m2/repository/io/opentracing/contrib/opentracing-jdbc/0.2.10)
                        : opentracing-util-0.33.0.jar                                    (/home/demo1/.m2/repository/io/opentracing/opentracing-util/0.33.0)
                        : opentracing-noop-0.33.0.jar                                    (/home/demo1/.m2/repository/io/opentracing/opentracing-noop/0.33.0)
                        : common-0.1.4.jar                                               (/home/demo1/.m2/repository/io/opentracing/contrib/common/0.1.4)
                        : netty-all-4.1.86.Final.jar                                     (/home/demo1/.m2/repository/io/netty/netty-all/4.1.86.Final)
                        : netty-buffer-4.1.86.Final.jar                                  (/home/demo1/.m2/repository/io/netty/netty-buffer/4.1.86.Final)
                        : netty-codec-4.1.86.Final.jar                                   (/home/demo1/.m2/repository/io/netty/netty-codec/4.1.86.Final)
                        : netty-codec-dns-4.1.86.Final.jar                               (/home/demo1/.m2/repository/io/netty/netty-codec-dns/4.1.86.Final)
                        : netty-codec-haproxy-4.1.86.Final.jar                           (/home/demo1/.m2/repository/io/netty/netty-codec-haproxy/4.1.86.Final)
                        : netty-codec-http2-4.1.86.Final.jar                             (/home/demo1/.m2/repository/io/netty/netty-codec-http2/4.1.86.Final)
                        : netty-codec-memcache-4.1.86.Final.jar                          (/home/demo1/.m2/repository/io/netty/netty-codec-memcache/4.1.86.Final)
                        : netty-codec-mqtt-4.1.86.Final.jar                              (/home/demo1/.m2/repository/io/netty/netty-codec-mqtt/4.1.86.Final)
                        : netty-codec-redis-4.1.86.Final.jar                             (/home/demo1/.m2/repository/io/netty/netty-codec-redis/4.1.86.Final)
                        : netty-codec-smtp-4.1.86.Final.jar                              (/home/demo1/.m2/repository/io/netty/netty-codec-smtp/4.1.86.Final)
                        : netty-codec-socks-4.1.86.Final.jar                             (/home/demo1/.m2/repository/io/netty/netty-codec-socks/4.1.86.Final)
                        : netty-codec-stomp-4.1.86.Final.jar                             (/home/demo1/.m2/repository/io/netty/netty-codec-stomp/4.1.86.Final)
                        : netty-codec-xml-4.1.86.Final.jar                               (/home/demo1/.m2/repository/io/netty/netty-codec-xml/4.1.86.Final)
                        : netty-common-4.1.86.Final.jar                                  (/home/demo1/.m2/repository/io/netty/netty-common/4.1.86.Final)
                        : netty-handler-4.1.86.Final.jar                                 (/home/demo1/.m2/repository/io/netty/netty-handler/4.1.86.Final)
                        : netty-transport-native-unix-common-4.1.86.Final.jar            (/home/demo1/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.86.Final)
                        : netty-handler-proxy-4.1.86.Final.jar                           (/home/demo1/.m2/repository/io/netty/netty-handler-proxy/4.1.86.Final)
                        : netty-handler-ssl-ocsp-4.1.86.Final.jar                        (/home/demo1/.m2/repository/io/netty/netty-handler-ssl-ocsp/4.1.86.Final)
                        : netty-resolver-4.1.86.Final.jar                                (/home/demo1/.m2/repository/io/netty/netty-resolver/4.1.86.Final)
                        : netty-resolver-dns-4.1.86.Final.jar                            (/home/demo1/.m2/repository/io/netty/netty-resolver-dns/4.1.86.Final)
                        : netty-transport-4.1.86.Final.jar                               (/home/demo1/.m2/repository/io/netty/netty-transport/4.1.86.Final)
                        : netty-transport-rxtx-4.1.86.Final.jar                          (/home/demo1/.m2/repository/io/netty/netty-transport-rxtx/4.1.86.Final)
                        : netty-transport-sctp-4.1.86.Final.jar                          (/home/demo1/.m2/repository/io/netty/netty-transport-sctp/4.1.86.Final)
                        : netty-transport-udt-4.1.86.Final.jar                           (/home/demo1/.m2/repository/io/netty/netty-transport-udt/4.1.86.Final)
                        : netty-transport-classes-epoll-4.1.86.Final.jar                 (/home/demo1/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.86.Final)
                        : netty-transport-classes-kqueue-4.1.86.Final.jar                (/home/demo1/.m2/repository/io/netty/netty-transport-classes-kqueue/4.1.86.Final)
                        : netty-resolver-dns-classes-macos-4.1.86.Final.jar              (/home/demo1/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.86.Final)
                        : netty-transport-native-epoll-4.1.86.Final-linux-x86_64.jar     (/home/demo1/.m2/repository/io/netty/netty-transport-native-epoll/4.1.86.Final)
                        : netty-transport-native-epoll-4.1.86.Final-linux-aarch_64.jar   (/home/demo1/.m2/repository/io/netty/netty-transport-native-epoll/4.1.86.Final)
                        : netty-transport-native-kqueue-4.1.86.Final-osx-x86_64.jar      (/home/demo1/.m2/repository/io/netty/netty-transport-native-kqueue/4.1.86.Final)
                        : netty-transport-native-kqueue-4.1.86.Final-osx-aarch_64.jar    (/home/demo1/.m2/repository/io/netty/netty-transport-native-kqueue/4.1.86.Final)
                        : netty-resolver-dns-native-macos-4.1.86.Final-osx-x86_64.jar    (/home/demo1/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.86.Final)
                        : netty-resolver-dns-native-macos-4.1.86.Final-osx-aarch_64.jar  (/home/demo1/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.86.Final)
Environment Variables   : (based on parent process)
Java Executable         : /home/demo1/jdk-17.0.7/bin/java
Java Home               : /home/demo1/jdk-17.0.7
Java Options            : -Xmx512m -Xms512m -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=127.0.0.1:30000
Standard Error Device   : stderr
System Properties       : JAEGER_ENDPOINT                 http://localhost:14268/api/traces
                        : JAEGER_SERVICE_NAME             Coherence Demo (New York)
                        : bedrock.runtime.orphanable      false
                        : bedrock.runtime.parent          //127.0.0.1:45399
                        : coherence.management            all
                        : coherence.management.http       none
                        : coherence.ttl                   0
                        : coherence.wka                   127.0.0.1
                        : java.awt.headless               true
                        : java.net.preferIPv4Stack        true
                        : primary.cluster                 New York
                        : secondary.cluster               San Francisco
                        : tangosol.coherence.cacheconfig  cache-config.xml
                        : tangosol.coherence.cluster      New York
                        : tangosol.coherence.clusterport  7574
                        : tangosol.coherence.log.level    0
                        : tangosol.coherence.role         CoherenceDemoServerEven
                        : with.http                       false
Target Platform         : Local
Working Directory       : /home/demo1/coherence-demo
------------------------------------------------------------------------
 
[Coherence Demo Server:out:18677]    1: Listening for transport dt_socket at address: 30000
[Coherence Demo Server:err:18677]    1:
[Coherence Demo Server:err:18677]    2: Oracle Coherence Version 23.03 Build 99661
[Coherence Demo Server:err:18677]    3:  Community Edition: Development mode
[Coherence Demo Server:err:18677]    4: Copyright (c) 20002023, Oracle and/or its affiliates. All rights reserved.
[Coherence Demo Server:err:18677]    5:
2023-06-02 01:45:50.216/245.243 Oracle Coherence CE 23.03 <Info> (thread=Cluster, member=1): Member(Id=2, Timestamp=2023-06-02 01:45:50.011, Address=127.0.0.1:37771, MachineId=10131, Location=machine:localhost,process:19588, Role=CoherenceDemoServerEven) joined Cluster with senior member 1
2023-06-02 01:45:50.219/245.247 Oracle Coherence CE 23.03 <D6> (thread=Cluster, member=1): TcpRing connected to Member(Id=2, Timestamp=2023-06-02 01:45:50.011, Address=127.0.0.1:37771, MachineId=10131, Location=machine:localhost,process:19588, Role=CoherenceDemoServerEven)
2023-06-02 01:45:50.220/245.247 Oracle Coherence CE 23.03 <D6> (thread=Cluster, member=1): TcpRing connected to Member(Id=2, Timestamp=2023-06-02 01:45:50.011, Address=127.0.0.1:37771, MachineId=10131, Location=machine:localhost,process:19588, Role=CoherenceDemoServerEven)
2023-06-02 01:45:50.312/245.339 Oracle Coherence CE 23.03 <D6> (thread=Transport:TransportService, member=1): tmb://127.0.0.1:38289.44206 opening connection with tmb://127.0.0.1:37771.58267 using MultiplexedSocket{Socket[addr=/127.0.0.1,port=37771,localport=58504]}
2023-06-02 01:45:50.318/245.345 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=6, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 processing NEGOTIATE handshake for tmb://127.0.0.1:37771.58267 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=37771,localport=58504]}
2023-06-02 01:45:50.319/245.346 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=6, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 handshaking with /127.0.0.1 using protocol 1,522,655,233 version 5
2023-06-02 01:45:50.319/245.347 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=6, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 waiting for INTRODUCE handshake for tmb://127.0.0.1:37771.58267 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=37771,localport=58504]} with interest 5, 71B to read, 71B to write
2023-06-02 01:45:50.327/245.354 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=6, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 processing INTRODUCE handshake for tmb://127.0.0.1:37771.58267 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=37771,localport=58504]}
2023-06-02 01:45:50.327/245.355 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=6, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 waiting for ACCEPT handshake for tmb://127.0.0.1:37771.58267 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=37771,localport=58504]} with interest 5, 1B to read, 1B to write
2023-06-02 01:45:50.328/245.355 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=6, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 processing ACCEPT handshake for tmb://127.0.0.1:37771.58267 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=37771,localport=58504]}
2023-06-02 01:45:50.370/245.397 Oracle Coherence CE 23.03 <D6> (thread=Transport:TransportService, member=1): Registered Connection {Peer=tmb://127.0.0.1:37771.58267, Service=TransportService, Member=2, Not established, State=CONNECTING, peer=tmb://127.0.0.1:37771.58267, state=OPEN, socket=MultiplexedSocket{Socket[addr=/127.0.0.1,port=37771,localport=58504]}, bytes(in=0, out=0), flushlock false, bufferedOut=0B, unflushed=0B, delivered(in=0, out=0), timeout(n/a), interestOps=0, unflushed receipt=0, receiptReturn 0, isReceiptFlushRequired false, bufferedIn(), msgs(in=0, out=0/0)}
2023-06-02 01:45:50.516/245.544 Oracle Coherence CE 23.03 <Info> (thread=SelectionService(channels=6, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): Connection established with tmb://127.0.0.1:37771.58267
2023-06-02 01:45:50.539/245.566 Oracle Coherence CE 23.03 <Info> (thread=Transport:TransportService, member=1): Member 2 joined Service TransportService with senior member 1
2023-06-02 01:45:50.597/245.625 Oracle Coherence CE 23.03 <Info> (thread=Invocation:Management, member=1): Member 2 joined Service Management with senior member 1
2023-06-02 01:45:50.830/245.857 Oracle Coherence CE 23.03 <Info> (thread=jersey-server-managed-async-executor-1, member=1): Starting server 2 of 4
Jun 022023 1:45:51 AM com.oracle.bedrock.runtime.java.LocalJavaApplicationLauncher launch
INFO: Oracle Bedrock 6.0.1: Starting Application...
------------------------------------------------------------------------
Application             : Coherence Demo Server
Application Class       : com.tangosol.net.Coherence
Application Launch Time : 2023-06-02 01:45:51
Application Launcher    : com.oracle.bedrock.runtime.java.JavaApplicationRunner
Class Path              : classes                                                        (/home/demo1/coherence-demo/target)
                        : coherence-23.03.jar                                            (/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence/23.03)
                        : coherence-management-23.03.jar                                 (/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence-management/23.03)
                        : coherence-json-23.03.jar                                       (/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence-json/23.03)
                        : jakarta.json.bind-api-2.0.0.jar                                (/home/demo1/.m2/repository/jakarta/json/bind/jakarta.json.bind-api/2.0.0)
                        : jakarta.json-api-2.0.2.jar                                     (/home/demo1/.m2/repository/jakarta/json/jakarta.json-api/2.0.2)
                        : coherence-http-netty-23.03.jar                                 (/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence-http-netty/23.03)
                        : netty-codec-http-4.1.86.Final.jar                              (/home/demo1/.m2/repository/io/netty/netty-codec-http/4.1.86.Final)
                        : coherence-12.2.1-6.0.1.jar                                     (/home/demo1/.m2/repository/com/oracle/bedrock/coherence/coherence-12.2.1/6.0.1)
                        : bedrock-runtime-6.0.1.jar                                      (/home/demo1/.m2/repository/com/oracle/bedrock/bedrock-runtime/6.0.1)
                        : bedrock-core-6.0.1.jar                                         (/home/demo1/.m2/repository/com/oracle/bedrock/bedrock-core/6.0.1)
                        : jakarta.el-api-5.0.0-RC1.jar                                   (/home/demo1/.m2/repository/jakarta/el/jakarta.el-api/5.0.0-RC1)
                        : jakarta.el-5.0.0-M1.jar                                        (/home/demo1/.m2/repository/org/glassfish/jakarta.el/5.0.0-M1)
                        : mockito-core-4.4.0.jar                                         (/home/demo1/.m2/repository/org/mockito/mockito-core/4.4.0)
                        : byte-buddy-1.12.8.jar                                          (/home/demo1/.m2/repository/net/bytebuddy/byte-buddy/1.12.8)
                        : byte-buddy-agent-1.12.8.jar                                    (/home/demo1/.m2/repository/net/bytebuddy/byte-buddy-agent/1.12.8)
                        : objenesis-3.2.jar                                              (/home/demo1/.m2/repository/org/objenesis/objenesis/3.2)
                        : bedrock-runtime-remote-6.0.1.jar                               (/home/demo1/.m2/repository/com/oracle/bedrock/bedrock-runtime-remote/6.0.1)
                        : jsch-0.1.55.jar                                                (/home/demo1/.m2/repository/com/jcraft/jsch/0.1.55)
                        : derby-10.15.2.0.jar                                            (/home/demo1/.m2/repository/org/apache/derby/derby/10.15.2.0)
                        : derbyshared-10.15.2.0.jar                                      (/home/demo1/.m2/repository/org/apache/derby/derbyshared/10.15.2.0)
                        : derbyclient-10.15.2.0.jar                                      (/home/demo1/.m2/repository/org/apache/derby/derbyclient/10.15.2.0)
                        : eclipselink-3.0.2.jar                                          (/home/demo1/.m2/repository/org/eclipse/persistence/eclipselink/3.0.2)
                        : jakarta.persistence-api-3.0.0.jar                              (/home/demo1/.m2/repository/jakarta/persistence/jakarta.persistence-api/3.0.0)
                        : jackson-annotations-2.14.1.jar                                 (/home/demo1/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.14.1)
                        : jackson-core-2.14.1.jar                                        (/home/demo1/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.14.1)
                        : jackson-databind-2.14.1.jar                                    (/home/demo1/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.14.1)
                        : jackson-jakarta-rs-json-provider-2.14.1.jar                    (/home/demo1/.m2/repository/com/fasterxml/jackson/jakarta/rs/jackson-jakarta-rs-json-provider/2.14.1)
                        : jackson-jakarta-rs-base-2.14.1.jar                             (/home/demo1/.m2/repository/com/fasterxml/jackson/jakarta/rs/jackson-jakarta-rs-base/2.14.1)
                        : jackson-module-jakarta-xmlbind-annotations-2.14.1.jar          (/home/demo1/.m2/repository/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.14.1)
                        : jakarta.activation-api-2.1.0.jar                               (/home/demo1/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.0)
                        : jaeger-client-1.8.1.jar                                        (/home/demo1/.m2/repository/io/jaegertracing/jaeger-client/1.8.1)
                        : jaeger-thrift-1.8.1.jar                                        (/home/demo1/.m2/repository/io/jaegertracing/jaeger-thrift/1.8.1)
                        : slf4j-api-1.7.28.jar                                           (/home/demo1/.m2/repository/org/slf4j/slf4j-api/1.7.28)
                        : libthrift-0.15.0.jar                                           (/home/demo1/.m2/repository/org/apache/thrift/libthrift/0.15.0)
                        : javax.annotation-api-1.3.2.jar                                 (/home/demo1/.m2/repository/javax/annotation/javax.annotation-api/1.3.2)
                        : okhttp-4.9.3.jar                                               (/home/demo1/.m2/repository/com/squareup/okhttp3/okhttp/4.9.3)
                        : okio-2.8.0.jar                                                 (/home/demo1/.m2/repository/com/squareup/okio/okio/2.8.0)
                        : jaeger-core-1.8.1.jar                                          (/home/demo1/.m2/repository/io/jaegertracing/jaeger-core/1.8.1)
                        : opentracing-api-0.33.0.jar                                     (/home/demo1/.m2/repository/io/opentracing/opentracing-api/0.33.0)
                        : gson-2.9.0.jar                                                 (/home/demo1/.m2/repository/com/google/code/gson/gson/2.9.0)
                        : jaeger-tracerresolver-1.8.1.jar                                (/home/demo1/.m2/repository/io/jaegertracing/jaeger-tracerresolver/1.8.1)
                        : opentracing-tracerresolver-0.1.8.jar                           (/home/demo1/.m2/repository/io/opentracing/contrib/opentracing-tracerresolver/0.1.8)
                        : kotlin-stdlib-common-1.8.20.jar                                (/home/demo1/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.8.20)
                        : kotlin-stdlib-1.8.20.jar                                       (/home/demo1/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.8.20)
                        : annotations-13.0.jar                                           (/home/demo1/.m2/repository/org/jetbrains/annotations/13.0)
                        : jakarta.ws.rs-api-3.0.0.jar                                    (/home/demo1/.m2/repository/jakarta/ws/rs/jakarta.ws.rs-api/3.0.0)
                        : jakarta.management.j2ee-api-1.1.4.jar                          (/home/demo1/.m2/repository/jakarta/management/j2ee/jakarta.management.j2ee-api/1.1.4)
                        : jakarta.xml.bind-api-3.0.1.jar                                 (/home/demo1/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/3.0.1)
                        : jakarta.activation-2.0.1.jar                                   (/home/demo1/.m2/repository/com/sun/activation/jakarta.activation/2.0.1)
                        : jersey-common-3.0.5.jar                                        (/home/demo1/.m2/repository/org/glassfish/jersey/core/jersey-common/3.0.5)
                        : jakarta.annotation-api-2.0.0.jar                               (/home/demo1/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.0.0)
                        : jakarta.inject-api-2.0.1.jar                                   (/home/demo1/.m2/repository/jakarta/inject/jakarta.inject-api/2.0.1)
                        : osgi-resource-locator-1.0.3.jar                                (/home/demo1/.m2/repository/org/glassfish/hk2/osgi-resource-locator/1.0.3)
                        : jersey-server-3.0.5.jar                                        (/home/demo1/.m2/repository/org/glassfish/jersey/core/jersey-server/3.0.5)
                        : jersey-client-3.0.5.jar                                        (/home/demo1/.m2/repository/org/glassfish/jersey/core/jersey-client/3.0.5)
                        : jakarta.validation-api-3.0.0.jar                               (/home/demo1/.m2/repository/jakarta/validation/jakarta.validation-api/3.0.0)
                        : jersey-hk2-3.0.5.jar                                           (/home/demo1/.m2/repository/org/glassfish/jersey/inject/jersey-hk2/3.0.5)
                        : hk2-locator-3.0.3.jar                                          (/home/demo1/.m2/repository/org/glassfish/hk2/hk2-locator/3.0.3)
                        : aopalliance-repackaged-3.0.3.jar                               (/home/demo1/.m2/repository/org/glassfish/hk2/external/aopalliance-repackaged/3.0.3)
                        : hk2-api-3.0.3.jar                                              (/home/demo1/.m2/repository/org/glassfish/hk2/hk2-api/3.0.3)
                        : hk2-utils-3.0.3.jar                                            (/home/demo1/.m2/repository/org/glassfish/hk2/hk2-utils/3.0.3)
                        : javassist-3.28.0-GA.jar                                        (/home/demo1/.m2/repository/org/javassist/javassist/3.28.0-GA)
                        : jersey-media-multipart-3.0.5.jar                               (/home/demo1/.m2/repository/org/glassfish/jersey/media/jersey-media-multipart/3.0.5)
                        : mimepull-1.9.13.jar                                            (/home/demo1/.m2/repository/org/jvnet/mimepull/mimepull/1.9.13)
                        : jersey-media-json-jackson-3.0.5.jar                            (/home/demo1/.m2/repository/org/glassfish/jersey/media/jersey-media-json-jackson/3.0.5)
                        : jersey-entity-filtering-3.0.5.jar                              (/home/demo1/.m2/repository/org/glassfish/jersey/ext/jersey-entity-filtering/3.0.5)
                        : jersey-media-sse-3.0.5.jar                                     (/home/demo1/.m2/repository/org/glassfish/jersey/media/jersey-media-sse/3.0.5)
                        : jersey-container-servlet-3.0.5.jar                             (/home/demo1/.m2/repository/org/glassfish/jersey/containers/jersey-container-servlet/3.0.5)
                        : jersey-container-servlet-core-3.0.5.jar                        (/home/demo1/.m2/repository/org/glassfish/jersey/containers/jersey-container-servlet-core/3.0.5)
                        : opentracing-jdbc-0.2.10.jar                                    (/home/demo1/.m2/repository/io/opentracing/contrib/opentracing-jdbc/0.2.10)
                        : opentracing-util-0.33.0.jar                                    (/home/demo1/.m2/repository/io/opentracing/opentracing-util/0.33.0)
                        : opentracing-noop-0.33.0.jar                                    (/home/demo1/.m2/repository/io/opentracing/opentracing-noop/0.33.0)
                        : common-0.1.4.jar                                               (/home/demo1/.m2/repository/io/opentracing/contrib/common/0.1.4)
                        : netty-all-4.1.86.Final.jar                                     (/home/demo1/.m2/repository/io/netty/netty-all/4.1.86.Final)
                        : netty-buffer-4.1.86.Final.jar                                  (/home/demo1/.m2/repository/io/netty/netty-buffer/4.1.86.Final)
                        : netty-codec-4.1.86.Final.jar                                   (/home/demo1/.m2/repository/io/netty/netty-codec/4.1.86.Final)
                        : netty-codec-dns-4.1.86.Final.jar                               (/home/demo1/.m2/repository/io/netty/netty-codec-dns/4.1.86.Final)
                        : netty-codec-haproxy-4.1.86.Final.jar                           (/home/demo1/.m2/repository/io/netty/netty-codec-haproxy/4.1.86.Final)
                        : netty-codec-http2-4.1.86.Final.jar                             (/home/demo1/.m2/repository/io/netty/netty-codec-http2/4.1.86.Final)
                        : netty-codec-memcache-4.1.86.Final.jar                          (/home/demo1/.m2/repository/io/netty/netty-codec-memcache/4.1.86.Final)
                        : netty-codec-mqtt-4.1.86.Final.jar                              (/home/demo1/.m2/repository/io/netty/netty-codec-mqtt/4.1.86.Final)
                        : netty-codec-redis-4.1.86.Final.jar                             (/home/demo1/.m2/repository/io/netty/netty-codec-redis/4.1.86.Final)
                        : netty-codec-smtp-4.1.86.Final.jar                              (/home/demo1/.m2/repository/io/netty/netty-codec-smtp/4.1.86.Final)
                        : netty-codec-socks-4.1.86.Final.jar                             (/home/demo1/.m2/repository/io/netty/netty-codec-socks/4.1.86.Final)
                        : netty-codec-stomp-4.1.86.Final.jar                             (/home/demo1/.m2/repository/io/netty/netty-codec-stomp/4.1.86.Final)
                        : netty-codec-xml-4.1.86.Final.jar                               (/home/demo1/.m2/repository/io/netty/netty-codec-xml/4.1.86.Final)
                        : netty-common-4.1.86.Final.jar                                  (/home/demo1/.m2/repository/io/netty/netty-common/4.1.86.Final)
                        : netty-handler-4.1.86.Final.jar                                 (/home/demo1/.m2/repository/io/netty/netty-handler/4.1.86.Final)
                        : netty-transport-native-unix-common-4.1.86.Final.jar            (/home/demo1/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.86.Final)
                        : netty-handler-proxy-4.1.86.Final.jar                           (/home/demo1/.m2/repository/io/netty/netty-handler-proxy/4.1.86.Final)
                        : netty-handler-ssl-ocsp-4.1.86.Final.jar                        (/home/demo1/.m2/repository/io/netty/netty-handler-ssl-ocsp/4.1.86.Final)
                        : netty-resolver-4.1.86.Final.jar                                (/home/demo1/.m2/repository/io/netty/netty-resolver/4.1.86.Final)
                        : netty-resolver-dns-4.1.86.Final.jar                            (/home/demo1/.m2/repository/io/netty/netty-resolver-dns/4.1.86.Final)
                        : netty-transport-4.1.86.Final.jar                               (/home/demo1/.m2/repository/io/netty/netty-transport/4.1.86.Final)
                        : netty-transport-rxtx-4.1.86.Final.jar                          (/home/demo1/.m2/repository/io/netty/netty-transport-rxtx/4.1.86.Final)
                        : netty-transport-sctp-4.1.86.Final.jar                          (/home/demo1/.m2/repository/io/netty/netty-transport-sctp/4.1.86.Final)
                        : netty-transport-udt-4.1.86.Final.jar                           (/home/demo1/.m2/repository/io/netty/netty-transport-udt/4.1.86.Final)
                        : netty-transport-classes-epoll-4.1.86.Final.jar                 (/home/demo1/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.86.Final)
                        : netty-transport-classes-kqueue-4.1.86.Final.jar                (/home/demo1/.m2/repository/io/netty/netty-transport-classes-kqueue/4.1.86.Final)
                        : netty-resolver-dns-classes-macos-4.1.86.Final.jar              (/home/demo1/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.86.Final)
                        : netty-transport-native-epoll-4.1.86.Final-linux-x86_64.jar     (/home/demo1/.m2/repository/io/netty/netty-transport-native-epoll/4.1.86.Final)
                        : netty-transport-native-epoll-4.1.86.Final-linux-aarch_64.jar   (/home/demo1/.m2/repository/io/netty/netty-transport-native-epoll/4.1.86.Final)
                        : netty-transport-native-kqueue-4.1.86.Final-osx-x86_64.jar      (/home/demo1/.m2/repository/io/netty/netty-transport-native-kqueue/4.1.86.Final)
                        : netty-transport-native-kqueue-4.1.86.Final-osx-aarch_64.jar    (/home/demo1/.m2/repository/io/netty/netty-transport-native-kqueue/4.1.86.Final)
                        : netty-resolver-dns-native-macos-4.1.86.Final-osx-x86_64.jar    (/home/demo1/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.86.Final)
                        : netty-resolver-dns-native-macos-4.1.86.Final-osx-aarch_64.jar  (/home/demo1/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.86.Final)
Environment Variables   : (based on parent process)
Java Executable         : /home/demo1/jdk-17.0.7/bin/java
Java Home               : /home/demo1/jdk-17.0.7
Java Options            : -Xmx512m -Xms512m -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=127.0.0.1:30001
Standard Error Device   : stderr
System Properties       : JAEGER_ENDPOINT                 http://localhost:14268/api/traces
                        : JAEGER_SERVICE_NAME             Coherence Demo (New York)
                        : bedrock.runtime.orphanable      false
                        : bedrock.runtime.parent          //127.0.0.1:42627
                        : coherence.management            all
                        : coherence.management.http       none
                        : coherence.ttl                   0
                        : coherence.wka                   127.0.0.1
                        : java.awt.headless               true
                        : java.net.preferIPv4Stack        true
                        : primary.cluster                 New York
                        : secondary.cluster               San Francisco
                        : tangosol.coherence.cacheconfig  cache-config.xml
                        : tangosol.coherence.cluster      New York
                        : tangosol.coherence.clusterport  7574
                        : tangosol.coherence.log.level    0
                        : tangosol.coherence.role         CoherenceDemoServerOdd
                        : with.http                       false
Target Platform         : Local
Working Directory       : /home/demo1/coherence-demo
------------------------------------------------------------------------
 
[Coherence Demo Server:out:18677]    1: Listening for transport dt_socket at address: 30001
2023-06-02 01:45:51.293/246.321 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Member 2 joined Service $SYS:Config with senior member 1
2023-06-02 01:45:51.733/246.761 Oracle Coherence CE 23.03 <Info> (thread=Proxy:$SYS:HealthHttpProxy, member=1): Member 2 joined Service $SYS:HealthHttpProxy with senior member 1
2023-06-02 01:45:51.845/246.873 Oracle Coherence CE 23.03 <Info> (thread=Proxy:$SYS:SystemProxy, member=1): Member 2 joined Service $SYS:SystemProxy with senior member 1
2023-06-02 01:45:52.329/247.357 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=21for PartitionSet{0..127}
2023-06-02 01:45:52.331/247.358 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=12for PartitionSet{128..256}
2023-06-02 01:45:52.484/247.511 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Transferring 129B of backup[1for PartitionSet{128..256} to member 2; transfer threshold exceeded
2023-06-02 01:45:52.827/247.855 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Deferring the distribution due to 73 pending configuration updates
2023-06-02 01:45:52.985/248.012 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Transferring primary PartitionSet{0..127} to member 2 requesting 128
2023-06-02 01:45:53.152/248.180 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Partition ownership has stabilized with 2 nodes
2023-06-02 01:45:53.213/248.240 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Member 2 joined Service DistributedCache with senior member 1
2023-06-02 01:45:53.246/248.273 Oracle Coherence CE 23.03 <Info> (thread=Invocation:InvocationService, member=1): Member 2 joined Service InvocationService with senior member 1
2023-06-02 01:45:53.253/248.280 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Partition ownership has stabilized with 2 nodes
2023-06-02 01:45:54.210/249.238 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=21for PartitionSet{0..127}
2023-06-02 01:45:54.213/249.240 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=12for PartitionSet{128..256}
2023-06-02 01:45:54.307/249.335 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring 563KB of backup[1for PartitionSet{128..136} to member 2; transfer threshold exceeded
2023-06-02 01:45:54.514/249.541 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring 567KB of backup[1for PartitionSet{137..145} to member 2; transfer threshold exceeded
2023-06-02 01:45:54.656/249.684 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{0..8} to member 2 requesting 128; transfer threshold exceeded
[Coherence Demo Server:err:18677]    1:
[Coherence Demo Server:err:18677]    2: Oracle Coherence Version 23.03 Build 99661
[Coherence Demo Server:err:18677]    3:  Community Edition: Development mode
[Coherence Demo Server:err:18677]    4: Copyright (c) 20002023, Oracle and/or its affiliates. All rights reserved.
[Coherence Demo Server:err:18677]    5:
2023-06-02 01:45:55.290/250.317 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring 570KB of backup[1for PartitionSet{146..154} to member 2; transfer threshold exceeded
2023-06-02 01:45:55.427/250.455 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring 565KB of backup[1for PartitionSet{155..163} to member 2; transfer threshold exceeded
2023-06-02 01:45:55.580/250.607 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring 554KB of backup[1for PartitionSet{164..172} to member 2; transfer threshold exceeded
2023-06-02 01:45:55.940/250.968 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring 63.8KB of backup[1for PartitionSet{173} to member 2; transfer threshold exceeded
2023-06-02 01:45:56.204/251.232 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring 553KB of backup[1for PartitionSet{175..183} to member 2; transfer threshold exceeded
2023-06-02 01:45:56.452/251.480 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring 564KB of backup[1for PartitionSet{184..192} to member 2; transfer threshold exceeded
2023-06-02 01:45:56.595/251.623 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring 567KB of backup[1for PartitionSet{174193..200} to member 2; transfer threshold exceeded
2023-06-02 01:45:56.723/251.751 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring 569KB of backup[1for PartitionSet{201..209} to member 2; transfer threshold exceeded
2023-06-02 01:45:56.853/251.881 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring 559KB of backup[1for PartitionSet{210..218} to member 2; transfer threshold exceeded
2023-06-02 01:45:56.973/252.000 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring 551KB of backup[1for PartitionSet{219..227} to member 2; transfer threshold exceeded
2023-06-02 01:45:57.086/252.114 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{9..17} to member 2 requesting 119; transfer threshold exceeded
2023-06-02 01:45:57.389/252.417 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring 547KB of backup[1for PartitionSet{228..236} to member 2; transfer threshold exceeded
2023-06-02 01:45:57.535/252.563 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring 558KB of backup[1for PartitionSet{237..245} to member 2; transfer threshold exceeded
2023-06-02 01:45:57.670/252.698 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring 556KB of backup[1for PartitionSet{246..254} to member 2; transfer threshold exceeded
2023-06-02 01:45:57.787/252.814 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring 116KB of backup[1for PartitionSet{255256} to member 2; transfer threshold exceeded
2023-06-02 01:45:59.244/254.271 Oracle Coherence CE 23.03 <Info> (thread=Cluster, member=1): Member(Id=3, Timestamp=2023-06-02 01:45:59.041, Address=127.0.0.1:37531, MachineId=10131, Location=machine:localhost,process:19635, Role=CoherenceDemoServerOdd) joined Cluster with senior member 1
2023-06-02 01:45:59.244/254.272 Oracle Coherence CE 23.03 <Info> (thread=Cluster, member=1): TcpRing disconnected from Member(Id=2, Timestamp=2023-06-02 01:45:50.011, Address=127.0.0.1:37771, MachineId=10131, Location=machine:localhost,process:19588, Role=CoherenceDemoServerEven) to maintain ring
2023-06-02 01:45:59.245/254.273 Oracle Coherence CE 23.03 <D6> (thread=Cluster, member=1): TcpRing connected to Member(Id=3, Timestamp=2023-06-02 01:45:59.041, Address=127.0.0.1:37531, MachineId=10131, Location=machine:localhost,process:19635, Role=CoherenceDemoServerOdd)
2023-06-02 01:45:59.245/254.273 Oracle Coherence CE 23.03 <D6> (thread=Cluster, member=1): TcpRing connected to Member(Id=3, Timestamp=2023-06-02 01:45:59.041, Address=127.0.0.1:37531, MachineId=10131, Location=machine:localhost,process:19635, Role=CoherenceDemoServerOdd)
2023-06-02 01:45:59.288/254.316 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{18..26} to member 2 requesting 110; transfer threshold exceeded
2023-06-02 01:45:59.479/254.506 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{27..35} to member 2 requesting 101; transfer threshold exceeded
2023-06-02 01:45:59.649/254.676 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{36..44} to member 2 requesting 92; transfer threshold exceeded
2023-06-02 01:45:59.756/254.784 Oracle Coherence CE 23.03 <D6> (thread=Transport:TransportService, member=1): tmb://127.0.0.1:38289.44206 opening connection with tmb://127.0.0.1:37531.37529 using MultiplexedSocket{Socket[addr=/127.0.0.1,port=37531,localport=39146]}
2023-06-02 01:45:59.757/254.784 Oracle Coherence CE 23.03 <D6> (thread=Transport:TransportService, member=1): Registered Connection {Peer=tmb://127.0.0.1:37531.37529, Service=TransportService, Member=3, Not established, State=CONNECTING, peer=tmb://127.0.0.1:37531.37529, state=OPEN, socket=MultiplexedSocket{Socket[addr=/127.0.0.1,port=37531,localport=39146]}, bytes(in=0, out=0), flushlock false, bufferedOut=0B, unflushed=0B, delivered(in=0, out=0), timeout(n/a), interestOps=0, unflushed receipt=0, receiptReturn 0, isReceiptFlushRequired false, bufferedIn(), msgs(in=0, out=0/0)}
2023-06-02 01:45:59.765/254.792 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=7, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 processing NEGOTIATE handshake for tmb://127.0.0.1:37531.37529 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=37531,localport=39146]}
2023-06-02 01:45:59.765/254.793 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=7, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 handshaking with /127.0.0.1 using protocol 1,522,655,233 version 5
2023-06-02 01:45:59.766/254.793 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=7, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 waiting for INTRODUCE handshake for tmb://127.0.0.1:37531.37529 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=37531,localport=39146]} with interest 5, 71B to read, 71B to write
2023-06-02 01:45:59.781/254.809 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=7, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 processing INTRODUCE handshake for tmb://127.0.0.1:37531.37529 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=37531,localport=39146]}
2023-06-02 01:45:59.782/254.809 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=7, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 waiting for ACCEPT handshake for tmb://127.0.0.1:37531.37529 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=37531,localport=39146]} with interest 5, 1B to read, 1B to write
2023-06-02 01:45:59.783/254.810 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=7, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 processing ACCEPT handshake for tmb://127.0.0.1:37531.37529 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=37531,localport=39146]}
2023-06-02 01:45:59.920/254.947 Oracle Coherence CE 23.03 <Info> (thread=SelectionService(channels=7, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): Connection established with tmb://127.0.0.1:37531.37529
2023-06-02 01:45:59.934/254.961 Oracle Coherence CE 23.03 <Info> (thread=Transport:TransportService, member=1): Member 3 joined Service TransportService with senior member 1
2023-06-02 01:46:00.018/255.045 Oracle Coherence CE 23.03 <Info> (thread=Invocation:Management, member=1): Member 3 joined Service Management with senior member 1
2023-06-02 01:46:00.288/255.316 Oracle Coherence CE 23.03 <D5> (thread=Invocation:Management, member=1): Health: StatusHA check failed. Service DistributedCache has HA status of ENDANGERED, suspended=false, members=memberCount=2 members=[12]
2023-06-02 01:46:00.893/255.921 Oracle Coherence CE 23.03 <Info> (thread=jersey-server-managed-async-executor-1, member=1): Starting server 3 of 4
2023-06-02 01:46:01.132/256.160 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Member 3 joined Service $SYS:Config with senior member 1
Jun 022023 1:46:01 AM com.oracle.bedrock.runtime.java.LocalJavaApplicationLauncher launch
INFO: Oracle Bedrock 6.0.1: Starting Application...
------------------------------------------------------------------------
Application             : Coherence Demo Server
Application Class       : com.tangosol.net.Coherence
Application Launch Time : 2023-06-02 01:46:01
Application Launcher    : com.oracle.bedrock.runtime.java.JavaApplicationRunner
Class Path              : classes                                                        (/home/demo1/coherence-demo/target)
                        : coherence-23.03.jar                                            (/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence/23.03)
                        : coherence-management-23.03.jar                                 (/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence-management/23.03)
                        : coherence-json-23.03.jar                                       (/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence-json/23.03)
                        : jakarta.json.bind-api-2.0.0.jar                                (/home/demo1/.m2/repository/jakarta/json/bind/jakarta.json.bind-api/2.0.0)
                        : jakarta.json-api-2.0.2.jar                                     (/home/demo1/.m2/repository/jakarta/json/jakarta.json-api/2.0.2)
                        : coherence-http-netty-23.03.jar                                 (/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence-http-netty/23.03)
                        : netty-codec-http-4.1.86.Final.jar                              (/home/demo1/.m2/repository/io/netty/netty-codec-http/4.1.86.Final)
                        : coherence-12.2.1-6.0.1.jar                                     (/home/demo1/.m2/repository/com/oracle/bedrock/coherence/coherence-12.2.1/6.0.1)
                        : bedrock-runtime-6.0.1.jar                                      (/home/demo1/.m2/repository/com/oracle/bedrock/bedrock-runtime/6.0.1)
                        : bedrock-core-6.0.1.jar                                         (/home/demo1/.m2/repository/com/oracle/bedrock/bedrock-core/6.0.1)
                        : jakarta.el-api-5.0.0-RC1.jar                                   (/home/demo1/.m2/repository/jakarta/el/jakarta.el-api/5.0.0-RC1)
                        : jakarta.el-5.0.0-M1.jar                                        (/home/demo1/.m2/repository/org/glassfish/jakarta.el/5.0.0-M1)
                        : mockito-core-4.4.0.jar                                         (/home/demo1/.m2/repository/org/mockito/mockito-core/4.4.0)
                        : byte-buddy-1.12.8.jar                                          (/home/demo1/.m2/repository/net/bytebuddy/byte-buddy/1.12.8)
                        : byte-buddy-agent-1.12.8.jar                                    (/home/demo1/.m2/repository/net/bytebuddy/byte-buddy-agent/1.12.8)
                        : objenesis-3.2.jar                                              (/home/demo1/.m2/repository/org/objenesis/objenesis/3.2)
                        : bedrock-runtime-remote-6.0.1.jar                               (/home/demo1/.m2/repository/com/oracle/bedrock/bedrock-runtime-remote/6.0.1)
                        : jsch-0.1.55.jar                                                (/home/demo1/.m2/repository/com/jcraft/jsch/0.1.55)
                        : derby-10.15.2.0.jar                                            (/home/demo1/.m2/repository/org/apache/derby/derby/10.15.2.0)
                        : derbyshared-10.15.2.0.jar                                      (/home/demo1/.m2/repository/org/apache/derby/derbyshared/10.15.2.0)
                        : derbyclient-10.15.2.0.jar                                      (/home/demo1/.m2/repository/org/apache/derby/derbyclient/10.15.2.0)
                        : eclipselink-3.0.2.jar                                          (/home/demo1/.m2/repository/org/eclipse/persistence/eclipselink/3.0.2)
                        : jakarta.persistence-api-3.0.0.jar                              (/home/demo1/.m2/repository/jakarta/persistence/jakarta.persistence-api/3.0.0)
                        : jackson-annotations-2.14.1.jar                                 (/home/demo1/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.14.1)
                        : jackson-core-2.14.1.jar                                        (/home/demo1/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.14.1)
                        : jackson-databind-2.14.1.jar                                    (/home/demo1/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.14.1)
                        : jackson-jakarta-rs-json-provider-2.14.1.jar                    (/home/demo1/.m2/repository/com/fasterxml/jackson/jakarta/rs/jackson-jakarta-rs-json-provider/2.14.1)
                        : jackson-jakarta-rs-base-2.14.1.jar                             (/home/demo1/.m2/repository/com/fasterxml/jackson/jakarta/rs/jackson-jakarta-rs-base/2.14.1)
                        : jackson-module-jakarta-xmlbind-annotations-2.14.1.jar          (/home/demo1/.m2/repository/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.14.1)
                        : jakarta.activation-api-2.1.0.jar                               (/home/demo1/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.0)
                        : jaeger-client-1.8.1.jar                                        (/home/demo1/.m2/repository/io/jaegertracing/jaeger-client/1.8.1)
                        : jaeger-thrift-1.8.1.jar                                        (/home/demo1/.m2/repository/io/jaegertracing/jaeger-thrift/1.8.1)
                        : slf4j-api-1.7.28.jar                                           (/home/demo1/.m2/repository/org/slf4j/slf4j-api/1.7.28)
                        : libthrift-0.15.0.jar                                           (/home/demo1/.m2/repository/org/apache/thrift/libthrift/0.15.0)
                        : javax.annotation-api-1.3.2.jar                                 (/home/demo1/.m2/repository/javax/annotation/javax.annotation-api/1.3.2)
                        : okhttp-4.9.3.jar                                               (/home/demo1/.m2/repository/com/squareup/okhttp3/okhttp/4.9.3)
                        : okio-2.8.0.jar                                                 (/home/demo1/.m2/repository/com/squareup/okio/okio/2.8.0)
                        : jaeger-core-1.8.1.jar                                          (/home/demo1/.m2/repository/io/jaegertracing/jaeger-core/1.8.1)
                        : opentracing-api-0.33.0.jar                                     (/home/demo1/.m2/repository/io/opentracing/opentracing-api/0.33.0)
                        : gson-2.9.0.jar                                                 (/home/demo1/.m2/repository/com/google/code/gson/gson/2.9.0)
                        : jaeger-tracerresolver-1.8.1.jar                                (/home/demo1/.m2/repository/io/jaegertracing/jaeger-tracerresolver/1.8.1)
                        : opentracing-tracerresolver-0.1.8.jar                           (/home/demo1/.m2/repository/io/opentracing/contrib/opentracing-tracerresolver/0.1.8)
                        : kotlin-stdlib-common-1.8.20.jar                                (/home/demo1/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.8.20)
                        : kotlin-stdlib-1.8.20.jar                                       (/home/demo1/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.8.20)
                        : annotations-13.0.jar                                           (/home/demo1/.m2/repository/org/jetbrains/annotations/13.0)
                        : jakarta.ws.rs-api-3.0.0.jar                                    (/home/demo1/.m2/repository/jakarta/ws/rs/jakarta.ws.rs-api/3.0.0)
                        : jakarta.management.j2ee-api-1.1.4.jar                          (/home/demo1/.m2/repository/jakarta/management/j2ee/jakarta.management.j2ee-api/1.1.4)
                        : jakarta.xml.bind-api-3.0.1.jar                                 (/home/demo1/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/3.0.1)
                        : jakarta.activation-2.0.1.jar                                   (/home/demo1/.m2/repository/com/sun/activation/jakarta.activation/2.0.1)
                        : jersey-common-3.0.5.jar                                        (/home/demo1/.m2/repository/org/glassfish/jersey/core/jersey-common/3.0.5)
                        : jakarta.annotation-api-2.0.0.jar                               (/home/demo1/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.0.0)
                        : jakarta.inject-api-2.0.1.jar                                   (/home/demo1/.m2/repository/jakarta/inject/jakarta.inject-api/2.0.1)
                        : osgi-resource-locator-1.0.3.jar                                (/home/demo1/.m2/repository/org/glassfish/hk2/osgi-resource-locator/1.0.3)
                        : jersey-server-3.0.5.jar                                        (/home/demo1/.m2/repository/org/glassfish/jersey/core/jersey-server/3.0.5)
                        : jersey-client-3.0.5.jar                                        (/home/demo1/.m2/repository/org/glassfish/jersey/core/jersey-client/3.0.5)
                        : jakarta.validation-api-3.0.0.jar                               (/home/demo1/.m2/repository/jakarta/validation/jakarta.validation-api/3.0.0)
                        : jersey-hk2-3.0.5.jar                                           (/home/demo1/.m2/repository/org/glassfish/jersey/inject/jersey-hk2/3.0.5)
                        : hk2-locator-3.0.3.jar                                          (/home/demo1/.m2/repository/org/glassfish/hk2/hk2-locator/3.0.3)
                        : aopalliance-repackaged-3.0.3.jar                               (/home/demo1/.m2/repository/org/glassfish/hk2/external/aopalliance-repackaged/3.0.3)
                        : hk2-api-3.0.3.jar                                              (/home/demo1/.m2/repository/org/glassfish/hk2/hk2-api/3.0.3)
                        : hk2-utils-3.0.3.jar                                            (/home/demo1/.m2/repository/org/glassfish/hk2/hk2-utils/3.0.3)
                        : javassist-3.28.0-GA.jar                                        (/home/demo1/.m2/repository/org/javassist/javassist/3.28.0-GA)
                        : jersey-media-multipart-3.0.5.jar                               (/home/demo1/.m2/repository/org/glassfish/jersey/media/jersey-media-multipart/3.0.5)
                        : mimepull-1.9.13.jar                                            (/home/demo1/.m2/repository/org/jvnet/mimepull/mimepull/1.9.13)
                        : jersey-media-json-jackson-3.0.5.jar                            (/home/demo1/.m2/repository/org/glassfish/jersey/media/jersey-media-json-jackson/3.0.5)
                        : jersey-entity-filtering-3.0.5.jar                              (/home/demo1/.m2/repository/org/glassfish/jersey/ext/jersey-entity-filtering/3.0.5)
                        : jersey-media-sse-3.0.5.jar                                     (/home/demo1/.m2/repository/org/glassfish/jersey/media/jersey-media-sse/3.0.5)
                        : jersey-container-servlet-3.0.5.jar                             (/home/demo1/.m2/repository/org/glassfish/jersey/containers/jersey-container-servlet/3.0.5)
                        : jersey-container-servlet-core-3.0.5.jar                        (/home/demo1/.m2/repository/org/glassfish/jersey/containers/jersey-container-servlet-core/3.0.5)
                        : opentracing-jdbc-0.2.10.jar                                    (/home/demo1/.m2/repository/io/opentracing/contrib/opentracing-jdbc/0.2.10)
                        : opentracing-util-0.33.0.jar                                    (/home/demo1/.m2/repository/io/opentracing/opentracing-util/0.33.0)
                        : opentracing-noop-0.33.0.jar                                    (/home/demo1/.m2/repository/io/opentracing/opentracing-noop/0.33.0)
                        : common-0.1.4.jar                                               (/home/demo1/.m2/repository/io/opentracing/contrib/common/0.1.4)
                        : netty-all-4.1.86.Final.jar                                     (/home/demo1/.m2/repository/io/netty/netty-all/4.1.86.Final)
                        : netty-buffer-4.1.86.Final.jar                                  (/home/demo1/.m2/repository/io/netty/netty-buffer/4.1.86.Final)
                        : netty-codec-4.1.86.Final.jar                                   (/home/demo1/.m2/repository/io/netty/netty-codec/4.1.86.Final)
                        : netty-codec-dns-4.1.86.Final.jar                               (/home/demo1/.m2/repository/io/netty/netty-codec-dns/4.1.86.Final)
                        : netty-codec-haproxy-4.1.86.Final.jar                           (/home/demo1/.m2/repository/io/netty/netty-codec-haproxy/4.1.86.Final)
                        : netty-codec-http2-4.1.86.Final.jar                             (/home/demo1/.m2/repository/io/netty/netty-codec-http2/4.1.86.Final)
                        : netty-codec-memcache-4.1.86.Final.jar                          (/home/demo1/.m2/repository/io/netty/netty-codec-memcache/4.1.86.Final)
                        : netty-codec-mqtt-4.1.86.Final.jar                              (/home/demo1/.m2/repository/io/netty/netty-codec-mqtt/4.1.86.Final)
                        : netty-codec-redis-4.1.86.Final.jar                             (/home/demo1/.m2/repository/io/netty/netty-codec-redis/4.1.86.Final)
                        : netty-codec-smtp-4.1.86.Final.jar                              (/home/demo1/.m2/repository/io/netty/netty-codec-smtp/4.1.86.Final)
                        : netty-codec-socks-4.1.86.Final.jar                             (/home/demo1/.m2/repository/io/netty/netty-codec-socks/4.1.86.Final)
                        : netty-codec-stomp-4.1.86.Final.jar                             (/home/demo1/.m2/repository/io/netty/netty-codec-stomp/4.1.86.Final)
                        : netty-codec-xml-4.1.86.Final.jar                               (/home/demo1/.m2/repository/io/netty/netty-codec-xml/4.1.86.Final)
                        : netty-common-4.1.86.Final.jar                                  (/home/demo1/.m2/repository/io/netty/netty-common/4.1.86.Final)
                        : netty-handler-4.1.86.Final.jar                                 (/home/demo1/.m2/repository/io/netty/netty-handler/4.1.86.Final)
                        : netty-transport-native-unix-common-4.1.86.Final.jar            (/home/demo1/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.86.Final)
                        : netty-handler-proxy-4.1.86.Final.jar                           (/home/demo1/.m2/repository/io/netty/netty-handler-proxy/4.1.86.Final)
                        : netty-handler-ssl-ocsp-4.1.86.Final.jar                        (/home/demo1/.m2/repository/io/netty/netty-handler-ssl-ocsp/4.1.86.Final)
                        : netty-resolver-4.1.86.Final.jar                                (/home/demo1/.m2/repository/io/netty/netty-resolver/4.1.86.Final)
                        : netty-resolver-dns-4.1.86.Final.jar                            (/home/demo1/.m2/repository/io/netty/netty-resolver-dns/4.1.86.Final)
                        : netty-transport-4.1.86.Final.jar                               (/home/demo1/.m2/repository/io/netty/netty-transport/4.1.86.Final)
                        : netty-transport-rxtx-4.1.86.Final.jar                          (/home/demo1/.m2/repository/io/netty/netty-transport-rxtx/4.1.86.Final)
                        : netty-transport-sctp-4.1.86.Final.jar                          (/home/demo1/.m2/repository/io/netty/netty-transport-sctp/4.1.86.Final)
                        : netty-transport-udt-4.1.86.Final.jar                           (/home/demo1/.m2/repository/io/netty/netty-transport-udt/4.1.86.Final)
                        : netty-transport-classes-epoll-4.1.86.Final.jar                 (/home/demo1/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.86.Final)
                        : netty-transport-classes-kqueue-4.1.86.Final.jar                (/home/demo1/.m2/repository/io/netty/netty-transport-classes-kqueue/4.1.86.Final)
                        : netty-resolver-dns-classes-macos-4.1.86.Final.jar              (/home/demo1/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.86.Final)
                        : netty-transport-native-epoll-4.1.86.Final-linux-x86_64.jar     (/home/demo1/.m2/repository/io/netty/netty-transport-native-epoll/4.1.86.Final)
                        : netty-transport-native-epoll-4.1.86.Final-linux-aarch_64.jar   (/home/demo1/.m2/repository/io/netty/netty-transport-native-epoll/4.1.86.Final)
                        : netty-transport-native-kqueue-4.1.86.Final-osx-x86_64.jar      (/home/demo1/.m2/repository/io/netty/netty-transport-native-kqueue/4.1.86.Final)
                        : netty-transport-native-kqueue-4.1.86.Final-osx-aarch_64.jar    (/home/demo1/.m2/repository/io/netty/netty-transport-native-kqueue/4.1.86.Final)
                        : netty-resolver-dns-native-macos-4.1.86.Final-osx-x86_64.jar    (/home/demo1/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.86.Final)
                        : netty-resolver-dns-native-macos-4.1.86.Final-osx-aarch_64.jar  (/home/demo1/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.86.Final)
Environment Variables   : (based on parent process)
Java Executable         : /home/demo1/jdk-17.0.7/bin/java
Java Home               : /home/demo1/jdk-17.0.7
Java Options            : -Xmx512m -Xms512m -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=127.0.0.1:30002
Standard Error Device   : stderr
System Properties       : JAEGER_ENDPOINT                 http://localhost:14268/api/traces
                        : JAEGER_SERVICE_NAME             Coherence Demo (New York)
                        : bedrock.runtime.orphanable      false
                        : bedrock.runtime.parent          //127.0.0.1:44441
                        : coherence.management            all
                        : coherence.management.http       none
                        : coherence.ttl                   0
                        : coherence.wka                   127.0.0.1
                        : java.awt.headless               true
                        : java.net.preferIPv4Stack        true
                        : primary.cluster                 New York
                        : secondary.cluster               San Francisco
                        : tangosol.coherence.cacheconfig  cache-config.xml
                        : tangosol.coherence.cluster      New York
                        : tangosol.coherence.clusterport  7574
                        : tangosol.coherence.log.level    0
                        : tangosol.coherence.role         CoherenceDemoServerEven
                        : with.http                       false
Target Platform         : Local
Working Directory       : /home/demo1/coherence-demo
------------------------------------------------------------------------
 
2023-06-02 01:46:01.380/256.408 Oracle Coherence CE 23.03 <Info> (thread=Proxy:$SYS:HealthHttpProxy, member=1): Member 3 joined Service $SYS:HealthHttpProxy with senior member 1
[Coherence Demo Server:out:18677]    1: Listening for transport dt_socket at address: 30002
2023-06-02 01:46:01.540/256.567 Oracle Coherence CE 23.03 <Info> (thread=Proxy:$SYS:SystemProxy, member=1): Member 3 joined Service $SYS:SystemProxy with senior member 1
2023-06-02 01:46:01.968/256.996 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{45..53} to member 2 requesting 83; transfer threshold exceeded
2023-06-02 01:46:02.133/257.160 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=32for PartitionSet{0128..171}
2023-06-02 01:46:02.133/257.160 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=23for PartitionSet{42..82}
2023-06-02 01:46:02.133/257.160 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=13for PartitionSet{172..215}
2023-06-02 01:46:02.133/257.161 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=31for PartitionSet{1..41}
2023-06-02 01:46:02.142/257.170 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Transferring 44B of backup[1for PartitionSet{172..215} to member 3; transfer threshold exceeded
2023-06-02 01:46:02.404/257.432 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Transferring primary PartitionSet{128..171} to member 3 requesting 44
2023-06-02 01:46:02.782/257.809 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Partition ownership has stabilized with 3 nodes
2023-06-02 01:46:03.033/258.061 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{54..62} to member 2 requesting 74; transfer threshold exceeded
2023-06-02 01:46:03.034/258.061 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Member 3 joined Service DistributedCache with senior member 1
2023-06-02 01:46:03.103/258.131 Oracle Coherence CE 23.03 <Info> (thread=Invocation:InvocationService, member=1): Member 3 joined Service InvocationService with senior member 1
2023-06-02 01:46:05.293/260.321 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{63..71} to member 2 requesting 65; transfer threshold exceeded
2023-06-02 01:46:05.480/260.507 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{72..80} to member 2 requesting 56; transfer threshold exceeded
[Coherence Demo Server:err:18677]    1:
[Coherence Demo Server:err:18677]    2: Oracle Coherence Version 23.03 Build 99661
[Coherence Demo Server:err:18677]    3:  Community Edition: Development mode
[Coherence Demo Server:err:18677]    4: Copyright (c) 20002023, Oracle and/or its affiliates. All rights reserved.
[Coherence Demo Server:err:18677]    5:
2023-06-02 01:46:07.661/262.688 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{81..89} to member 2 requesting 47; transfer threshold exceeded
[Coherence Demo Server:out:18677]    2: [EL Info]: 2023-06-02 01:46:07.724--ServerSession(1512254371)--EclipseLink, version: Eclipse Persistence Services - 3.0.2.v202107160933
2023-06-02 01:46:09.592/264.620 Oracle Coherence CE 23.03 <Info> (thread=Cluster, member=1): Member(Id=4, Timestamp=2023-06-02 01:46:09.392, Address=127.0.0.1:36629, MachineId=10131, Location=machine:localhost,process:19810, Role=CoherenceDemoServerEven) joined Cluster with senior member 1
2023-06-02 01:46:09.592/264.620 Oracle Coherence CE 23.03 <Info> (thread=Cluster, member=1): TcpRing disconnected from Member(Id=3, Timestamp=2023-06-02 01:45:59.041, Address=127.0.0.1:37531, MachineId=10131, Location=machine:localhost,process:19635, Role=CoherenceDemoServerOdd) to maintain ring
2023-06-02 01:46:09.593/264.621 Oracle Coherence CE 23.03 <D6> (thread=Cluster, member=1): TcpRing connected to Member(Id=4, Timestamp=2023-06-02 01:46:09.392, Address=127.0.0.1:36629, MachineId=10131, Location=machine:localhost,process:19810, Role=CoherenceDemoServerEven)
2023-06-02 01:46:09.602/264.629 Oracle Coherence CE 23.03 <D6> (thread=Cluster, member=1): TcpRing connected to Member(Id=4, Timestamp=2023-06-02 01:46:09.392, Address=127.0.0.1:36629, MachineId=10131, Location=machine:localhost,process:19810, Role=CoherenceDemoServerEven)
2023-06-02 01:46:09.784/264.812 Oracle Coherence CE 23.03 <D6> (thread=Transport:TransportService, member=1): tmb://127.0.0.1:38289.44206 opening connection with tmb://127.0.0.1:36629.56094 using MultiplexedSocket{Socket[addr=/127.0.0.1,port=36629,localport=37548]}
2023-06-02 01:46:09.784/264.812 Oracle Coherence CE 23.03 <D6> (thread=Transport:TransportService, member=1): Registered Connection {Peer=tmb://127.0.0.1:36629.56094, Service=TransportService, Member=4, Not established, State=CONNECTING, peer=tmb://127.0.0.1:36629.56094, state=OPEN, socket=MultiplexedSocket{Socket[addr=/127.0.0.1,port=36629,localport=37548]}, bytes(in=0, out=0), flushlock false, bufferedOut=0B, unflushed=0B, delivered(in=0, out=0), timeout(n/a), interestOps=0, unflushed receipt=0, receiptReturn 0, isReceiptFlushRequired false, bufferedIn(), msgs(in=0, out=0/0)}
2023-06-02 01:46:09.796/264.824 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=8, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 processing NEGOTIATE handshake for tmb://127.0.0.1:36629.56094 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=36629,localport=37548]}
2023-06-02 01:46:09.796/264.824 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=8, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 handshaking with /127.0.0.1 using protocol 1,522,655,233 version 5
2023-06-02 01:46:09.798/264.825 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=8, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 waiting for INTRODUCE handshake for tmb://127.0.0.1:36629.56094 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=36629,localport=37548]} with interest 5, 71B to read, 71B to write
2023-06-02 01:46:09.816/264.844 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=8, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 processing INTRODUCE handshake for tmb://127.0.0.1:36629.56094 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=36629,localport=37548]}
2023-06-02 01:46:09.817/264.844 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=8, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 waiting for ACCEPT handshake for tmb://127.0.0.1:36629.56094 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=36629,localport=37548]} with interest 5, 1B to read, 1B to write
2023-06-02 01:46:09.817/264.844 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=8, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 processing ACCEPT handshake for tmb://127.0.0.1:36629.56094 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=36629,localport=37548]}
2023-06-02 01:46:09.931/264.959 Oracle Coherence CE 23.03 <Info> (thread=SelectionService(channels=8, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): Connection established with tmb://127.0.0.1:36629.56094
2023-06-02 01:46:09.948/264.975 Oracle Coherence CE 23.03 <Info> (thread=Transport:TransportService, member=1): Member 4 joined Service TransportService with senior member 1
2023-06-02 01:46:10.011/265.038 Oracle Coherence CE 23.03 <Info> (thread=Invocation:Management, member=1): Member 4 joined Service Management with senior member 1
2023-06-02 01:46:10.060/265.087 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{90..98} to member 2 requesting 38; transfer threshold exceeded
2023-06-02 01:46:10.202/265.229 Oracle Coherence CE 23.03 <Info> (thread=jersey-server-managed-async-executor-1, member=1): Starting server 4 of 4
2023-06-02 01:46:10.410/265.437 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{99..107} to member 2 requesting 29; transfer threshold exceeded
2023-06-02 01:46:10.467/265.495 Oracle Coherence CE 23.03 <D5> (thread=Invocation:Management, member=1): Health: StatusHA check failed. Service DistributedCache has HA status of ENDANGERED, suspended=false, members=memberCount=3 members=[123]
Jun 022023 1:46:10 AM com.oracle.bedrock.runtime.java.LocalJavaApplicationLauncher launch
INFO: Oracle Bedrock 6.0.1: Starting Application...
------------------------------------------------------------------------
Application             : Coherence Demo Server
Application Class       : com.tangosol.net.Coherence
Application Launch Time : 2023-06-02 01:46:10
Application Launcher    : com.oracle.bedrock.runtime.java.JavaApplicationRunner
Class Path              : classes                                                        (/home/demo1/coherence-demo/target)
                        : coherence-23.03.jar                                            (/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence/23.03)
                        : coherence-management-23.03.jar                                 (/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence-management/23.03)
                        : coherence-json-23.03.jar                                       (/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence-json/23.03)
                        : jakarta.json.bind-api-2.0.0.jar                                (/home/demo1/.m2/repository/jakarta/json/bind/jakarta.json.bind-api/2.0.0)
                        : jakarta.json-api-2.0.2.jar                                     (/home/demo1/.m2/repository/jakarta/json/jakarta.json-api/2.0.2)
                        : coherence-http-netty-23.03.jar                                 (/home/demo1/.m2/repository/com/oracle/coherence/ce/coherence-http-netty/23.03)
                        : netty-codec-http-4.1.86.Final.jar                              (/home/demo1/.m2/repository/io/netty/netty-codec-http/4.1.86.Final)
                        : coherence-12.2.1-6.0.1.jar                                     (/home/demo1/.m2/repository/com/oracle/bedrock/coherence/coherence-12.2.1/6.0.1)
                        : bedrock-runtime-6.0.1.jar                                      (/home/demo1/.m2/repository/com/oracle/bedrock/bedrock-runtime/6.0.1)
                        : bedrock-core-6.0.1.jar                                         (/home/demo1/.m2/repository/com/oracle/bedrock/bedrock-core/6.0.1)
                        : jakarta.el-api-5.0.0-RC1.jar                                   (/home/demo1/.m2/repository/jakarta/el/jakarta.el-api/5.0.0-RC1)
                        : jakarta.el-5.0.0-M1.jar                                        (/home/demo1/.m2/repository/org/glassfish/jakarta.el/5.0.0-M1)
                        : mockito-core-4.4.0.jar                                         (/home/demo1/.m2/repository/org/mockito/mockito-core/4.4.0)
                        : byte-buddy-1.12.8.jar                                          (/home/demo1/.m2/repository/net/bytebuddy/byte-buddy/1.12.8)
                        : byte-buddy-agent-1.12.8.jar                                    (/home/demo1/.m2/repository/net/bytebuddy/byte-buddy-agent/1.12.8)
                        : objenesis-3.2.jar                                              (/home/demo1/.m2/repository/org/objenesis/objenesis/3.2)
                        : bedrock-runtime-remote-6.0.1.jar                               (/home/demo1/.m2/repository/com/oracle/bedrock/bedrock-runtime-remote/6.0.1)
                        : jsch-0.1.55.jar                                                (/home/demo1/.m2/repository/com/jcraft/jsch/0.1.55)
                        : derby-10.15.2.0.jar                                            (/home/demo1/.m2/repository/org/apache/derby/derby/10.15.2.0)
                        : derbyshared-10.15.2.0.jar                                      (/home/demo1/.m2/repository/org/apache/derby/derbyshared/10.15.2.0)
                        : derbyclient-10.15.2.0.jar                                      (/home/demo1/.m2/repository/org/apache/derby/derbyclient/10.15.2.0)
                        : eclipselink-3.0.2.jar                                          (/home/demo1/.m2/repository/org/eclipse/persistence/eclipselink/3.0.2)
                        : jakarta.persistence-api-3.0.0.jar                              (/home/demo1/.m2/repository/jakarta/persistence/jakarta.persistence-api/3.0.0)
                        : jackson-annotations-2.14.1.jar                                 (/home/demo1/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.14.1)
                        : jackson-core-2.14.1.jar                                        (/home/demo1/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.14.1)
                        : jackson-databind-2.14.1.jar                                    (/home/demo1/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.14.1)
                        : jackson-jakarta-rs-json-provider-2.14.1.jar                    (/home/demo1/.m2/repository/com/fasterxml/jackson/jakarta/rs/jackson-jakarta-rs-json-provider/2.14.1)
                        : jackson-jakarta-rs-base-2.14.1.jar                             (/home/demo1/.m2/repository/com/fasterxml/jackson/jakarta/rs/jackson-jakarta-rs-base/2.14.1)
                        : jackson-module-jakarta-xmlbind-annotations-2.14.1.jar          (/home/demo1/.m2/repository/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.14.1)
                        : jakarta.activation-api-2.1.0.jar                               (/home/demo1/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.0)
                        : jaeger-client-1.8.1.jar                                        (/home/demo1/.m2/repository/io/jaegertracing/jaeger-client/1.8.1)
                        : jaeger-thrift-1.8.1.jar                                        (/home/demo1/.m2/repository/io/jaegertracing/jaeger-thrift/1.8.1)
                        : slf4j-api-1.7.28.jar                                           (/home/demo1/.m2/repository/org/slf4j/slf4j-api/1.7.28)
                        : libthrift-0.15.0.jar                                           (/home/demo1/.m2/repository/org/apache/thrift/libthrift/0.15.0)
                        : javax.annotation-api-1.3.2.jar                                 (/home/demo1/.m2/repository/javax/annotation/javax.annotation-api/1.3.2)
                        : okhttp-4.9.3.jar                                               (/home/demo1/.m2/repository/com/squareup/okhttp3/okhttp/4.9.3)
                        : okio-2.8.0.jar                                                 (/home/demo1/.m2/repository/com/squareup/okio/okio/2.8.0)
                        : jaeger-core-1.8.1.jar                                          (/home/demo1/.m2/repository/io/jaegertracing/jaeger-core/1.8.1)
                        : opentracing-api-0.33.0.jar                                     (/home/demo1/.m2/repository/io/opentracing/opentracing-api/0.33.0)
                        : gson-2.9.0.jar                                                 (/home/demo1/.m2/repository/com/google/code/gson/gson/2.9.0)
                        : jaeger-tracerresolver-1.8.1.jar                                (/home/demo1/.m2/repository/io/jaegertracing/jaeger-tracerresolver/1.8.1)
                        : opentracing-tracerresolver-0.1.8.jar                           (/home/demo1/.m2/repository/io/opentracing/contrib/opentracing-tracerresolver/0.1.8)
                        : kotlin-stdlib-common-1.8.20.jar                                (/home/demo1/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.8.20)
                        : kotlin-stdlib-1.8.20.jar                                       (/home/demo1/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.8.20)
                        : annotations-13.0.jar                                           (/home/demo1/.m2/repository/org/jetbrains/annotations/13.0)
                        : jakarta.ws.rs-api-3.0.0.jar                                    (/home/demo1/.m2/repository/jakarta/ws/rs/jakarta.ws.rs-api/3.0.0)
                        : jakarta.management.j2ee-api-1.1.4.jar                          (/home/demo1/.m2/repository/jakarta/management/j2ee/jakarta.management.j2ee-api/1.1.4)
                        : jakarta.xml.bind-api-3.0.1.jar                                 (/home/demo1/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/3.0.1)
                        : jakarta.activation-2.0.1.jar                                   (/home/demo1/.m2/repository/com/sun/activation/jakarta.activation/2.0.1)
                        : jersey-common-3.0.5.jar                                        (/home/demo1/.m2/repository/org/glassfish/jersey/core/jersey-common/3.0.5)
                        : jakarta.annotation-api-2.0.0.jar                               (/home/demo1/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.0.0)
                        : jakarta.inject-api-2.0.1.jar                                   (/home/demo1/.m2/repository/jakarta/inject/jakarta.inject-api/2.0.1)
                        : osgi-resource-locator-1.0.3.jar                                (/home/demo1/.m2/repository/org/glassfish/hk2/osgi-resource-locator/1.0.3)
                        : jersey-server-3.0.5.jar                                        (/home/demo1/.m2/repository/org/glassfish/jersey/core/jersey-server/3.0.5)
                        : jersey-client-3.0.5.jar                                        (/home/demo1/.m2/repository/org/glassfish/jersey/core/jersey-client/3.0.5)
                        : jakarta.validation-api-3.0.0.jar                               (/home/demo1/.m2/repository/jakarta/validation/jakarta.validation-api/3.0.0)
                        : jersey-hk2-3.0.5.jar                                           (/home/demo1/.m2/repository/org/glassfish/jersey/inject/jersey-hk2/3.0.5)
                        : hk2-locator-3.0.3.jar                                          (/home/demo1/.m2/repository/org/glassfish/hk2/hk2-locator/3.0.3)
                        : aopalliance-repackaged-3.0.3.jar                               (/home/demo1/.m2/repository/org/glassfish/hk2/external/aopalliance-repackaged/3.0.3)
                        : hk2-api-3.0.3.jar                                              (/home/demo1/.m2/repository/org/glassfish/hk2/hk2-api/3.0.3)
                        : hk2-utils-3.0.3.jar                                            (/home/demo1/.m2/repository/org/glassfish/hk2/hk2-utils/3.0.3)
                        : javassist-3.28.0-GA.jar                                        (/home/demo1/.m2/repository/org/javassist/javassist/3.28.0-GA)
                        : jersey-media-multipart-3.0.5.jar                               (/home/demo1/.m2/repository/org/glassfish/jersey/media/jersey-media-multipart/3.0.5)
                        : mimepull-1.9.13.jar                                            (/home/demo1/.m2/repository/org/jvnet/mimepull/mimepull/1.9.13)
                        : jersey-media-json-jackson-3.0.5.jar                            (/home/demo1/.m2/repository/org/glassfish/jersey/media/jersey-media-json-jackson/3.0.5)
                        : jersey-entity-filtering-3.0.5.jar                              (/home/demo1/.m2/repository/org/glassfish/jersey/ext/jersey-entity-filtering/3.0.5)
                        : jersey-media-sse-3.0.5.jar                                     (/home/demo1/.m2/repository/org/glassfish/jersey/media/jersey-media-sse/3.0.5)
                        : jersey-container-servlet-3.0.5.jar                             (/home/demo1/.m2/repository/org/glassfish/jersey/containers/jersey-container-servlet/3.0.5)
                        : jersey-container-servlet-core-3.0.5.jar                        (/home/demo1/.m2/repository/org/glassfish/jersey/containers/jersey-container-servlet-core/3.0.5)
                        : opentracing-jdbc-0.2.10.jar                                    (/home/demo1/.m2/repository/io/opentracing/contrib/opentracing-jdbc/0.2.10)
                        : opentracing-util-0.33.0.jar                                    (/home/demo1/.m2/repository/io/opentracing/opentracing-util/0.33.0)
                        : opentracing-noop-0.33.0.jar                                    (/home/demo1/.m2/repository/io/opentracing/opentracing-noop/0.33.0)
                        : common-0.1.4.jar                                               (/home/demo1/.m2/repository/io/opentracing/contrib/common/0.1.4)
                        : netty-all-4.1.86.Final.jar                                     (/home/demo1/.m2/repository/io/netty/netty-all/4.1.86.Final)
                        : netty-buffer-4.1.86.Final.jar                                  (/home/demo1/.m2/repository/io/netty/netty-buffer/4.1.86.Final)
                        : netty-codec-4.1.86.Final.jar                                   (/home/demo1/.m2/repository/io/netty/netty-codec/4.1.86.Final)
                        : netty-codec-dns-4.1.86.Final.jar                               (/home/demo1/.m2/repository/io/netty/netty-codec-dns/4.1.86.Final)
                        : netty-codec-haproxy-4.1.86.Final.jar                           (/home/demo1/.m2/repository/io/netty/netty-codec-haproxy/4.1.86.Final)
                        : netty-codec-http2-4.1.86.Final.jar                             (/home/demo1/.m2/repository/io/netty/netty-codec-http2/4.1.86.Final)
                        : netty-codec-memcache-4.1.86.Final.jar                          (/home/demo1/.m2/repository/io/netty/netty-codec-memcache/4.1.86.Final)
                        : netty-codec-mqtt-4.1.86.Final.jar                              (/home/demo1/.m2/repository/io/netty/netty-codec-mqtt/4.1.86.Final)
                        : netty-codec-redis-4.1.86.Final.jar                             (/home/demo1/.m2/repository/io/netty/netty-codec-redis/4.1.86.Final)
                        : netty-codec-smtp-4.1.86.Final.jar                              (/home/demo1/.m2/repository/io/netty/netty-codec-smtp/4.1.86.Final)
                        : netty-codec-socks-4.1.86.Final.jar                             (/home/demo1/.m2/repository/io/netty/netty-codec-socks/4.1.86.Final)
                        : netty-codec-stomp-4.1.86.Final.jar                             (/home/demo1/.m2/repository/io/netty/netty-codec-stomp/4.1.86.Final)
                        : netty-codec-xml-4.1.86.Final.jar                               (/home/demo1/.m2/repository/io/netty/netty-codec-xml/4.1.86.Final)
                        : netty-common-4.1.86.Final.jar                                  (/home/demo1/.m2/repository/io/netty/netty-common/4.1.86.Final)
                        : netty-handler-4.1.86.Final.jar                                 (/home/demo1/.m2/repository/io/netty/netty-handler/4.1.86.Final)
                        : netty-transport-native-unix-common-4.1.86.Final.jar            (/home/demo1/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.86.Final)
                        : netty-handler-proxy-4.1.86.Final.jar                           (/home/demo1/.m2/repository/io/netty/netty-handler-proxy/4.1.86.Final)
                        : netty-handler-ssl-ocsp-4.1.86.Final.jar                        (/home/demo1/.m2/repository/io/netty/netty-handler-ssl-ocsp/4.1.86.Final)
                        : netty-resolver-4.1.86.Final.jar                                (/home/demo1/.m2/repository/io/netty/netty-resolver/4.1.86.Final)
                        : netty-resolver-dns-4.1.86.Final.jar                            (/home/demo1/.m2/repository/io/netty/netty-resolver-dns/4.1.86.Final)
                        : netty-transport-4.1.86.Final.jar                               (/home/demo1/.m2/repository/io/netty/netty-transport/4.1.86.Final)
                        : netty-transport-rxtx-4.1.86.Final.jar                          (/home/demo1/.m2/repository/io/netty/netty-transport-rxtx/4.1.86.Final)
                        : netty-transport-sctp-4.1.86.Final.jar                          (/home/demo1/.m2/repository/io/netty/netty-transport-sctp/4.1.86.Final)
                        : netty-transport-udt-4.1.86.Final.jar                           (/home/demo1/.m2/repository/io/netty/netty-transport-udt/4.1.86.Final)
                        : netty-transport-classes-epoll-4.1.86.Final.jar                 (/home/demo1/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.86.Final)
                        : netty-transport-classes-kqueue-4.1.86.Final.jar                (/home/demo1/.m2/repository/io/netty/netty-transport-classes-kqueue/4.1.86.Final)
                        : netty-resolver-dns-classes-macos-4.1.86.Final.jar              (/home/demo1/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.86.Final)
                        : netty-transport-native-epoll-4.1.86.Final-linux-x86_64.jar     (/home/demo1/.m2/repository/io/netty/netty-transport-native-epoll/4.1.86.Final)
                        : netty-transport-native-epoll-4.1.86.Final-linux-aarch_64.jar   (/home/demo1/.m2/repository/io/netty/netty-transport-native-epoll/4.1.86.Final)
                        : netty-transport-native-kqueue-4.1.86.Final-osx-x86_64.jar      (/home/demo1/.m2/repository/io/netty/netty-transport-native-kqueue/4.1.86.Final)
                        : netty-transport-native-kqueue-4.1.86.Final-osx-aarch_64.jar    (/home/demo1/.m2/repository/io/netty/netty-transport-native-kqueue/4.1.86.Final)
                        : netty-resolver-dns-native-macos-4.1.86.Final-osx-x86_64.jar    (/home/demo1/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.86.Final)
                        : netty-resolver-dns-native-macos-4.1.86.Final-osx-aarch_64.jar  (/home/demo1/.m2/repository/io/netty/netty-resolver-dns-native-macos/4.1.86.Final)
Environment Variables   : (based on parent process)
Java Executable         : /home/demo1/jdk-17.0.7/bin/java
Java Home               : /home/demo1/jdk-17.0.7
Java Options            : -Xmx512m -Xms512m -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=127.0.0.1:30003
Standard Error Device   : stderr
System Properties       : JAEGER_ENDPOINT                 http://localhost:14268/api/traces
                        : JAEGER_SERVICE_NAME             Coherence Demo (New York)
                        : bedrock.runtime.orphanable      false
                        : bedrock.runtime.parent          //127.0.0.1:42785
                        : coherence.management            all
                        : coherence.management.http       none
                        : coherence.ttl                   0
                        : coherence.wka                   127.0.0.1
                        : java.awt.headless               true
                        : java.net.preferIPv4Stack        true
                        : primary.cluster                 New York
                        : secondary.cluster               San Francisco
                        : tangosol.coherence.cacheconfig  cache-config.xml
                        : tangosol.coherence.cluster      New York
                        : tangosol.coherence.clusterport  7574
                        : tangosol.coherence.log.level    0
                        : tangosol.coherence.role         CoherenceDemoServerOdd
                        : with.http                       false
Target Platform         : Local
Working Directory       : /home/demo1/coherence-demo
------------------------------------------------------------------------
 
[Coherence Demo Server:out:18677]    1: Listening for transport dt_socket at address: 30003
2023-06-02 01:46:11.517/266.544 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Member 4 joined Service $SYS:Config with senior member 1
2023-06-02 01:46:11.862/266.890 Oracle Coherence CE 23.03 <Info> (thread=Proxy:$SYS:HealthHttpProxy, member=1): Member 4 joined Service $SYS:HealthHttpProxy with senior member 1
2023-06-02 01:46:12.075/267.102 Oracle Coherence CE 23.03 <Info> (thread=Proxy:$SYS:SystemProxy, member=1): Member 4 joined Service $SYS:SystemProxy with senior member 1
2023-06-02 01:46:12.508/267.535 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=43for PartitionSet{43..63172..191}
2023-06-02 01:46:12.508/267.535 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=34for PartitionSet{22..41128..148}
2023-06-02 01:46:12.508/267.535 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=24for PartitionSet{64..85}
2023-06-02 01:46:12.508/267.535 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=14for PartitionSet{192}
2023-06-02 01:46:12.508/267.535 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=41for PartitionSet{0..21}
2023-06-02 01:46:12.508/267.535 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=42for PartitionSet{42}
2023-06-02 01:46:12.508/267.536 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Transferring 1B of backup[1for PartitionSet{192} to member 4; transfer threshold exceeded
2023-06-02 01:46:12.694/267.721 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{108..116} to member 2 requesting 20; transfer threshold exceeded
2023-06-02 01:46:12.840/267.868 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Transferring primary PartitionSet{172..191} to member 4 requesting 20
2023-06-02 01:46:13.141/268.168 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Partition ownership has stabilized with 4 nodes
2023-06-02 01:46:13.836/268.863 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{117..125} to member 2 requesting 11; transfer threshold exceeded
2023-06-02 01:46:13.838/268.865 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Member 4 joined Service DistributedCache with senior member 1
2023-06-02 01:46:13.901/268.929 Oracle Coherence CE 23.03 <Info> (thread=Invocation:InvocationService, member=1): Member 4 joined Service InvocationService with senior member 1
2023-06-02 01:46:14.069/269.096 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{126127} to member 2 requesting 2
2023-06-02 01:46:15.039/270.066 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=43for PartitionSet{02468101214161820222426283032343638404244464850525456586062129131133135137139141143145147149151153155157159161163165167169171173175177179181183185187189191}
2023-06-02 01:46:15.039/270.067 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=34for PartitionSet{135791113151719212325272931333537394143454749515355575961128130132134136138140142144146148150152154156158160162164166168170172174176178180182184186188190192}
2023-06-02 01:46:15.082/270.109 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{129131133135137139141143145} to member 4 requesting 32; transfer threshold exceeded
2023-06-02 01:46:15.372/270.399 Oracle Coherence CE 23.03 <Info> (thread=jersey-server-managed-async-executor-0, member=1): Repeating SizeRequest due to the re-distribution of PartitionSet{1357911131517129131133135137139141143145}
2023-06-02 01:46:15.574/270.602 Oracle Coherence CE 23.03 <Info> (thread=jersey-server-managed-async-executor-0, member=1): Repeating SizeRequest due to the re-distribution of PartitionSet{1357911131517129131133135137139141143145}
2023-06-02 01:46:16.324/271.352 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{128130132134136138140142144} to member 3 requesting 33; transfer threshold exceeded
2023-06-02 01:46:16.651/271.678 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{146148150152154156158160162} to member 3 requesting 24; transfer threshold exceeded
2023-06-02 01:46:16.731/271.758 Oracle Coherence CE 23.03 <Info> (thread=jersey-server-managed-async-executor-0, member=1): Repeating SizeRequest due to the re-distribution of PartitionSet{129131133135137139141143145}
2023-06-02 01:46:16.896/271.923 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{164166168170172174176178180} to member 3 requesting 15; transfer threshold exceeded
2023-06-02 01:46:17.212/272.239 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{182184186188190192} to member 3 requesting 6
[Coherence Demo Server:err:18677]    1:
[Coherence Demo Server:err:18677]    2: Oracle Coherence Version 23.03 Build 99661
[Coherence Demo Server:err:18677]    3:  Community Edition: Development mode
[Coherence Demo Server:err:18677]    4: Copyright (c) 20002023, Oracle and/or its affiliates. All rights reserved.
[Coherence Demo Server:err:18677]    5:
2023-06-02 01:46:18.133/273.160 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{147149151153155157159161163} to member 4 requesting 23; transfer threshold exceeded
2023-06-02 01:46:20.537/275.565 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{165167169171173175177179181} to member 4 requesting 14; transfer threshold exceeded
2023-06-02 01:46:20.744/275.772 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{183185187189191} to member 4 requesting 5
2023-06-02 01:46:23.970/278.997 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Partition ownership has stabilized with 4 nodes
2023-06-02 01:46:24.069/279.096 Oracle Coherence CE 23.03 <Info> (thread=Cluster, member=1): Member(Id=5, Timestamp=2023-06-02 01:46:23.868, Address=127.0.0.1:40539, MachineId=10131, Location=machine:localhost,process:19882, Role=CoherenceDemoServerOdd) joined Cluster with senior member 1
2023-06-02 01:46:24.069/279.096 Oracle Coherence CE 23.03 <Info> (thread=Cluster, member=1): TcpRing disconnected from Member(Id=4, Timestamp=2023-06-02 01:46:09.392, Address=127.0.0.1:36629, MachineId=10131, Location=machine:localhost,process:19810, Role=CoherenceDemoServerEven) to maintain ring
2023-06-02 01:46:24.069/279.097 Oracle Coherence CE 23.03 <D6> (thread=Cluster, member=1): TcpRing connected to Member(Id=5, Timestamp=2023-06-02 01:46:23.868, Address=127.0.0.1:40539, MachineId=10131, Location=machine:localhost,process:19882, Role=CoherenceDemoServerOdd)
2023-06-02 01:46:24.070/279.097 Oracle Coherence CE 23.03 <D6> (thread=Cluster, member=1): TcpRing connected to Member(Id=5, Timestamp=2023-06-02 01:46:23.868, Address=127.0.0.1:40539, MachineId=10131, Location=machine:localhost,process:19882, Role=CoherenceDemoServerOdd)
2023-06-02 01:46:24.438/279.466 Oracle Coherence CE 23.03 <D6> (thread=Transport:TransportService, member=1): tmb://127.0.0.1:38289.44206 opening connection with tmb://127.0.0.1:40539.41368 using MultiplexedSocket{Socket[addr=/127.0.0.1,port=40539,localport=57052]}
2023-06-02 01:46:24.439/279.466 Oracle Coherence CE 23.03 <D6> (thread=Transport:TransportService, member=1): Registered Connection {Peer=tmb://127.0.0.1:40539.41368, Service=TransportService, Member=5, Not established, State=CONNECTING, peer=tmb://127.0.0.1:40539.41368, state=OPEN, socket=MultiplexedSocket{Socket[addr=/127.0.0.1,port=40539,localport=57052]}, bytes(in=0, out=0), flushlock false, bufferedOut=0B, unflushed=0B, delivered(in=0, out=0), timeout(n/a), interestOps=0, unflushed receipt=0, receiptReturn 0, isReceiptFlushRequired false, bufferedIn(), msgs(in=0, out=0/0)}
2023-06-02 01:46:24.442/279.470 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=9, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 processing NEGOTIATE handshake for tmb://127.0.0.1:40539.41368 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=40539,localport=57052]}
2023-06-02 01:46:24.443/279.470 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=9, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 handshaking with /127.0.0.1 using protocol 1,522,655,233 version 5
2023-06-02 01:46:24.443/279.471 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=9, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 waiting for INTRODUCE handshake for tmb://127.0.0.1:40539.41368 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=40539,localport=57052]} with interest 5, 71B to read, 71B to write
2023-06-02 01:46:24.450/279.478 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=9, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 processing INTRODUCE handshake for tmb://127.0.0.1:40539.41368 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=40539,localport=57052]}
2023-06-02 01:46:24.451/279.478 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=9, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 waiting for ACCEPT handshake for tmb://127.0.0.1:40539.41368 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=40539,localport=57052]} with interest 5, 1B to read, 1B to write
2023-06-02 01:46:24.451/279.478 Oracle Coherence CE 23.03 <D7> (thread=SelectionService(channels=9, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): tmb://127.0.0.1:38289.44206 processing ACCEPT handshake for tmb://127.0.0.1:40539.41368 on MultiplexedSocket{Socket[addr=/127.0.0.1,port=40539,localport=57052]}
2023-06-02 01:46:24.551/279.578 Oracle Coherence CE 23.03 <Info> (thread=SelectionService(channels=9, selector=MultiplexedSelector(sun.nio.ch.EPollSelectorImpl@380b3c7a), id=480785409), member=1): Connection established with tmb://127.0.0.1:40539.41368
2023-06-02 01:46:24.568/279.595 Oracle Coherence CE 23.03 <Info> (thread=Transport:TransportService, member=1): Member 5 joined Service TransportService with senior member 1
2023-06-02 01:46:24.616/279.644 Oracle Coherence CE 23.03 <Info> (thread=Invocation:Management, member=1): Member 5 joined Service Management with senior member 1
2023-06-02 01:46:26.151/281.178 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Member 5 joined Service $SYS:Config with senior member 1
2023-06-02 01:46:26.447/281.474 Oracle Coherence CE 23.03 <Info> (thread=Proxy:$SYS:HealthHttpProxy, member=1): Member 5 joined Service $SYS:HealthHttpProxy with senior member 1
2023-06-02 01:46:26.592/281.619 Oracle Coherence CE 23.03 <Info> (thread=Proxy:$SYS:SystemProxy, member=1): Member 5 joined Service $SYS:SystemProxy with senior member 1
2023-06-02 01:46:27.139/282.167 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=54for PartitionSet{24..3464..76192}
2023-06-02 01:46:27.140/282.167 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=45for PartitionSet{12..2142..55}
2023-06-02 01:46:27.140/282.167 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=35for PartitionSet{35..41149..161}
2023-06-02 01:46:27.140/282.168 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=25for PartitionSet{1177..808687}
2023-06-02 01:46:27.140/282.168 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=51for PartitionSet{1..1022}
2023-06-02 01:46:27.141/282.168 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=52for PartitionSet{0}
2023-06-02 01:46:27.141/282.168 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=53for PartitionSet{23193..205}
[Coherence Demo Server:out:18677]    2: [EL Info]: 2023-06-02 01:46:27.453--ServerSession(2080521004)--EclipseLink, version: Eclipse Persistence Services - 3.0.2.v202107160933
2023-06-02 01:46:27.816/282.844 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Transferring primary PartitionSet{192..205} to member 5 requesting 14
2023-06-02 01:46:28.241/283.269 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache:$SYS:Config, member=1): Partition ownership has stabilized with 5 nodes
2023-06-02 01:46:28.332/283.359 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Member 5 joined Service DistributedCache with senior member 1
2023-06-02 01:46:28.407/283.435 Oracle Coherence CE 23.03 <Info> (thread=Invocation:InvocationService, member=1): Member 5 joined Service InvocationService with senior member 1
2023-06-02 01:46:29.326/284.354 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=54for PartitionSet{35791113151719212325}
2023-06-02 01:46:29.326/284.354 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=45for PartitionSet{2426283032343638404244}
2023-06-02 01:46:29.327/284.354 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=35for PartitionSet{272931333537394143454749}
2023-06-02 01:46:29.327/284.355 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=25for PartitionSet{77..91}
2023-06-02 01:46:29.328/284.356 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=15for PartitionSet{22206..217}
2023-06-02 01:46:29.328/284.356 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=51for PartitionSet{63..76193}
2023-06-02 01:46:29.328/284.356 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=52for PartitionSet{0194..205}
2023-06-02 01:46:29.329/284.356 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): SimpleAssignmentStrategy suggested the ownership of Ownership{Owners=53for PartitionSet{12468101214161820}
2023-06-02 01:46:29.332/284.359 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Asking member 4 for primary ownership of PartitionSet{22}
2023-06-02 01:46:29.485/284.512 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring 560KB of backup[1for PartitionSet{206..214} to member 5; transfer threshold exceeded
2023-06-02 01:46:30.057/285.084 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring 253KB of backup[1for PartitionSet{22215..217} to member 5; transfer threshold exceeded
2023-06-02 01:46:30.365/285.393 Oracle Coherence CE 23.03 <Info> (thread=jersey-server-managed-async-executor-0, member=1): Repeating SizeRequest due to the re-distribution of PartitionSet{1357911131517}
2023-06-02 01:46:31.598/286.626 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{193} to member 5 requesting 13
2023-06-02 01:46:31.903/286.930 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{194..202} to member 5 requesting 12; transfer threshold exceeded
2023-06-02 01:46:32.132/287.160 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Transferring primary PartitionSet{203..205} to member 5 requesting 3
2023-06-02 01:46:32.173/287.201 Oracle Coherence CE 23.03 <Info> (thread=DistributedCache, member=1): Partition ownership has stabilized with 5 nodes
[Coherence Demo Server:out:18677]    2: [EL Info]: 2023-06-02 01:46:42.392--ServerSession(1428211049)--EclipseLink, version: Eclipse Persistence Services - 3.0.2.v202107160933
cs

 

정상적으로 실행이 완료된 경우 다음 URL에서 Coherence-Demo 확인이 가능합니다.

http://$SERVER_IP:8080/application/index.html

Coherence-Demo

초기 서버 1대 & 가격변동 없는 상태에서 서버를 5대로 늘린 후

실시간 가격 변동 등 Coherence 기능이 정상적으로 작동하는 것을 확인할 수 있습니다.

Server Add
Coherence Demonstration

 

Coherence-Demo에 구현되어 확인가능한 자세한 기능들은 GitHub 문서를 참조하여 확인해 주시기 바라며

Coherence Community에서 제공되는 Demo 구성을 진행해 보았습니다.

 

어렵게 받아들여질 수도 있는 Coherence Data Grid를 손쉽게 구현해 보고 확인해 볼 수 있는 좋은 자료인 것 같아 소개하게 되었습니다. 관련 내용에 관심 있는 분들께 많은 도움이 되었으면 좋겠습니다.


블로그 진행내용을 따라해 보실 분들을 위해 영상으로 만들어보았습니다.

 


Demo만 보고는 상세한 구현내용 확인이 어려워 Coherence-Demo가 실제로 어떻게 구현되어 있는지 확인을 위해

다음 장에서는 동일한 Demo를 Eclipse 환경에 구성하고 로컬에서 실행 및 소스코드 확인이 가능하도록 구성하는 과정을 진행해 보도록 하겠습니다.