rentaiming
2024-07-08 8e6989e09a2cc4046fd6985b18f715f98f45e1c7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
08:57:30.983 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
08:57:32.878 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 84d86b0b-64b4-42af-94c9-2cf5fc766b91_config-0
08:57:33.023 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 88 ms to scan 1 urls, producing 3 keys and 6 values 
08:57:33.107 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 33 ms to scan 1 urls, producing 4 keys and 9 values 
08:57:33.139 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 3 keys and 10 values 
08:57:33.191 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 44 ms to scan 14 urls, producing 0 keys and 0 values 
08:57:33.217 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 1 keys and 5 values 
08:57:33.243 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 1 keys and 7 values 
08:57:33.270 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 2 keys and 8 values 
08:57:33.319 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 44 ms to scan 14 urls, producing 0 keys and 0 values 
08:57:33.321 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [84d86b0b-64b4-42af-94c9-2cf5fc766b91_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
08:57:33.323 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [84d86b0b-64b4-42af-94c9-2cf5fc766b91_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1001351478
08:57:33.324 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [84d86b0b-64b4-42af-94c9-2cf5fc766b91_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/677329142
08:57:33.326 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [84d86b0b-64b4-42af-94c9-2cf5fc766b91_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
08:57:33.328 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [84d86b0b-64b4-42af-94c9-2cf5fc766b91_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
08:57:33.343 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [84d86b0b-64b4-42af-94c9-2cf5fc766b91_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
08:57:36.343 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [84d86b0b-64b4-42af-94c9-2cf5fc766b91_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718240254960_192.168.110.235_49783
08:57:36.344 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [84d86b0b-64b4-42af-94c9-2cf5fc766b91_config-0] Notify connected event to listeners.
08:57:36.345 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [84d86b0b-64b4-42af-94c9-2cf5fc766b91_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:57:36.345 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [84d86b0b-64b4-42af-94c9-2cf5fc766b91_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1049312121
08:57:36.486 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
08:57:42.955 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
08:57:43.216 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
08:57:43.247 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
08:57:43.474 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7a88d7ae-fcc3-40f3-8bd5-c337e7685920_config-0
08:57:43.474 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a88d7ae-fcc3-40f3-8bd5-c337e7685920_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
08:57:43.475 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a88d7ae-fcc3-40f3-8bd5-c337e7685920_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1001351478
08:57:43.475 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a88d7ae-fcc3-40f3-8bd5-c337e7685920_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/677329142
08:57:43.475 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a88d7ae-fcc3-40f3-8bd5-c337e7685920_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
08:57:43.476 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a88d7ae-fcc3-40f3-8bd5-c337e7685920_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
08:57:43.477 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a88d7ae-fcc3-40f3-8bd5-c337e7685920_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
08:57:43.646 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a88d7ae-fcc3-40f3-8bd5-c337e7685920_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718240262391_192.168.110.235_49839
08:57:43.647 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a88d7ae-fcc3-40f3-8bd5-c337e7685920_config-0] Notify connected event to listeners.
08:57:43.647 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a88d7ae-fcc3-40f3-8bd5-c337e7685920_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:57:43.648 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a88d7ae-fcc3-40f3-8bd5-c337e7685920_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1049312121
08:57:44.033 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
08:57:44.922 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
08:57:45.208 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6e8bc155-5cce-440a-9330-cbcc67c00acd
08:57:45.208 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e8bc155-5cce-440a-9330-cbcc67c00acd] RpcClient init label, labels = {module=naming, source=sdk}
08:57:45.212 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e8bc155-5cce-440a-9330-cbcc67c00acd] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
08:57:45.213 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e8bc155-5cce-440a-9330-cbcc67c00acd] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
08:57:45.214 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e8bc155-5cce-440a-9330-cbcc67c00acd] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
08:57:45.215 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e8bc155-5cce-440a-9330-cbcc67c00acd] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
08:57:45.380 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e8bc155-5cce-440a-9330-cbcc67c00acd] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718240264132_192.168.110.235_49851
08:57:45.382 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e8bc155-5cce-440a-9330-cbcc67c00acd] Notify connected event to listeners.
08:57:45.382 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e8bc155-5cce-440a-9330-cbcc67c00acd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:57:45.382 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e8bc155-5cce-440a-9330-cbcc67c00acd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1049312121
08:57:45.453 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
08:57:45.995 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e8bc155-5cce-440a-9330-cbcc67c00acd] Receive server push request, request = NotifySubscriberRequest, requestId = 5
08:57:46.000 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e8bc155-5cce-440a-9330-cbcc67c00acd] Ack server push request, request = NotifySubscriberRequest, requestId = 5
08:57:46.115 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
08:57:57.264 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
08:57:57.288 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xca455a95]) will closed
08:57:57.392 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
08:57:57.394 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
08:57:57.419 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
08:57:57.420 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
08:57:57.420 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
08:57:59.429 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
08:57:59.431 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
08:57:59.431 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
08:57:59.811 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
08:58:00.832 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
08:58:00.834 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
08:58:00.835 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
08:58:08.837 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
08:58:14.321 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
08:58:14.631 [redisson-netty-4-7] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
08:58:14.829 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
08:58:17.949 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of f9c99ad0-db1c-4e77-a50d-0d219d1455e0
08:58:17.950 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9c99ad0-db1c-4e77-a50d-0d219d1455e0] RpcClient init label, labels = {module=naming, source=sdk}
08:58:17.951 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9c99ad0-db1c-4e77-a50d-0d219d1455e0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
08:58:17.951 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9c99ad0-db1c-4e77-a50d-0d219d1455e0] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
08:58:17.952 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9c99ad0-db1c-4e77-a50d-0d219d1455e0] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
08:58:17.952 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9c99ad0-db1c-4e77-a50d-0d219d1455e0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
08:58:18.078 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9c99ad0-db1c-4e77-a50d-0d219d1455e0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718240296848_192.168.110.235_50246
08:58:18.078 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9c99ad0-db1c-4e77-a50d-0d219d1455e0] Notify connected event to listeners.
08:58:18.078 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9c99ad0-db1c-4e77-a50d-0d219d1455e0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:58:18.079 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9c99ad0-db1c-4e77-a50d-0d219d1455e0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1049312121
08:58:18.092 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
08:58:18.132 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
08:58:18.613 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9c99ad0-db1c-4e77-a50d-0d219d1455e0] Receive server push request, request = NotifySubscriberRequest, requestId = 8
08:58:18.624 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9c99ad0-db1c-4e77-a50d-0d219d1455e0] Ack server push request, request = NotifySubscriberRequest, requestId = 8
08:58:19.867 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 51.184 seconds (JVM running for 158.144)
08:58:19.902 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
08:58:19.930 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
08:58:19.945 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
08:58:20.798 [RMI TCP Connection(12)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
08:58:44.902 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
08:58:44.903 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
08:58:54.909 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x75af5879]) will closed
08:58:54.938 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
08:58:54.938 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
08:58:57.432 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
08:58:57.435 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
08:59:04.951 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x19bff2ce]) will closed
08:59:04.953 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
08:59:04.954 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
08:59:07.438 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
08:59:07.438 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
08:59:07.440 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb8075b3d]) will closed
08:59:14.961 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1163e428]) will closed
08:59:14.969 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
08:59:14.970 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
08:59:17.440 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
08:59:17.440 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
08:59:17.441 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3d93bbc7]) will closed
08:59:24.975 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x246e0442]) will closed
08:59:24.977 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
08:59:24.978 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
08:59:27.442 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
08:59:27.443 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
08:59:27.444 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x39eb3dc2]) will closed
08:59:34.980 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xcce98cab]) will closed
08:59:34.981 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
08:59:34.982 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
08:59:37.449 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x980a47db]) will closed
08:59:37.450 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
08:59:37.450 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
08:59:44.989 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6f829923]) will closed
08:59:44.990 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
08:59:44.990 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
08:59:47.453 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
08:59:47.453 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
08:59:47.455 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5f1eeef6]) will closed
08:59:54.997 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2e46f994]) will closed
08:59:54.998 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
08:59:54.999 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
08:59:57.457 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
08:59:57.457 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
08:59:57.459 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xca696e0d]) will closed
09:00:05.011 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x44e2dda1]) will closed
09:00:05.012 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:00:05.012 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:00:07.461 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x781bc953]) will closed
09:00:07.462 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:00:07.462 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:00:15.022 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa19b374f]) will closed
09:00:15.024 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:00:15.024 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:00:17.466 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x752e755a]) will closed
09:00:17.468 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:00:17.469 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:00:25.036 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x03043ce3]) will closed
09:00:25.039 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:00:25.039 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:00:27.479 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x91a9a249]) will closed
09:00:27.480 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:00:27.481 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:00:35.040 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:00:35.041 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:00:35.042 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5d1843e6]) will closed
09:00:37.495 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x150996bd]) will closed
09:00:37.496 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:00:37.496 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:00:45.053 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x59bfda6b]) will closed
09:00:45.056 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:00:45.056 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:00:47.501 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x483b019c]) will closed
09:00:47.502 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:00:47.502 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:00:55.057 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:00:55.058 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:00:55.059 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x22d664ff]) will closed
09:00:57.515 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf8e6fa0e]) will closed
09:00:57.517 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:00:57.518 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:01:05.072 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x03c8572c]) will closed
09:01:05.073 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:01:05.073 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:01:07.528 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x69fa7c25]) will closed
09:01:07.529 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:01:07.529 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:01:15.089 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x36c844dc]) will closed
09:01:15.089 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:01:15.090 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:01:17.539 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xfcb1e69f]) will closed
09:01:17.540 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:01:17.540 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:01:25.096 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2f05ab18]) will closed
09:01:25.119 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:01:25.119 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:01:27.555 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8a56cbdd]) will closed
09:01:27.556 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:01:27.556 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:01:35.134 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8f999e07]) will closed
09:01:35.134 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:01:35.135 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:01:37.561 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x82c6e946]) will closed
09:01:37.561 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:01:37.561 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:01:45.136 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:01:45.136 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5af5da18]) will closed
09:01:45.136 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:01:47.569 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8bcb0fbd]) will closed
09:01:47.570 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:01:47.570 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:01:55.142 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8a49c212]) will closed
09:01:55.142 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:01:55.143 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:01:57.575 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3e8692eb]) will closed
09:01:57.576 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:01:57.576 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:02:05.157 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x43083c49]) will closed
09:02:05.157 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:02:05.158 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:02:07.582 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x15b1a7e3]) will closed
09:02:07.584 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:02:07.584 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:02:15.172 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb5495c7a]) will closed
09:02:15.172 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:02:15.173 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:02:17.587 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9d298a05]) will closed
09:02:17.589 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:02:17.591 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:02:25.180 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8bbd9344]) will closed
09:02:25.182 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:02:25.182 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:02:27.595 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1e448d78]) will closed
09:02:27.595 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:02:27.595 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:02:35.188 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf3a46e47]) will closed
09:02:35.189 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:02:35.189 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:02:37.600 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:02:37.601 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:02:37.604 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe2155f4a]) will closed
09:02:45.199 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd8cd355e]) will closed
09:02:45.200 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:02:45.201 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:02:47.607 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0e8f406c]) will closed
09:02:47.607 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:02:47.607 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:02:55.212 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5f7124cc]) will closed
09:02:55.213 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:02:55.213 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:02:57.622 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9a53588b]) will closed
09:02:57.623 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:02:57.623 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:03:05.221 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x628cf745]) will closed
09:03:05.222 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:03:05.223 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:03:07.635 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x11ffb56d]) will closed
09:03:07.636 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:03:07.636 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:03:15.237 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x66a38649]) will closed
09:03:15.237 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:03:15.238 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:03:17.644 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xbc5a9738]) will closed
09:03:17.644 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:03:17.644 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:03:25.241 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xde2ab5a6]) will closed
09:03:25.241 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:03:25.241 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:03:27.657 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9786febd]) will closed
09:03:27.658 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:03:27.658 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:03:35.251 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1112246b]) will closed
09:03:35.252 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:03:35.252 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:03:37.671 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa301b998]) will closed
09:03:37.672 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:03:37.672 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:03:45.266 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xfdde9168]) will closed
09:03:45.266 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:03:45.267 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:03:47.681 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3a8f8c5d]) will closed
09:03:47.682 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:03:47.682 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:03:55.277 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x59013857]) will closed
09:03:55.278 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:03:55.278 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:03:57.686 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd749b96c]) will closed
09:03:57.687 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:03:57.687 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:04:05.292 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa3a8617b]) will closed
09:04:05.293 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:04:05.293 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:04:07.695 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdec9c960]) will closed
09:04:07.696 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:04:07.696 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:04:15.308 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdabeff01]) will closed
09:04:15.310 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:04:15.310 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:04:17.712 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x73448f6a]) will closed
09:04:17.713 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:04:17.715 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:04:25.313 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xcd6f4ecc]) will closed
09:04:25.317 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:04:25.317 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:04:27.716 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xaee82b96]) will closed
09:04:27.718 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:04:27.718 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:04:35.321 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5de6e38f]) will closed
09:04:35.322 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:04:35.322 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:04:37.732 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf8eec413]) will closed
09:04:37.732 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:04:37.732 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:04:45.327 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdbd55ef2]) will closed
09:04:45.328 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:04:45.328 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:04:47.736 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8ea575a8]) will closed
09:04:47.737 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:04:47.737 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:04:55.344 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe565fc8d]) will closed
09:04:55.346 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:04:55.346 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:04:57.752 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc53d8cc0]) will closed
09:04:57.754 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:04:57.754 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:05:05.359 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x90495faa]) will closed
09:05:05.359 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:05:05.359 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:05:07.755 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc79cb893]) will closed
09:05:07.757 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:05:07.757 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:05:15.363 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb0e33297]) will closed
09:05:15.364 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:05:15.364 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:05:17.761 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd766b3ea]) will closed
09:05:17.762 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:05:17.762 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:05:25.378 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x09852fce]) will closed
09:05:25.381 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:05:25.381 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:05:27.776 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xbc827536]) will closed
09:05:27.777 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:05:27.777 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:05:35.386 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8b7c9814]) will closed
09:05:35.390 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:05:35.391 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:05:37.787 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf26e0bac]) will closed
09:05:37.789 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:05:37.789 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:05:45.407 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc3643dd7]) will closed
09:05:45.407 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:05:45.407 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:05:47.798 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x68cbd193]) will closed
09:05:47.798 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:05:47.798 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:05:55.422 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xbb28f77a]) will closed
09:05:55.422 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:05:55.422 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:05:57.815 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf83614f8]) will closed
09:05:57.815 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:05:57.815 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:06:05.431 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe9bbeb0c]) will closed
09:06:05.431 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:06:05.432 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:06:07.825 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0d76bc2d]) will closed
09:06:07.826 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:06:07.826 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:06:15.439 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x709ada88]) will closed
09:06:15.440 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:06:15.440 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:06:17.837 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdc317aa5]) will closed
09:06:17.839 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:06:17.842 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:06:25.447 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xaf712e0e]) will closed
09:06:25.449 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:06:25.449 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:06:27.854 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9686ee0b]) will closed
09:06:27.855 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:06:27.855 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:06:35.453 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd8ae1199]) will closed
09:06:35.515 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:06:35.515 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:06:37.857 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:06:37.857 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:06:37.859 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xfdac1b0b]) will closed
09:06:45.527 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x659ee5b5]) will closed
09:06:45.527 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:06:45.528 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:06:47.863 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe0f575f4]) will closed
09:06:47.865 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:06:47.865 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:06:55.543 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa2ec6907]) will closed
09:06:55.544 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:06:55.544 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:06:57.872 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd2f60247]) will closed
09:06:57.873 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:06:57.873 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:07:05.555 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6037a29b]) will closed
09:07:05.558 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:07:05.558 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:07:07.880 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa84c7fdb]) will closed
09:07:07.881 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:07:07.881 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:07:15.570 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6989e545]) will closed
09:07:15.571 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:07:15.571 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:07:17.890 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9d710da0]) will closed
09:07:17.892 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:07:17.892 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:07:25.578 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xcbaec036]) will closed
09:07:25.580 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:07:25.581 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:07:27.901 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x126c0e15]) will closed
09:07:27.903 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:07:27.903 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:07:35.596 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe8d3d621]) will closed
09:07:35.596 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:07:35.596 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:07:37.914 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x352782b8]) will closed
09:07:37.914 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:07:37.914 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:07:45.611 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xfe50b41d]) will closed
09:07:45.612 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:07:45.612 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:07:47.919 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc90c28e9]) will closed
09:07:47.920 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:07:47.920 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:07:55.619 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1b1db9e7]) will closed
09:07:55.619 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:07:55.620 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:07:57.924 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5add015f]) will closed
09:07:57.925 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:07:57.925 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:08:05.624 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x46b31cb5]) will closed
09:08:05.625 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:08:05.625 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:08:07.928 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xafa49c2b]) will closed
09:08:07.929 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:08:07.929 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:08:15.628 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:08:15.628 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:08:15.630 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1cca0c45]) will closed
09:08:17.931 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5f7ce9fa]) will closed
09:08:17.935 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:08:17.939 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:08:25.639 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0063b00b]) will closed
09:08:25.641 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:08:25.641 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:08:27.942 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:08:27.942 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:08:27.945 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6510eca9]) will closed
09:08:35.644 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3c2764d9]) will closed
09:08:35.645 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:08:35.646 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:08:37.948 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3f6dcb98]) will closed
09:08:37.949 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:08:37.950 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:08:45.648 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:08:45.648 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:08:45.649 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3ce9597e]) will closed
09:08:47.961 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xbaa098b7]) will closed
09:08:47.962 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:08:47.963 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:08:55.663 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x11c19fe3]) will closed
09:08:55.664 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:08:55.664 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:08:57.968 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9f354cc0]) will closed
09:08:57.971 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:08:57.971 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:09:05.666 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb4b3dc18]) will closed
09:09:05.668 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:09:05.668 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:09:07.979 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x75f32e43]) will closed
09:09:07.980 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:09:07.980 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:09:15.685 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x333b31e7]) will closed
09:09:15.780 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:09:15.780 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:09:17.986 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xfa097542]) will closed
09:09:17.988 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:09:17.988 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:09:25.790 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6d99a700]) will closed
09:09:25.793 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:09:25.793 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:09:27.989 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xcebc9e67]) will closed
09:09:27.990 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:09:27.990 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:09:35.806 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x545ee478]) will closed
09:09:35.806 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:09:35.807 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:09:38.002 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd49c744e]) will closed
09:09:38.011 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:09:38.011 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:09:38.457 [SpringContextShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
09:09:38.461 [SpringContextShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
09:09:38.845 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
09:09:38.845 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@45bb33d7[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
09:09:38.846 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718240296848_192.168.110.235_50246
09:09:38.874 [nacos-grpc-client-executor-144] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718240296848_192.168.110.235_50246]Ignore complete event,isRunning:false,isAbandon=false
09:09:38.885 [SpringContextShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@79f56df3[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 145]
09:09:39.164 [SpringContextShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
09:09:39.169 [SpringContextShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
09:09:39.193 [SpringContextShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
09:09:39.193 [SpringContextShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
09:09:39.195 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa41f5e6e]) will closed
09:09:39.198 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x43ccd2a6]) will closed
09:10:07.733 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:10:10.015 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of edbddc0c-d89c-4540-a3af-bc91893299cb_config-0
09:10:10.148 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 78 ms to scan 1 urls, producing 3 keys and 6 values 
09:10:10.244 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 36 ms to scan 1 urls, producing 4 keys and 9 values 
09:10:10.273 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 3 keys and 10 values 
09:10:10.321 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 41 ms to scan 14 urls, producing 0 keys and 0 values 
09:10:10.348 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 1 keys and 5 values 
09:10:10.378 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 1 keys and 7 values 
09:10:10.411 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 27 ms to scan 1 urls, producing 2 keys and 8 values 
09:10:10.472 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 56 ms to scan 14 urls, producing 0 keys and 0 values 
09:10:10.474 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [edbddc0c-d89c-4540-a3af-bc91893299cb_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:10:10.476 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [edbddc0c-d89c-4540-a3af-bc91893299cb_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1901648626
09:10:10.477 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [edbddc0c-d89c-4540-a3af-bc91893299cb_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/284268103
09:10:10.479 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [edbddc0c-d89c-4540-a3af-bc91893299cb_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:10:10.480 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [edbddc0c-d89c-4540-a3af-bc91893299cb_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:10:10.501 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [edbddc0c-d89c-4540-a3af-bc91893299cb_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:10:13.784 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [edbddc0c-d89c-4540-a3af-bc91893299cb_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718241012362_192.168.110.235_56972
09:10:13.786 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [edbddc0c-d89c-4540-a3af-bc91893299cb_config-0] Notify connected event to listeners.
09:10:13.788 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [edbddc0c-d89c-4540-a3af-bc91893299cb_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:10:13.789 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [edbddc0c-d89c-4540-a3af-bc91893299cb_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1955226954
09:10:14.001 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:10:20.136 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
09:10:20.308 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
09:10:20.325 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
09:10:20.561 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c83fd32e-db94-4f20-bc64-4b52de97ed35_config-0
09:10:20.563 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83fd32e-db94-4f20-bc64-4b52de97ed35_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:10:20.563 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83fd32e-db94-4f20-bc64-4b52de97ed35_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1901648626
09:10:20.563 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83fd32e-db94-4f20-bc64-4b52de97ed35_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/284268103
09:10:20.564 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83fd32e-db94-4f20-bc64-4b52de97ed35_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:10:20.564 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83fd32e-db94-4f20-bc64-4b52de97ed35_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:10:20.565 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83fd32e-db94-4f20-bc64-4b52de97ed35_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:10:20.693 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83fd32e-db94-4f20-bc64-4b52de97ed35_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718241019463_192.168.110.235_57029
09:10:20.693 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83fd32e-db94-4f20-bc64-4b52de97ed35_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:10:20.693 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83fd32e-db94-4f20-bc64-4b52de97ed35_config-0] Notify connected event to listeners.
09:10:20.694 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83fd32e-db94-4f20-bc64-4b52de97ed35_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1955226954
09:10:20.866 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
09:10:21.164 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:10:21.384 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of dc6d3235-999d-4882-bee0-6e332f048aaa
09:10:21.384 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] RpcClient init label, labels = {module=naming, source=sdk}
09:10:21.389 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:10:21.389 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:10:21.390 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:10:21.391 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:10:21.521 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718241020295_192.168.110.235_57032
09:10:21.522 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:10:21.522 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1955226954
09:10:21.525 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Notify connected event to listeners.
09:10:21.588 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:10:22.109 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Receive server push request, request = NotifySubscriberRequest, requestId = 18
09:10:22.114 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Ack server push request, request = NotifySubscriberRequest, requestId = 18
09:10:22.284 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:10:33.402 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
09:10:33.437 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe49f857a]) will closed
09:10:33.487 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
09:10:33.488 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
09:10:33.510 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:10:33.511 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
09:10:33.511 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
09:10:35.705 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
09:10:35.707 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:10:35.707 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:10:36.059 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:10:37.190 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:10:37.194 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:10:37.195 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:10:48.391 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:10:54.799 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:10:55.485 [redisson-netty-4-5] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:10:56.115 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
09:11:00.710 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 4c12bc3f-61fa-4d3b-8ec5-1f4e4d99a53a
09:11:00.710 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c12bc3f-61fa-4d3b-8ec5-1f4e4d99a53a] RpcClient init label, labels = {module=naming, source=sdk}
09:11:00.711 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c12bc3f-61fa-4d3b-8ec5-1f4e4d99a53a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:11:00.711 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c12bc3f-61fa-4d3b-8ec5-1f4e4d99a53a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:11:00.711 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c12bc3f-61fa-4d3b-8ec5-1f4e4d99a53a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:11:00.713 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c12bc3f-61fa-4d3b-8ec5-1f4e4d99a53a] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:11:00.842 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c12bc3f-61fa-4d3b-8ec5-1f4e4d99a53a] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718241059612_192.168.110.235_57647
09:11:00.843 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c12bc3f-61fa-4d3b-8ec5-1f4e4d99a53a] Notify connected event to listeners.
09:11:00.843 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c12bc3f-61fa-4d3b-8ec5-1f4e4d99a53a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:11:00.843 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c12bc3f-61fa-4d3b-8ec5-1f4e4d99a53a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1955226954
09:11:00.857 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
09:11:00.909 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
09:11:01.354 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c12bc3f-61fa-4d3b-8ec5-1f4e4d99a53a] Receive server push request, request = NotifySubscriberRequest, requestId = 25
09:11:01.360 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4c12bc3f-61fa-4d3b-8ec5-1f4e4d99a53a] Ack server push request, request = NotifySubscriberRequest, requestId = 25
09:11:03.197 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 57.323 seconds (JVM running for 60.438)
09:11:03.234 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
09:11:03.256 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
09:11:03.267 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
09:11:04.359 [RMI TCP Connection(7)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:11:21.154 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:11:21.155 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:11:31.161 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x63aac54f]) will closed
09:11:31.163 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:11:31.164 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:11:33.519 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:11:33.521 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:11:41.167 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:11:41.167 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:11:41.169 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0168c364]) will closed
09:11:43.528 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xbd02fa11]) will closed
09:11:43.529 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:11:43.529 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:11:51.171 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2dae9c3b]) will closed
09:11:51.173 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:11:51.173 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:11:53.532 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x03dee9dc]) will closed
09:11:53.534 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:11:53.534 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:12:01.183 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf2099162]) will closed
09:12:01.185 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:12:01.185 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:12:03.546 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4df36592]) will closed
09:12:03.547 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:12:03.547 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:12:11.191 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x71ba7647]) will closed
09:12:11.192 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:12:11.192 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:12:13.550 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5fa9f236]) will closed
09:12:13.551 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:12:13.552 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:12:21.195 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xeeba5056]) will closed
09:12:21.196 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:12:21.196 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:12:23.566 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x489bc0ef]) will closed
09:12:23.566 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:12:23.567 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:12:31.208 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x11d31247]) will closed
09:12:31.209 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:12:31.209 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:12:33.570 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8f0953ae]) will closed
09:12:33.571 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:12:33.571 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:12:41.224 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xde20bf7e]) will closed
09:12:41.225 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:12:41.225 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:12:43.572 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:12:43.572 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:12:43.573 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3d68f1ec]) will closed
09:12:51.234 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x22dd6bd0]) will closed
09:12:51.234 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:12:51.235 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:12:53.579 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc19bc2b6]) will closed
09:12:53.580 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:12:53.581 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:13:01.242 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe4921666]) will closed
09:13:01.244 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:13:01.244 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:13:03.583 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:13:03.584 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2b9867ec]) will closed
09:13:03.584 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:13:11.258 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x93c4f150]) will closed
09:13:11.260 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:13:11.260 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:13:13.586 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9cb0cc96]) will closed
09:13:13.588 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:13:13.588 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:13:21.270 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x933cdd60]) will closed
09:13:21.271 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:13:21.272 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:13:23.604 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb24baa2b]) will closed
09:13:23.605 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:13:23.605 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:13:31.285 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x504fcf31]) will closed
09:13:31.286 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:13:31.286 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:13:33.618 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2e00d872]) will closed
09:13:33.619 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:13:33.619 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:13:41.287 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:13:41.287 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:13:41.288 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc91d7608]) will closed
09:13:43.634 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc49072fd]) will closed
09:13:43.635 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:13:43.635 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:13:51.301 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc5ed7804]) will closed
09:13:51.302 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:13:51.303 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:13:53.649 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x558cf7dd]) will closed
09:13:53.649 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:13:53.649 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:14:01.312 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3b41ab3d]) will closed
09:14:01.314 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:14:01.315 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:14:03.652 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:14:03.652 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:14:03.654 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd7503310]) will closed
09:14:11.318 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1b2a6b4c]) will closed
09:14:11.320 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:14:11.320 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:14:13.661 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb1704ba5]) will closed
09:14:13.662 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:14:13.662 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:14:21.336 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd1f24459]) will closed
09:14:21.337 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:14:21.337 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:14:23.670 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb53880b6]) will closed
09:14:23.671 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:14:23.671 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:14:31.339 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x806edfd6]) will closed
09:14:31.342 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:14:31.342 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:14:33.672 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:14:33.672 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:14:33.674 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x08c6a07c]) will closed
09:14:41.348 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xefdb8b0f]) will closed
09:14:41.350 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:14:41.350 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:14:43.679 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x831107de]) will closed
09:14:43.679 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:14:43.679 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:14:51.361 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x25e27264]) will closed
09:14:51.364 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:14:51.365 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:14:53.687 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x942b8338]) will closed
09:14:53.687 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:14:53.689 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:15:01.377 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x430d27eb]) will closed
09:15:01.384 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:15:01.384 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:15:03.696 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x11bc556f]) will closed
09:15:03.697 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:15:03.698 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:15:11.389 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x270b0e54]) will closed
09:15:11.392 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:15:11.393 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:15:13.708 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb4335845]) will closed
09:15:13.708 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:15:13.708 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:15:21.406 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x562920e9]) will closed
09:15:21.407 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:15:21.407 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:15:23.712 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf8d76865]) will closed
09:15:23.713 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:15:23.713 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:15:31.410 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:15:31.410 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:15:31.412 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x85100f71]) will closed
09:15:33.720 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1b38c1dc]) will closed
09:15:33.720 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:15:33.720 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:15:41.413 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3d77f700]) will closed
09:15:41.416 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:15:41.417 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:15:43.735 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x320a5fd4]) will closed
09:15:43.735 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:15:43.735 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:15:51.428 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x01fad30c]) will closed
09:15:51.432 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:15:51.432 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:15:53.742 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2c6e9834]) will closed
09:15:53.742 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:15:53.743 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:16:01.438 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:16:01.438 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:16:01.439 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc71bdcc2]) will closed
09:16:03.749 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3763a6a8]) will closed
09:16:03.752 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:16:03.753 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:16:11.449 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x55676ee1]) will closed
09:16:11.451 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:16:11.451 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:16:13.764 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xbbdfaeca]) will closed
09:16:13.766 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:16:13.766 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:16:21.461 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd0dbfbcd]) will closed
09:16:21.464 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:16:21.464 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:16:23.771 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1301c6a4]) will closed
09:16:23.771 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:16:23.772 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:16:31.477 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x47df8bdd]) will closed
09:16:31.478 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:16:31.478 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:16:33.773 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:16:33.773 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:16:33.774 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x29a461e5]) will closed
09:16:41.481 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:16:41.481 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:16:41.483 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xbe537592]) will closed
09:16:43.776 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:16:43.776 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:16:43.777 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x32d7d964]) will closed
09:16:51.496 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb3e43f0a]) will closed
09:16:51.496 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:16:51.496 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:16:53.783 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x12e140e0]) will closed
09:16:53.784 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:16:53.786 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:17:01.505 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2831db2a]) will closed
09:17:01.508 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:17:01.508 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:17:03.789 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe4e880c6]) will closed
09:17:03.789 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:17:03.789 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:17:11.515 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x18bbe78b]) will closed
09:17:11.516 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:17:11.516 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:17:13.803 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9137cb04]) will closed
09:17:13.805 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:17:13.805 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:17:21.529 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc5befcbc]) will closed
09:17:21.531 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:17:21.532 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:17:23.811 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd9c0437b]) will closed
09:17:23.811 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:17:23.812 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:17:31.541 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf9cdd732]) will closed
09:17:31.541 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:17:31.542 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:17:33.817 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc959a894]) will closed
09:17:33.817 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:17:33.818 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:17:41.544 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7fef3a02]) will closed
09:17:41.545 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:17:41.545 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:17:43.833 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xce590306]) will closed
09:17:43.835 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:17:43.836 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:17:51.554 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb3bb6e2a]) will closed
09:17:51.555 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:17:51.555 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:17:53.851 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe4de64ff]) will closed
09:17:53.853 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:17:53.854 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:18:01.559 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9683b8ea]) will closed
09:18:01.561 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:18:01.561 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:18:03.867 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x386bd9c9]) will closed
09:18:03.867 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:18:03.868 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:18:11.570 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x42aadcc6]) will closed
09:18:11.570 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:18:11.571 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:18:13.877 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4aaca1ea]) will closed
09:18:13.879 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:18:13.880 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:18:21.577 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3f5fcd69]) will closed
09:18:21.578 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:18:21.578 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:18:23.914 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7c353909]) will closed
09:18:23.915 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:18:23.915 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:18:31.593 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd171e0c1]) will closed
09:18:31.596 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:18:31.596 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:18:33.916 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x102a5c09]) will closed
09:18:33.917 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:18:33.917 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:18:41.610 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdcfd9ea0]) will closed
09:18:41.610 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:18:41.611 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:18:43.918 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x79755877]) will closed
09:18:43.919 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:18:43.919 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:18:51.625 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xee23da30]) will closed
09:18:51.625 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:18:51.625 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:18:53.934 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3af62021]) will closed
09:18:53.935 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:18:53.937 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:19:01.631 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9ab75286]) will closed
09:19:01.637 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:19:01.637 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:19:03.946 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd6f67351]) will closed
09:19:03.948 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:19:03.948 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:19:11.639 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:19:11.639 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:19:11.641 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0ec08ced]) will closed
09:19:13.967 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xbd2fe6b6]) will closed
09:19:13.969 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:19:13.970 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:19:21.653 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2ad5867a]) will closed
09:19:21.654 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:19:21.655 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:19:23.973 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x667feb6b]) will closed
09:19:23.974 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:19:23.974 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:19:31.657 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7144a81a]) will closed
09:19:31.659 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:19:31.659 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:19:33.980 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x99458b50]) will closed
09:19:33.981 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:19:33.981 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:19:41.674 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x69c2fe0e]) will closed
09:19:41.674 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:19:41.675 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:19:43.994 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4f6cd1a9]) will closed
09:19:43.995 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:19:43.995 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:19:51.687 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdffd3405]) will closed
09:19:51.689 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:19:51.689 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:19:54.003 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x061c596d]) will closed
09:19:54.003 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:19:54.004 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:20:01.692 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa00e4146]) will closed
09:20:01.695 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:20:01.695 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:20:04.013 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x84c03f31]) will closed
09:20:04.015 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:20:04.015 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:20:11.704 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x3b25972d]) will closed
09:20:11.705 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:20:11.707 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:20:14.021 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x41fb9b62]) will closed
09:20:14.022 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:20:14.022 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:20:21.721 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9f7ec256]) will closed
09:20:21.721 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:20:21.722 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:20:24.024 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5894361f]) will closed
09:20:24.027 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:20:24.027 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:20:31.725 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa8b3544a]) will closed
09:20:31.725 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:20:31.726 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:20:34.034 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb03c6ee4]) will closed
09:20:34.035 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:20:34.035 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:20:41.741 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa4c922ad]) will closed
09:20:41.743 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:20:41.743 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:20:44.037 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:20:44.038 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:20:44.041 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2d934362]) will closed
09:20:51.758 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9d5be8c6]) will closed
09:20:51.758 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:20:51.759 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:20:54.048 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4c0e53ed]) will closed
09:20:54.048 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:20:54.050 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:21:01.765 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xac2fd59c]) will closed
09:21:01.771 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:21:01.771 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:21:04.053 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x05a6a4fb]) will closed
09:21:04.054 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:21:04.054 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:21:11.777 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7e5aab92]) will closed
09:21:11.779 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:21:11.779 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:21:14.057 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6ed94772]) will closed
09:21:14.057 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:21:14.058 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:21:21.784 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xaadf9fd4]) will closed
09:21:21.787 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:21:21.788 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:21:24.074 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x044b67f9]) will closed
09:21:24.074 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:21:24.074 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:21:31.794 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6981cb43]) will closed
09:21:31.795 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:21:31.795 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:21:34.077 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdcb28daa]) will closed
09:21:34.078 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:21:34.078 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:21:41.806 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x324d13e3]) will closed
09:21:41.807 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:21:41.807 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:21:44.093 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7fe7c8e3]) will closed
09:21:44.094 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:21:44.095 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:21:51.823 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x61537757]) will closed
09:21:51.826 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:21:51.827 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:21:54.112 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9901546e]) will closed
09:21:54.112 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:21:54.112 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:22:01.831 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:22:01.831 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:22:01.832 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5c30976d]) will closed
09:22:04.116 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9696ef5f]) will closed
09:22:04.118 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:22:04.118 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:22:11.842 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd6196e0e]) will closed
09:22:11.843 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:22:11.843 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:22:14.131 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xcd97decd]) will closed
09:22:14.132 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:22:14.132 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:22:21.856 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7ee21958]) will closed
09:22:21.858 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:22:21.858 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:22:24.138 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdcf2c6a0]) will closed
09:22:24.140 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:22:24.140 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:22:31.863 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1a5de22d]) will closed
09:22:31.864 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:22:31.864 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:22:34.148 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0baa86cd]) will closed
09:22:34.149 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:22:34.149 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:22:41.875 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x046de69c]) will closed
09:22:41.876 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:22:41.877 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:22:44.161 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x86c77538]) will closed
09:22:44.163 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:22:44.163 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:22:51.885 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7f4883ef]) will closed
09:22:51.888 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:22:51.888 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:22:54.167 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x53ebcf53]) will closed
09:22:54.168 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:22:54.169 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:23:01.893 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0b1386d6]) will closed
09:23:01.894 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:23:01.895 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:23:04.182 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0da44257]) will closed
09:23:04.183 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:23:04.183 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:23:11.909 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x89464b6a]) will closed
09:23:11.910 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:23:11.910 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:23:14.185 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:23:14.185 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:23:14.187 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xbd26ed1b]) will closed
09:23:21.916 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x95d46717]) will closed
09:23:21.917 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:23:21.918 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:23:24.188 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe4a9e538]) will closed
09:23:24.191 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:23:24.192 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:23:31.929 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xfd7b9d5d]) will closed
09:23:31.929 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:23:31.930 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:23:34.201 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x479ab30d]) will closed
09:23:34.201 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:23:34.201 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:23:41.943 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x445f7a42]) will closed
09:23:41.944 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:23:41.944 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:23:44.207 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2a05a176]) will closed
09:23:44.210 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:23:44.211 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:23:51.948 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xbab78a8c]) will closed
09:23:51.949 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:23:51.949 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:23:54.216 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe27b095b]) will closed
09:23:54.217 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:23:54.217 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:24:01.962 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xff0fc21b]) will closed
09:24:01.965 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:24:01.965 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:24:04.218 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:24:04.218 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:24:04.219 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x616409d3]) will closed
09:24:05.989 [nacos-grpc-client-executor-170] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Receive server push request, request = NotifySubscriberRequest, requestId = 70
09:24:05.996 [nacos-grpc-client-executor-170] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Ack server push request, request = NotifySubscriberRequest, requestId = 70
09:24:11.971 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5a61753c]) will closed
09:24:11.974 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:24:11.975 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:24:14.223 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x51cc823a]) will closed
09:24:14.224 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:24:14.225 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:24:18.628 [nacos-grpc-client-executor-172] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Receive server push request, request = NotifySubscriberRequest, requestId = 77
09:24:18.633 [nacos-grpc-client-executor-172] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Ack server push request, request = NotifySubscriberRequest, requestId = 77
09:24:21.982 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8440d72a]) will closed
09:24:21.984 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:24:21.984 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:24:24.232 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc0b42f8d]) will closed
09:24:24.233 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:24:24.233 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:24:31.986 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:24:31.986 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:24:31.987 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa1b5ac6e]) will closed
09:24:34.236 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa2accb16]) will closed
09:24:34.238 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:24:34.239 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:24:41.987 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:24:41.987 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:24:41.988 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd7d00a41]) will closed
09:24:44.249 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdd454ea5]) will closed
09:24:44.251 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:24:44.251 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:24:52.000 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xab9f11e0]) will closed
09:24:52.001 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:24:52.001 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:24:54.267 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xea703594]) will closed
09:24:54.268 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:24:54.269 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:25:02.004 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x80e8024a]) will closed
09:25:02.005 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:25:02.005 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:25:04.274 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x60caf13c]) will closed
09:25:04.275 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:25:04.275 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:25:12.020 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x802109d7]) will closed
09:25:12.021 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:25:12.021 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:25:14.286 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa7e5432d]) will closed
09:25:14.287 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:25:14.287 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:25:22.031 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe3d5c59d]) will closed
09:25:22.031 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:25:22.031 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:25:24.289 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x047c1372]) will closed
09:25:24.291 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:25:24.291 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:25:32.040 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9e562756]) will closed
09:25:32.041 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:25:32.041 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:25:34.300 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xda332d64]) will closed
09:25:34.301 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:25:34.301 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:25:42.041 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:25:42.042 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:25:42.042 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x347f42d0]) will closed
09:25:44.307 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x058584c5]) will closed
09:25:44.308 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:25:44.308 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:25:52.045 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x664f071f]) will closed
09:25:52.046 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:25:52.046 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:25:54.316 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa8f9a3d3]) will closed
09:25:54.317 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:25:54.317 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:26:02.055 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xda8aba29]) will closed
09:26:02.058 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:26:02.058 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:26:04.331 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0fe397ba]) will closed
09:26:04.331 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:26:04.332 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:26:12.066 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x52c867f9]) will closed
09:26:12.068 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:26:12.068 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:26:14.341 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb3cc0b6e]) will closed
09:26:14.342 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:26:14.343 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:26:22.072 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8b951a5f]) will closed
09:26:22.075 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:26:22.075 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:26:24.355 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2610f5d9]) will closed
09:26:24.355 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:26:24.356 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:26:32.087 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6458313b]) will closed
09:26:32.088 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:26:32.088 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:26:34.366 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa926b98b]) will closed
09:26:34.366 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:26:34.367 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:26:42.091 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9ee421d4]) will closed
09:26:42.092 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:26:42.093 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:26:44.369 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa4543464]) will closed
09:26:44.369 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:26:44.370 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:26:52.097 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0edff88f]) will closed
09:26:52.098 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:26:52.098 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:26:52.691 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Server healthy check fail, currentConnection = 1718241020295_192.168.110.235_57032
09:26:52.691 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:26:52.812 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Success to connect a server [192.168.110.235:8848], connectionId = 1718242011593_192.168.110.235_60332
09:26:52.812 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718241020295_192.168.110.235_57032
09:26:52.812 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718241020295_192.168.110.235_57032
09:26:52.818 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Notify disconnected event to listeners
09:26:52.820 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Notify connected event to listeners.
09:26:54.373 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1f4cd282]) will closed
09:26:54.374 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:26:54.376 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:26:54.675 [nacos-grpc-client-executor-209] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Receive server push request, request = NotifySubscriberRequest, requestId = 82
09:26:54.675 [nacos-grpc-client-executor-209] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Ack server push request, request = NotifySubscriberRequest, requestId = 82
09:27:02.104 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9c0321a4]) will closed
09:27:02.106 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:27:02.106 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:27:04.392 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xad6c1bf7]) will closed
09:27:04.392 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:27:04.393 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:27:12.113 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x46b0cc35]) will closed
09:27:12.113 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:27:12.113 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:27:14.405 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xaf68df27]) will closed
09:27:14.406 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:27:14.406 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:27:22.123 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa9ee14a8]) will closed
09:27:22.124 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:27:22.124 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:27:24.418 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6bf41c45]) will closed
09:27:24.419 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:27:24.419 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:27:32.136 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd80849c2]) will closed
09:27:32.138 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:27:32.138 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:27:34.426 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdb77e682]) will closed
09:27:34.426 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:27:34.427 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:27:42.153 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x07a5520d]) will closed
09:27:42.154 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:27:42.154 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:27:44.432 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd3572567]) will closed
09:27:44.432 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:27:44.432 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:27:52.156 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x54ff237c]) will closed
09:27:52.157 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:27:52.157 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:27:54.444 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x018ce409]) will closed
09:27:54.445 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:27:54.445 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:28:02.168 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x32512503]) will closed
09:28:02.170 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:28:02.170 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:28:04.455 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdd2cd0b2]) will closed
09:28:04.456 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:28:04.456 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:28:12.172 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:28:12.173 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:28:12.173 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb4cdc28b]) will closed
09:28:14.467 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x220a875d]) will closed
09:28:14.467 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:28:14.468 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:28:22.188 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xfa6cc1b6]) will closed
09:28:22.189 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:28:22.189 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:28:24.470 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb6855ceb]) will closed
09:28:24.470 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:28:24.470 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:28:32.201 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x82c29941]) will closed
09:28:32.201 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:28:32.201 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:28:34.471 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7518037d]) will closed
09:28:34.471 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:28:34.471 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:28:42.217 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb1e177e4]) will closed
09:28:42.220 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:28:42.220 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:28:44.476 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf809bbd6]) will closed
09:28:44.476 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:28:44.476 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:28:52.227 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x646969e9]) will closed
09:28:52.228 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:28:52.228 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:28:54.478 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x24e0f4c6]) will closed
09:28:54.480 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:28:54.481 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:29:02.231 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x14e004c9]) will closed
09:29:02.235 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:29:02.235 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:29:04.488 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x44e4b750]) will closed
09:29:04.489 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:29:04.489 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:29:12.243 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x51246bd5]) will closed
09:29:12.244 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:29:12.244 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:29:14.495 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x909b4ad6]) will closed
09:29:14.496 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:29:14.496 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:29:22.258 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xbf2e03f2]) will closed
09:29:22.259 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:29:22.259 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:29:24.509 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6a7aacba]) will closed
09:29:24.509 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:29:24.510 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:29:32.266 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x214243b7]) will closed
09:29:32.267 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:29:32.267 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:29:34.518 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe0a8f047]) will closed
09:29:34.519 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:29:34.519 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:29:42.280 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4a6179ed]) will closed
09:29:42.280 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:29:42.280 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:29:44.531 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0404ec5f]) will closed
09:29:44.533 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:29:44.533 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:29:52.283 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xbf8ed13e]) will closed
09:29:52.285 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:29:52.285 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:29:54.537 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc636837e]) will closed
09:29:54.538 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:29:54.538 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:30:02.293 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4a3f648f]) will closed
09:30:02.295 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:30:02.296 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:30:04.545 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe4dd66fc]) will closed
09:30:04.546 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:30:04.547 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:30:11.563 [nacos-grpc-client-executor-248] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Receive server push request, request = NotifySubscriberRequest, requestId = 100
09:30:11.567 [nacos-grpc-client-executor-248] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Ack server push request, request = NotifySubscriberRequest, requestId = 100
09:30:12.301 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5cc41055]) will closed
09:30:12.302 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:30:12.302 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:30:14.549 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xfe9c15c7]) will closed
09:30:14.552 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:30:14.553 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.150.1:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:30:22.310 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x291a5366]) will closed
09:30:22.311 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.150.1:8091
09:30:22.311 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.150.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:30:24.561 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc37125cc]) will closed
09:30:26.596 [nacos-grpc-client-executor-252] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Receive server push request, request = NotifySubscriberRequest, requestId = 107
09:30:26.603 [nacos-grpc-client-executor-252] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Ack server push request, request = NotifySubscriberRequest, requestId = 107
09:30:32.317 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd5a1f76f]) will closed
09:31:10.468 [nacos-grpc-client-executor-261] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Receive server push request, request = NotifySubscriberRequest, requestId = 114
09:31:10.472 [nacos-grpc-client-executor-261] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6d3235-999d-4882-bee0-6e332f048aaa] Ack server push request, request = NotifySubscriberRequest, requestId = 114
09:31:31.148 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:31:31.149 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:31:31.418 [timeoutChecker_1_1] INFO  i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:1.7.0,channel:[id: 0x454387e7, L:/192.168.110.235:60840 - R:/192.168.110.188:8091]
09:31:31.418 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 267 ms, version:1.7.0,role:TMROLE,channel:[id: 0x454387e7, L:/192.168.110.235:60840 - R:/192.168.110.188:8091]
09:31:33.513 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:31:33.514 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:31:33.524 [timeoutChecker_2_1] INFO  i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:1.7.0,channel:[id: 0x0d110548, L:/192.168.110.235:60842 - R:/192.168.110.188:8091]
09:31:33.524 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 8 ms, version:1.7.0,role:RMROLE,channel:[id: 0x0d110548, L:/192.168.110.235:60842 - R:/192.168.110.188:8091]
09:32:54.952 [SpringContextShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
09:32:54.955 [SpringContextShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
09:32:55.316 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
09:32:55.317 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1d5ed36e[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
09:32:55.317 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718241059612_192.168.110.235_57647
09:32:55.319 [SpringContextShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@134904b0[Running, pool size = 5, active threads = 1, queued tasks = 0, completed tasks = 271]
09:32:55.324 [nacos-grpc-client-executor-271] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718241059612_192.168.110.235_57647]Ignore complete event,isRunning:false,isAbandon=false
09:32:55.495 [SpringContextShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
09:32:55.499 [SpringContextShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
09:32:55.516 [SpringContextShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
09:32:55.517 [SpringContextShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
09:32:55.520 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x454387e7, L:/192.168.110.235:60840 ! R:/192.168.110.188:8091]
09:32:55.520 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x454387e7, L:/192.168.110.235:60840 ! R:/192.168.110.188:8091]
09:32:55.520 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x454387e7, L:/192.168.110.235:60840 ! R:/192.168.110.188:8091]
09:32:55.520 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x454387e7, L:/192.168.110.235:60840 ! R:/192.168.110.188:8091]
09:32:55.521 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x454387e7, L:/192.168.110.235:60840 ! R:/192.168.110.188:8091]) will closed
09:32:55.521 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x454387e7, L:/192.168.110.235:60840 ! R:/192.168.110.188:8091]) will closed
09:32:55.521 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x0d110548, L:/192.168.110.235:60842 ! R:/192.168.110.188:8091]
09:32:55.521 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x0d110548, L:/192.168.110.235:60842 ! R:/192.168.110.188:8091]
09:32:55.521 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x0d110548, L:/192.168.110.235:60842 ! R:/192.168.110.188:8091]
09:32:55.522 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x0d110548, L:/192.168.110.235:60842 ! R:/192.168.110.188:8091]
09:32:55.522 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0d110548, L:/192.168.110.235:60842 ! R:/192.168.110.188:8091]) will closed
09:32:55.522 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0d110548, L:/192.168.110.235:60842 ! R:/192.168.110.188:8091]) will closed
09:33:12.331 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:33:14.245 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 35aaaa08-40df-446a-877a-2321a02338f0_config-0
09:33:14.386 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 90 ms to scan 1 urls, producing 3 keys and 6 values 
09:33:14.465 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 31 ms to scan 1 urls, producing 4 keys and 9 values 
09:33:14.496 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 3 keys and 10 values 
09:33:14.547 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 43 ms to scan 14 urls, producing 0 keys and 0 values 
09:33:14.576 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 28 ms to scan 1 urls, producing 1 keys and 5 values 
09:33:14.605 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 1 keys and 7 values 
09:33:14.633 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 2 keys and 8 values 
09:33:14.693 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 55 ms to scan 14 urls, producing 0 keys and 0 values 
09:33:14.695 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:33:14.697 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/593045830
09:33:14.697 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/65310008
09:33:14.699 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:33:14.701 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:33:14.719 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:33:18.148 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718242396720_192.168.110.235_61168
09:33:18.149 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Notify connected event to listeners.
09:33:18.151 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:33:18.152 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/2078470810
09:33:18.368 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:33:24.523 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
09:33:24.716 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
09:33:24.738 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
09:33:24.930 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 647f9883-3238-4072-822b-fcaddf3d21f5_config-0
09:33:24.931 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:33:24.931 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/593045830
09:33:24.932 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/65310008
09:33:24.932 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:33:24.932 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:33:24.933 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:33:25.052 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718242403838_192.168.110.235_61219
09:33:25.052 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Notify connected event to listeners.
09:33:25.052 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:33:25.053 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/2078470810
09:33:25.250 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
09:33:25.579 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:33:25.793 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 3ded8b0d-493b-4d98-a272-16f4cfc4dc7d
09:33:25.793 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] RpcClient init label, labels = {module=naming, source=sdk}
09:33:25.798 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:33:25.798 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:33:25.799 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:33:25.800 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:33:25.925 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718242404707_192.168.110.235_61223
09:33:25.926 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:33:25.926 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Notify connected event to listeners.
09:33:25.926 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/2078470810
09:33:25.979 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:33:26.482 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Receive server push request, request = NotifySubscriberRequest, requestId = 128
09:33:26.487 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Ack server push request, request = NotifySubscriberRequest, requestId = 128
09:33:26.548 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:33:28.071 [main] INFO  i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:1.7.0,channel:[id: 0x98695525, L:/192.168.110.235:61264 - R:/192.168.110.188:8091]
09:33:28.083 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 155 ms, version:1.7.0,role:TMROLE,channel:[id: 0x98695525, L:/192.168.110.235:61264 - R:/192.168.110.188:8091]
09:33:28.085 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
09:33:28.186 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
09:33:28.187 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
09:33:28.213 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:33:28.213 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
09:33:28.213 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
09:33:30.164 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
09:33:30.165 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:33:30.171 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:33:30.505 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:33:31.486 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:33:31.488 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:33:31.489 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:33:39.480 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:33:46.334 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:33:46.586 [redisson-netty-4-5] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:33:46.705 [redisson-netty-4-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
09:33:51.369 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8317a51a-3713-4aa5-adfa-d0cd0a70fd52
09:33:51.370 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] RpcClient init label, labels = {module=naming, source=sdk}
09:33:51.371 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:33:51.371 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:33:51.372 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:33:51.372 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:33:51.490 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718242430277_192.168.110.235_61691
09:33:51.491 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:33:51.491 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/2078470810
09:33:51.491 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Notify connected event to listeners.
09:33:51.503 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
09:33:51.544 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
09:33:52.085 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 136
09:33:52.092 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 136
09:33:54.136 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 43.992 seconds (JVM running for 46.945)
09:33:54.175 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
09:33:54.202 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
09:33:54.214 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
09:33:55.693 [RMI TCP Connection(8)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:34:28.220 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:34:28.223 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
09:34:28.232 [timeoutChecker_2_1] INFO  i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:1.7.0,channel:[id: 0x16791b44, L:/192.168.110.235:62225 - R:/192.168.110.188:8091]
09:34:28.232 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 6 ms, version:1.7.0,role:RMROLE,channel:[id: 0x16791b44, L:/192.168.110.235:62225 - R:/192.168.110.188:8091]
12:20:36.735 [lettuce-nioEventLoop-7-1] INFO  i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.io.IOException: 远程主机强迫关闭了一个现有的连接。
java.io.IOException: 远程主机强迫关闭了一个现有的连接。
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:380)
    at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:259)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
    at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
    at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
    at java.lang.Thread.run(Thread.java:748)
12:20:37.045 [lettuce-eventExecutorLoop-2-2] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
12:20:37.201 [lettuce-nioEventLoop-7-3] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
15:07:17.226 [lettuce-nioEventLoop-7-3] INFO  i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.io.IOException: 远程主机强迫关闭了一个现有的连接。
java.io.IOException: 远程主机强迫关闭了一个现有的连接。
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:380)
    at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:259)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
    at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
    at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
    at java.lang.Thread.run(Thread.java:748)
15:07:17.232 [lettuce-eventExecutorLoop-2-1] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
15:07:17.257 [lettuce-nioEventLoop-7-4] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
16:14:49.772 [nacos-grpc-client-executor-4818] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 592
16:14:49.773 [nacos-grpc-client-executor-4818] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 592
16:18:43.407 [nacos-grpc-client-executor-4866] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 598
16:18:43.410 [nacos-grpc-client-executor-4866] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 598
16:19:12.065 [nacos-grpc-client-executor-4873] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 604
16:19:12.070 [nacos-grpc-client-executor-4873] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 604
16:20:20.197 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Server healthy check fail, currentConnection = 1718242396720_192.168.110.235_61168
16:20:20.197 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Server healthy check fail, currentConnection = 1718242404707_192.168.110.235_61223
16:20:20.197 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Server healthy check fail, currentConnection = 1718242403838_192.168.110.235_61219
16:20:20.197 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Server healthy check fail, currentConnection = 1718242430277_192.168.110.235_61691
16:20:20.198 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:20:20.198 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:20:20.198 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:20:20.198 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:20:20.646 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Success to connect a server [192.168.110.235:8848], connectionId = 1718266819525_192.168.110.235_60884
16:20:20.646 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718266819524_192.168.110.235_60883
16:20:20.646 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718242430277_192.168.110.235_61691
16:20:20.646 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718242403838_192.168.110.235_61219
16:20:20.646 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718242403838_192.168.110.235_61219
16:20:20.646 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718242430277_192.168.110.235_61691
16:20:20.647 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Success to connect a server [192.168.110.235:8848], connectionId = 1718266819525_192.168.110.235_60886
16:20:20.647 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718266819526_192.168.110.235_60885
16:20:20.647 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718242404707_192.168.110.235_61223
16:20:20.647 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718242404707_192.168.110.235_61223
16:20:20.647 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718242396720_192.168.110.235_61168
16:20:20.648 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718242396720_192.168.110.235_61168
16:20:20.656 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Notify disconnected event to listeners
16:20:20.656 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Notify disconnected event to listeners
16:20:20.656 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Notify disconnected event to listeners
16:20:20.656 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Notify disconnected event to listeners
16:20:20.668 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Notify connected event to listeners.
16:20:20.668 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Notify connected event to listeners.
16:20:20.680 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Notify connected event to listeners.
16:20:20.687 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Notify connected event to listeners.
16:20:22.923 [nacos-grpc-client-executor-4895] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Receive server push request, request = NotifySubscriberRequest, requestId = 626
16:20:22.923 [nacos-grpc-client-executor-4895] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Ack server push request, request = NotifySubscriberRequest, requestId = 626
16:20:23.576 [nacos-grpc-client-executor-4894] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 627
16:20:23.576 [nacos-grpc-client-executor-4894] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 627
16:20:23.580 [nacos-grpc-client-executor-4895] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 628
16:20:23.580 [nacos-grpc-client-executor-4895] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 628
16:20:29.657 [nacos-grpc-client-executor-4896] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 640
16:20:29.658 [nacos-grpc-client-executor-4896] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 640
16:20:53.838 [nacos-grpc-client-executor-4901] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 643
16:20:53.841 [nacos-grpc-client-executor-4901] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 643
16:21:33.827 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Server healthy check fail, currentConnection = 1718266819526_192.168.110.235_60885
16:21:33.827 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Server healthy check fail, currentConnection = 1718266819524_192.168.110.235_60883
16:21:33.827 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Server healthy check fail, currentConnection = 1718266819525_192.168.110.235_60886
16:21:33.827 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:21:33.827 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:21:33.827 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:21:33.999 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718266892860_192.168.110.235_60919
16:21:33.999 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Success to connect a server [192.168.110.235:8848], connectionId = 1718266892854_192.168.110.235_60917
16:21:33.999 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718266892859_192.168.110.235_60918
16:21:33.999 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718266819524_192.168.110.235_60883
16:21:33.999 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718266819525_192.168.110.235_60886
16:21:33.999 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718266819526_192.168.110.235_60885
16:21:33.999 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718266819524_192.168.110.235_60883
16:21:33.999 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718266819525_192.168.110.235_60886
16:21:34.000 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718266819526_192.168.110.235_60885
16:21:34.003 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Notify disconnected event to listeners
16:21:34.003 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Notify disconnected event to listeners
16:21:34.003 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Notify disconnected event to listeners
16:21:34.005 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Notify connected event to listeners.
16:21:34.015 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Notify connected event to listeners.
16:21:34.078 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Notify connected event to listeners.
16:21:35.132 [nacos-grpc-client-executor-4916] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Receive server push request, request = NotifySubscriberRequest, requestId = 653
16:21:35.133 [nacos-grpc-client-executor-4916] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Ack server push request, request = NotifySubscriberRequest, requestId = 653
16:22:34.722 [nacos-grpc-client-executor-4921] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 664
16:22:34.726 [nacos-grpc-client-executor-4921] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 664
16:35:27.061 [nacos-grpc-client-executor-5077] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 669
16:35:27.070 [nacos-grpc-client-executor-5077] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 669
16:35:34.006 [nacos-grpc-client-executor-5079] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 671
16:35:34.011 [nacos-grpc-client-executor-5079] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 671
16:36:05.615 [nacos-grpc-client-executor-5085] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 689
16:36:05.618 [nacos-grpc-client-executor-5085] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 689
16:37:42.871 [nacos-grpc-client-executor-5105] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 692
16:37:42.874 [nacos-grpc-client-executor-5105] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 692
16:41:08.683 [nacos-grpc-client-executor-5146] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 701
16:41:08.688 [nacos-grpc-client-executor-5146] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 701
16:41:20.544 [nacos-grpc-client-executor-5149] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 705
16:41:20.547 [nacos-grpc-client-executor-5149] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 705
16:45:07.654 [nacos-grpc-client-executor-5194] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 712
16:45:07.658 [nacos-grpc-client-executor-5194] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 712
16:46:51.639 [nacos-grpc-client-executor-5216] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 718
16:46:51.643 [nacos-grpc-client-executor-5216] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 718
17:02:02.084 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x16791b44, L:/192.168.110.235:62225 - R:/192.168.110.188:8091] read idle.
17:02:02.085 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x16791b44, L:/192.168.110.235:62225 - R:/192.168.110.188:8091]
17:02:02.088 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x98695525, L:/192.168.110.235:61264 - R:/192.168.110.188:8091] read idle.
17:02:02.089 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x98695525, L:/192.168.110.235:61264 - R:/192.168.110.188:8091]
17:02:02.092 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x16791b44, L:/192.168.110.235:62225 - R:/192.168.110.188:8091]) will closed
17:02:02.093 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x16791b44, L:/192.168.110.235:62225 ! R:/192.168.110.188:8091]) will closed
17:02:02.094 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x98695525, L:/192.168.110.235:61264 - R:/192.168.110.188:8091]) will closed
17:02:02.094 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x98695525, L:/192.168.110.235:61264 ! R:/192.168.110.188:8091]) will closed
17:02:02.117 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x16791b44, L:/192.168.110.235:62225 ! R:/192.168.110.188:8091]
17:02:02.117 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x98695525, L:/192.168.110.235:61264 ! R:/192.168.110.188:8091]
17:02:02.117 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x16791b44, L:/192.168.110.235:62225 ! R:/192.168.110.188:8091]
17:02:02.117 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x98695525, L:/192.168.110.235:61264 ! R:/192.168.110.188:8091]
17:02:02.117 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x16791b44, L:/192.168.110.235:62225 ! R:/192.168.110.188:8091]
17:02:02.117 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x98695525, L:/192.168.110.235:61264 ! R:/192.168.110.188:8091]
17:02:02.117 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x16791b44, L:/192.168.110.235:62225 ! R:/192.168.110.188:8091]) will closed
17:02:02.117 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x98695525, L:/192.168.110.235:61264 ! R:/192.168.110.188:8091]) will closed
17:02:02.117 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x16791b44, L:/192.168.110.235:62225 ! R:/192.168.110.188:8091]) will closed
17:02:02.117 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x98695525, L:/192.168.110.235:61264 ! R:/192.168.110.188:8091]) will closed
17:02:02.118 [nacos-grpc-client-executor-5385] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Receive server push request, request = ClientDetectionRequest, requestId = 725
17:02:02.118 [nacos-grpc-client-executor-5381] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = ClientDetectionRequest, requestId = 724
17:02:02.118 [nacos-grpc-client-executor-5386] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 729
17:02:02.119 [nacos-grpc-client-executor-5386] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 729
17:02:02.119 [nacos-grpc-client-executor-5385] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Ack server push request, request = ClientDetectionRequest, requestId = 725
17:02:02.119 [nacos-grpc-client-executor-5381] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = ClientDetectionRequest, requestId = 724
17:02:02.118 [nacos-grpc-client-executor-5392] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 730
17:02:02.119 [nacos-grpc-client-executor-5392] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 730
17:02:02.128 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x98695525, L:/192.168.110.235:61264 ! R:/192.168.110.188:8091]
17:02:02.128 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x16791b44, L:/192.168.110.235:62225 ! R:/192.168.110.188:8091]
17:02:02.129 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x16791b44, L:/192.168.110.235:62225 ! R:/192.168.110.188:8091]
17:02:02.129 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x98695525, L:/192.168.110.235:61264 ! R:/192.168.110.188:8091]
17:02:02.129 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x16791b44, L:/192.168.110.235:62225 ! R:/192.168.110.188:8091]
17:02:02.129 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x98695525, L:/192.168.110.235:61264 ! R:/192.168.110.188:8091]
17:02:02.129 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x16791b44, L:/192.168.110.235:62225 ! R:/192.168.110.188:8091]) will closed
17:02:02.129 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x98695525, L:/192.168.110.235:61264 ! R:/192.168.110.188:8091]) will closed
17:02:02.129 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x98695525, L:/192.168.110.235:61264 ! R:/192.168.110.188:8091]) will closed
17:02:02.129 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x16791b44, L:/192.168.110.235:62225 ! R:/192.168.110.188:8091]) will closed
17:02:02.143 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Server healthy check fail, currentConnection = 1718266892860_192.168.110.235_60919
17:02:02.144 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Server healthy check fail, currentConnection = 1718266892854_192.168.110.235_60917
17:02:02.144 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Server healthy check fail, currentConnection = 1718266892859_192.168.110.235_60918
17:02:02.144 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:02:02.144 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:02:02.145 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:02:02.146 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Server healthy check fail, currentConnection = 1718266819525_192.168.110.235_60884
17:02:02.147 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:02:02.268 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718269321184_192.168.110.235_62658
17:02:02.268 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Success to connect a server [192.168.110.235:8848], connectionId = 1718269321182_192.168.110.235_62657
17:02:02.268 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718269321182_192.168.110.235_62659
17:02:02.268 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Success to connect a server [192.168.110.235:8848], connectionId = 1718269321184_192.168.110.235_62660
17:02:02.268 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718266892860_192.168.110.235_60919
17:02:02.268 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718266819525_192.168.110.235_60884
17:02:02.269 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718266892854_192.168.110.235_60917
17:02:02.268 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718266892859_192.168.110.235_60918
17:02:02.269 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718266892854_192.168.110.235_60917
17:02:02.269 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718266892860_192.168.110.235_60919
17:02:02.269 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718266819525_192.168.110.235_60884
17:02:02.269 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718266892859_192.168.110.235_60918
17:02:02.269 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:02:02.269 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:02:02.269 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:02:02.270 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Notify disconnected event to listeners
17:02:02.270 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:02:02.270 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Notify disconnected event to listeners
17:02:02.270 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Notify disconnected event to listeners
17:02:02.270 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Notify disconnected event to listeners
17:02:02.271 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Notify connected event to listeners.
17:02:02.271 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Notify connected event to listeners.
17:02:02.280 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Notify connected event to listeners.
17:02:02.291 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Notify connected event to listeners.
17:02:02.887 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Success to connect a server [192.168.110.235:8848], connectionId = 1718269321301_192.168.110.235_62661
17:02:02.887 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718269321792_192.168.110.235_62663
17:02:02.887 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718269321795_192.168.110.235_62664
17:02:02.887 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Success to connect a server [192.168.110.235:8848], connectionId = 1718269321792_192.168.110.235_62662
17:02:02.887 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718269321184_192.168.110.235_62658
17:02:02.887 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718269321184_192.168.110.235_62660
17:02:02.887 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718269321182_192.168.110.235_62659
17:02:02.887 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718269321184_192.168.110.235_62658
17:02:02.887 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718269321184_192.168.110.235_62660
17:02:02.887 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718269321182_192.168.110.235_62657
17:02:02.887 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718269321182_192.168.110.235_62659
17:02:02.887 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718269321182_192.168.110.235_62657
17:02:02.888 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Notify disconnected event to listeners
17:02:02.888 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Notify disconnected event to listeners
17:02:02.888 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Notify disconnected event to listeners
17:02:02.888 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Notify connected event to listeners.
17:02:02.889 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Notify disconnected event to listeners
17:02:02.890 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Notify connected event to listeners.
17:02:02.890 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Notify connected event to listeners.
17:02:02.890 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Notify connected event to listeners.
17:02:02.890 [nacos-grpc-client-executor-5401] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718269321184_192.168.110.235_62658]Ignore complete event,isRunning:true,isAbandon=true
17:02:02.891 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Server check success, currentServer is 192.168.110.235:8848
17:02:02.891 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Server check success, currentServer is 192.168.110.235:8848
17:02:05.564 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:02:05.593 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
17:02:05.600 [timeoutChecker_1_1] INFO  i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:1.7.0,channel:[id: 0x7f7d8012, L:/192.168.110.235:62666 - R:/192.168.110.188:8091]
17:02:05.609 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 12 ms, version:1.7.0,role:TMROLE,channel:[id: 0x7f7d8012, L:/192.168.110.235:62666 - R:/192.168.110.188:8091]
17:02:05.700 [nacos-grpc-client-executor-5398] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 732
17:02:05.701 [nacos-grpc-client-executor-5398] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Receive server push request, request = NotifySubscriberRequest, requestId = 733
17:02:05.701 [nacos-grpc-client-executor-5398] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Ack server push request, request = NotifySubscriberRequest, requestId = 733
17:02:05.701 [nacos-grpc-client-executor-5398] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 732
17:02:05.703 [nacos-grpc-client-executor-5399] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 736
17:02:05.704 [nacos-grpc-client-executor-5399] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 736
17:02:08.213 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:02:08.216 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
17:02:08.256 [timeoutChecker_2_1] INFO  i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:1.7.0,channel:[id: 0xab9d0f84, L:/192.168.110.235:62668 - R:/192.168.110.188:8091]
17:02:08.257 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 17 ms, version:1.7.0,role:RMROLE,channel:[id: 0xab9d0f84, L:/192.168.110.235:62668 - R:/192.168.110.188:8091]
17:05:22.538 [nacos-grpc-client-executor-5439] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 738
17:05:22.543 [nacos-grpc-client-executor-5439] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 738
17:05:58.137 [nacos-grpc-client-executor-5446] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 742
17:05:58.141 [nacos-grpc-client-executor-5446] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 742
17:09:40.022 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x7f7d8012, L:/192.168.110.235:62666 - R:/192.168.110.188:8091] read idle.
17:09:40.024 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xab9d0f84, L:/192.168.110.235:62668 ! R:/192.168.110.188:8091]
17:09:40.023 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x7f7d8012, L:/192.168.110.235:62666 - R:/192.168.110.188:8091]
17:09:40.024 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xab9d0f84, L:/192.168.110.235:62668 ! R:/192.168.110.188:8091]
17:09:40.027 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xab9d0f84, L:/192.168.110.235:62668 ! R:/192.168.110.188:8091]
17:09:40.026 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7f7d8012, L:/192.168.110.235:62666 - R:/192.168.110.188:8091]) will closed
17:09:40.027 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xab9d0f84, L:/192.168.110.235:62668 ! R:/192.168.110.188:8091]
17:09:40.028 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xab9d0f84, L:/192.168.110.235:62668 ! R:/192.168.110.188:8091]) will closed
17:09:40.028 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xab9d0f84, L:/192.168.110.235:62668 ! R:/192.168.110.188:8091]) will closed
17:09:40.028 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7f7d8012, L:/192.168.110.235:62666 ! R:/192.168.110.188:8091]) will closed
17:09:40.029 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x7f7d8012, L:/192.168.110.235:62666 ! R:/192.168.110.188:8091]
17:09:40.029 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x7f7d8012, L:/192.168.110.235:62666 ! R:/192.168.110.188:8091]
17:09:40.029 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x7f7d8012, L:/192.168.110.235:62666 ! R:/192.168.110.188:8091]
17:09:40.029 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7f7d8012, L:/192.168.110.235:62666 ! R:/192.168.110.188:8091]) will closed
17:09:40.029 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7f7d8012, L:/192.168.110.235:62666 ! R:/192.168.110.188:8091]) will closed
17:09:40.030 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x7f7d8012, L:/192.168.110.235:62666 ! R:/192.168.110.188:8091]
17:09:40.030 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x7f7d8012, L:/192.168.110.235:62666 ! R:/192.168.110.188:8091]
17:09:40.030 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x7f7d8012, L:/192.168.110.235:62666 ! R:/192.168.110.188:8091]
17:09:40.030 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7f7d8012, L:/192.168.110.235:62666 ! R:/192.168.110.188:8091]) will closed
17:09:40.030 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7f7d8012, L:/192.168.110.235:62666 ! R:/192.168.110.188:8091]) will closed
17:14:56.129 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:14:56.130 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
17:14:56.130 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:14:56.130 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
17:14:56.140 [nacos-grpc-client-executor-5484] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 745
17:14:56.140 [nacos-grpc-client-executor-5484] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 745
17:14:56.143 [nacos-grpc-client-executor-5487] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = ClientDetectionRequest, requestId = 747
17:14:56.142 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Server healthy check fail, currentConnection = 1718269321792_192.168.110.235_62662
17:14:56.145 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Server healthy check fail, currentConnection = 1718269321301_192.168.110.235_62661
17:14:56.146 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:14:56.146 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:14:56.146 [nacos-grpc-client-executor-5485] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Receive server push request, request = ClientDetectionRequest, requestId = 744
17:14:56.146 [nacos-grpc-client-executor-5485] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Ack server push request, request = ClientDetectionRequest, requestId = 744
17:14:56.144 [timeoutChecker_1_1] INFO  i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:1.7.0,channel:[id: 0x8a515ab6, L:/192.168.110.235:63512 - R:/192.168.110.188:8091]
17:14:56.144 [nacos-grpc-client-executor-5491] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 746
17:14:56.144 [nacos-grpc-client-executor-5487] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = ClientDetectionRequest, requestId = 747
17:14:56.147 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 7 ms, version:1.7.0,role:TMROLE,channel:[id: 0x8a515ab6, L:/192.168.110.235:63512 - R:/192.168.110.188:8091]
17:14:56.147 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Server healthy check fail, currentConnection = 1718269321795_192.168.110.235_62664
17:14:56.147 [nacos-grpc-client-executor-5491] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 746
17:14:56.147 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:14:56.148 [nacos-grpc-client-executor-5485] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718269321301_192.168.110.235_62661]Ignore complete event,isRunning:false,isAbandon=false
17:14:56.145 [timeoutChecker_2_1] INFO  i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:1.7.0,channel:[id: 0x4ac2d03c, L:/192.168.110.235:63513 - R:/192.168.110.188:8091]
17:14:56.151 [nacos-grpc-client-executor-5487] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718269321792_192.168.110.235_62662]Ignore complete event,isRunning:false,isAbandon=false
17:14:56.154 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 13 ms, version:1.7.0,role:RMROLE,channel:[id: 0x4ac2d03c, L:/192.168.110.235:63513 - R:/192.168.110.188:8091]
17:14:56.158 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Server healthy check fail, currentConnection = 1718269321792_192.168.110.235_62663
17:14:56.159 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:14:56.290 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Success to connect a server [192.168.110.235:8848], connectionId = 1718270095208_192.168.110.235_63518
17:14:56.290 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718270095206_192.168.110.235_63517
17:14:56.290 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Success to connect a server [192.168.110.235:8848], connectionId = 1718270095205_192.168.110.235_63516
17:14:56.290 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718269321792_192.168.110.235_62662
17:14:56.290 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718269321301_192.168.110.235_62661
17:14:56.290 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718269321792_192.168.110.235_62662
17:14:56.290 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718269321795_192.168.110.235_62664
17:14:56.290 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718269321301_192.168.110.235_62661
17:14:56.290 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Notify disconnected event to listeners
17:14:56.290 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Notify disconnected event to listeners
17:14:56.290 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718269321795_192.168.110.235_62664
17:14:56.292 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Notify disconnected event to listeners
17:14:56.292 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Notify connected event to listeners.
17:14:56.292 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Notify connected event to listeners.
17:14:56.299 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Notify connected event to listeners.
17:14:56.306 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718270095208_192.168.110.235_63519
17:14:56.306 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718269321792_192.168.110.235_62663
17:14:56.306 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718269321792_192.168.110.235_62663
17:14:56.306 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:14:56.307 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Notify disconnected event to listeners
17:14:56.308 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Notify connected event to listeners.
17:14:56.361 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Server check success, currentServer is 192.168.110.235:8848
17:14:56.361 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Server check success, currentServer is 192.168.110.235:8848
17:14:56.430 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718270095344_192.168.110.235_63520
17:14:56.430 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270095208_192.168.110.235_63519
17:14:56.431 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270095208_192.168.110.235_63519
17:14:56.431 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Notify disconnected event to listeners
17:14:56.432 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Notify connected event to listeners.
17:14:59.647 [nacos-grpc-client-executor-5500] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 757
17:14:59.647 [nacos-grpc-client-executor-5494] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Receive server push request, request = NotifySubscriberRequest, requestId = 755
17:14:59.647 [nacos-grpc-client-executor-5494] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Ack server push request, request = NotifySubscriberRequest, requestId = 755
17:14:59.647 [nacos-grpc-client-executor-5500] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 757
17:14:59.649 [nacos-grpc-client-executor-5501] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 756
17:14:59.649 [nacos-grpc-client-executor-5501] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 756
17:16:51.320 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x4ac2d03c, L:/192.168.110.235:63513 - R:/192.168.110.188:8091] read idle.
17:16:51.321 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x4ac2d03c, L:/192.168.110.235:63513 - R:/192.168.110.188:8091]
17:16:51.321 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4ac2d03c, L:/192.168.110.235:63513 - R:/192.168.110.188:8091]) will closed
17:16:51.322 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4ac2d03c, L:/192.168.110.235:63513 ! R:/192.168.110.188:8091]) will closed
17:16:51.322 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x4ac2d03c, L:/192.168.110.235:63513 ! R:/192.168.110.188:8091]
17:16:51.322 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x4ac2d03c, L:/192.168.110.235:63513 ! R:/192.168.110.188:8091]
17:16:51.323 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x4ac2d03c, L:/192.168.110.235:63513 ! R:/192.168.110.188:8091]
17:16:51.323 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4ac2d03c, L:/192.168.110.235:63513 ! R:/192.168.110.188:8091]) will closed
17:16:51.323 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4ac2d03c, L:/192.168.110.235:63513 ! R:/192.168.110.188:8091]) will closed
17:16:51.323 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x8a515ab6, L:/192.168.110.235:63512 - R:/192.168.110.188:8091] read idle.
17:16:51.325 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x8a515ab6, L:/192.168.110.235:63512 - R:/192.168.110.188:8091]
17:16:51.325 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x4ac2d03c, L:/192.168.110.235:63513 ! R:/192.168.110.188:8091]
17:16:51.325 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8a515ab6, L:/192.168.110.235:63512 - R:/192.168.110.188:8091]) will closed
17:16:51.325 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x4ac2d03c, L:/192.168.110.235:63513 ! R:/192.168.110.188:8091]
17:16:51.323 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:16:51.326 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x4ac2d03c, L:/192.168.110.235:63513 ! R:/192.168.110.188:8091]
17:16:51.326 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4ac2d03c, L:/192.168.110.235:63513 ! R:/192.168.110.188:8091]) will closed
17:16:51.326 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8a515ab6, L:/192.168.110.235:63512 ! R:/192.168.110.188:8091]) will closed
17:16:51.329 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4ac2d03c, L:/192.168.110.235:63513 ! R:/192.168.110.188:8091]) will closed
17:16:51.329 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x8a515ab6, L:/192.168.110.235:63512 ! R:/192.168.110.188:8091]
17:16:51.329 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x8a515ab6, L:/192.168.110.235:63512 ! R:/192.168.110.188:8091]
17:16:51.329 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x8a515ab6, L:/192.168.110.235:63512 ! R:/192.168.110.188:8091]
17:16:51.330 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8a515ab6, L:/192.168.110.235:63512 ! R:/192.168.110.188:8091]) will closed
17:16:51.330 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
17:16:51.330 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8a515ab6, L:/192.168.110.235:63512 ! R:/192.168.110.188:8091]) will closed
17:16:51.330 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x8a515ab6, L:/192.168.110.235:63512 ! R:/192.168.110.188:8091]
17:16:51.330 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x8a515ab6, L:/192.168.110.235:63512 ! R:/192.168.110.188:8091]
17:16:51.330 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x8a515ab6, L:/192.168.110.235:63512 ! R:/192.168.110.188:8091]
17:16:51.333 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:16:51.331 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8a515ab6, L:/192.168.110.235:63512 ! R:/192.168.110.188:8091]) will closed
17:16:51.373 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8a515ab6, L:/192.168.110.235:63512 ! R:/192.168.110.188:8091]) will closed
17:16:51.374 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
17:16:51.375 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Server healthy check fail, currentConnection = 1718270095208_192.168.110.235_63518
17:16:51.375 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:16:51.377 [nacos-grpc-client-executor-5497] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Receive server push request, request = NotifySubscriberRequest, requestId = 767
17:16:51.377 [nacos-grpc-client-executor-5507] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 795
17:16:51.377 [nacos-grpc-client-executor-5494] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 796
17:16:51.377 [nacos-grpc-client-executor-5497] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Ack server push request, request = NotifySubscriberRequest, requestId = 767
17:16:51.378 [nacos-grpc-client-executor-5494] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 796
17:16:51.377 [nacos-grpc-client-executor-5507] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 795
17:16:51.386 [nacos-grpc-client-executor-5504] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = NotifySubscriberRequest, requestId = 771
17:16:51.386 [timeoutChecker_1_1] INFO  i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:1.7.0,channel:[id: 0x3822dde7, L:/192.168.110.235:63712 - R:/192.168.110.188:8091]
17:16:51.386 [timeoutChecker_2_1] INFO  i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:1.7.0,channel:[id: 0x4bcbe3ef, L:/192.168.110.235:63711 - R:/192.168.110.188:8091]
17:16:51.387 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 4 ms, version:1.7.0,role:TMROLE,channel:[id: 0x3822dde7, L:/192.168.110.235:63712 - R:/192.168.110.188:8091]
17:16:51.387 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 5 ms, version:1.7.0,role:RMROLE,channel:[id: 0x4bcbe3ef, L:/192.168.110.235:63711 - R:/192.168.110.188:8091]
17:16:51.387 [nacos-grpc-client-executor-5504] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = NotifySubscriberRequest, requestId = 771
17:16:51.388 [nacos-grpc-client-executor-5500] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Receive server push request, request = ClientDetectionRequest, requestId = 797
17:16:51.388 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Server healthy check fail, currentConnection = 1718270095205_192.168.110.235_63516
17:16:51.388 [nacos-grpc-client-executor-5500] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Ack server push request, request = ClientDetectionRequest, requestId = 797
17:16:51.388 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:16:51.390 [nacos-grpc-client-executor-5508] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Receive server push request, request = ClientDetectionRequest, requestId = 798
17:16:51.392 [nacos-grpc-client-executor-5508] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Ack server push request, request = ClientDetectionRequest, requestId = 798
17:16:51.393 [nacos-grpc-client-executor-5508] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718270095208_192.168.110.235_63518]Ignore complete event,isRunning:false,isAbandon=false
17:16:51.391 [nacos-grpc-client-executor-5500] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718270095205_192.168.110.235_63516]Ignore complete event,isRunning:false,isAbandon=false
17:16:51.394 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Server healthy check fail, currentConnection = 1718270095344_192.168.110.235_63520
17:16:51.394 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:16:51.396 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Server healthy check fail, currentConnection = 1718270095206_192.168.110.235_63517
17:16:51.396 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:16:51.498 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Success to connect a server [192.168.110.235:8848], connectionId = 1718270210416_192.168.110.235_63713
17:16:51.498 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270095208_192.168.110.235_63518
17:16:51.498 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270095208_192.168.110.235_63518
17:16:51.498 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Notify disconnected event to listeners
17:16:51.499 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8317a51a-3713-4aa5-adfa-d0cd0a70fd52] Notify connected event to listeners.
17:16:51.513 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718270210429_192.168.110.235_63715
17:16:51.513 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Success to connect a server [192.168.110.235:8848], connectionId = 1718270210427_192.168.110.235_63714
17:16:51.513 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718270210433_192.168.110.235_63716
17:16:51.513 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270095344_192.168.110.235_63520
17:16:51.513 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270095205_192.168.110.235_63516
17:16:51.513 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270095344_192.168.110.235_63520
17:16:51.513 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270095206_192.168.110.235_63517
17:16:51.513 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270095205_192.168.110.235_63516
17:16:51.513 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270095206_192.168.110.235_63517
17:16:51.514 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:16:51.514 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Notify disconnected event to listeners
17:16:51.514 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:16:51.514 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Notify disconnected event to listeners
17:16:51.514 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Notify disconnected event to listeners
17:16:51.514 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:16:51.514 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3ded8b0d-493b-4d98-a272-16f4cfc4dc7d] Notify connected event to listeners.
17:16:51.526 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [35aaaa08-40df-446a-877a-2321a02338f0_config-0] Notify connected event to listeners.
17:16:51.528 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [647f9883-3238-4072-822b-fcaddf3d21f5_config-0] Notify connected event to listeners.
17:17:37.989 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
17:17:39.427 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0
17:17:39.525 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 60 ms to scan 1 urls, producing 3 keys and 6 values 
17:17:39.572 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values 
17:17:39.589 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values 
17:17:39.626 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 33 ms to scan 14 urls, producing 0 keys and 0 values 
17:17:39.642 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 5 values 
17:17:39.660 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values 
17:17:39.677 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values 
17:17:39.721 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 38 ms to scan 14 urls, producing 0 keys and 0 values 
17:17:39.723 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:17:39.724 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/102709691
17:17:39.724 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/614335089
17:17:39.726 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:17:39.728 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:17:39.741 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:17:41.982 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718270260800_192.168.110.235_63918
17:17:41.983 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Notify connected event to listeners.
17:17:41.984 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:17:41.985 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1775046789
17:17:42.127 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
17:17:45.669 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
17:17:45.756 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
17:17:45.767 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
17:17:45.932 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0
17:17:45.932 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:17:45.933 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/102709691
17:17:45.933 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/614335089
17:17:45.933 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:17:45.933 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:17:45.934 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:17:46.047 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718270264970_192.168.110.235_63920
17:17:46.047 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:17:46.047 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Notify connected event to listeners.
17:17:46.047 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1775046789
17:17:46.167 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
17:17:46.409 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
17:17:46.602 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 2d7cf1d5-b2b5-416e-8925-033cc9b9682f
17:17:46.603 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] RpcClient init label, labels = {module=naming, source=sdk}
17:17:46.605 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:17:46.605 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:17:46.606 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:17:46.606 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:17:46.728 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718270265642_192.168.110.235_63923
17:17:46.729 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:17:46.729 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Notify connected event to listeners.
17:17:46.730 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1775046789
17:17:46.766 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:17:47.121 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
17:17:47.316 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Receive server push request, request = NotifySubscriberRequest, requestId = 824
17:17:47.321 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Ack server push request, request = NotifySubscriberRequest, requestId = 824
17:17:47.932 [main] INFO  i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:1.7.0,channel:[id: 0xf1edc84d, L:/192.168.110.235:63924 - R:/192.168.110.188:8091]
17:17:47.940 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 87 ms, version:1.7.0,role:TMROLE,channel:[id: 0xf1edc84d, L:/192.168.110.235:63924 - R:/192.168.110.188:8091]
17:17:47.942 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
17:17:48.008 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
17:17:48.009 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
17:17:48.023 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
17:17:48.023 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
17:17:48.023 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
17:17:49.087 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
17:17:49.088 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
17:17:49.088 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
17:17:49.278 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
17:17:49.870 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
17:17:49.871 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
17:17:49.872 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
17:17:53.332 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
17:17:53.812 [redisson-netty-2-7] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
17:17:53.875 [redisson-netty-2-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
17:17:55.212 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
17:17:58.662 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 14551209-1573-4e36-8311-fc5b449b68ff
17:17:58.663 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] RpcClient init label, labels = {module=naming, source=sdk}
17:17:58.664 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:17:58.664 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:17:58.664 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:17:58.664 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:17:58.785 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718270277698_192.168.110.235_64025
17:17:58.785 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:17:58.785 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Notify connected event to listeners.
17:17:58.786 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1775046789
17:17:58.795 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
17:17:58.822 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
17:17:59.300 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Receive server push request, request = NotifySubscriberRequest, requestId = 825
17:17:59.303 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Ack server push request, request = NotifySubscriberRequest, requestId = 825
17:18:00.022 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 23.553 seconds (JVM running for 26.2)
17:18:00.053 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
17:18:00.075 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
17:18:00.089 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
17:18:00.731 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
17:18:21.550 [nacos-grpc-client-executor-13] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Receive server push request, request = NotifySubscriberRequest, requestId = 829
17:18:21.550 [nacos-grpc-client-executor-13] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Ack server push request, request = NotifySubscriberRequest, requestId = 829
17:19:43.958 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0xf1edc84d, L:/192.168.110.235:63924 - R:/192.168.110.188:8091] read idle.
17:19:43.966 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:19:43.966 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xf1edc84d, L:/192.168.110.235:63924 - R:/192.168.110.188:8091]
17:19:43.966 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf1edc84d, L:/192.168.110.235:63924 - R:/192.168.110.188:8091]) will closed
17:19:43.971 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
17:19:46.652 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf1edc84d, L:/192.168.110.235:63924 ! R:/192.168.110.188:8091]) will closed
17:19:46.653 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xf1edc84d, L:/192.168.110.235:63924 ! R:/192.168.110.188:8091]
17:19:46.655 [nacos-grpc-client-executor-22] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 840
17:19:46.656 [nacos-grpc-client-executor-22] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 840
17:19:46.656 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xf1edc84d, L:/192.168.110.235:63924 ! R:/192.168.110.188:8091]
17:19:46.656 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xf1edc84d, L:/192.168.110.235:63924 ! R:/192.168.110.188:8091]
17:19:46.656 [nacos-grpc-client-executor-16] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Receive server push request, request = NotifySubscriberRequest, requestId = 831
17:19:46.657 [nacos-grpc-client-executor-13] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Receive server push request, request = ClientDetectionRequest, requestId = 841
17:19:46.657 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf1edc84d, L:/192.168.110.235:63924 ! R:/192.168.110.188:8091]) will closed
17:19:46.657 [nacos-grpc-client-executor-13] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Ack server push request, request = ClientDetectionRequest, requestId = 841
17:19:46.657 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf1edc84d, L:/192.168.110.235:63924 ! R:/192.168.110.188:8091]) will closed
17:19:46.660 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xf1edc84d, L:/192.168.110.235:63924 ! R:/192.168.110.188:8091]
17:19:46.660 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xf1edc84d, L:/192.168.110.235:63924 ! R:/192.168.110.188:8091]
17:19:46.661 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xf1edc84d, L:/192.168.110.235:63924 ! R:/192.168.110.188:8091]
17:19:46.661 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf1edc84d, L:/192.168.110.235:63924 ! R:/192.168.110.188:8091]) will closed
17:19:46.661 [nacos-grpc-client-executor-38] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 838
17:19:46.661 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xf1edc84d, L:/192.168.110.235:63924 ! R:/192.168.110.188:8091]) will closed
17:19:46.662 [nacos-grpc-client-executor-38] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 838
17:19:46.665 [nacos-grpc-client-executor-16] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Ack server push request, request = NotifySubscriberRequest, requestId = 831
17:19:46.669 [timeoutChecker_2_1] INFO  i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:1.7.0,channel:[id: 0x85d83e51, L:/192.168.110.235:64102 - R:/192.168.110.188:8091]
17:19:46.669 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 6 ms, version:1.7.0,role:RMROLE,channel:[id: 0x85d83e51, L:/192.168.110.235:64102 - R:/192.168.110.188:8091]
17:19:46.674 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Server healthy check fail, currentConnection = 1718270265642_192.168.110.235_63923
17:19:46.674 [nacos-grpc-client-executor-20] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Receive server push request, request = NotifySubscriberRequest, requestId = 835
17:19:46.673 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Server healthy check fail, currentConnection = 1718270264970_192.168.110.235_63920
17:19:46.674 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:19:46.674 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:19:46.674 [nacos-grpc-client-executor-20] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Ack server push request, request = NotifySubscriberRequest, requestId = 835
17:19:46.673 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Server healthy check fail, currentConnection = 1718270277698_192.168.110.235_64025
17:19:46.675 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:19:46.673 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Server healthy check fail, currentConnection = 1718270260800_192.168.110.235_63918
17:19:46.675 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:19:46.680 [nacos-grpc-client-executor-21] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Receive server push request, request = NotifySubscriberRequest, requestId = 837
17:19:46.682 [nacos-grpc-client-executor-21] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Ack server push request, request = NotifySubscriberRequest, requestId = 837
17:19:46.695 [nacos-grpc-client-executor-24] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Receive server push request, request = ClientDetectionRequest, requestId = 839
17:19:46.696 [nacos-grpc-client-executor-24] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Ack server push request, request = ClientDetectionRequest, requestId = 839
17:19:46.698 [nacos-grpc-client-executor-24] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718270277698_192.168.110.235_64025]Ignore complete event,isRunning:false,isAbandon=false
17:19:46.814 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718270385717_192.168.110.235_64105
17:19:46.814 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Success to connect a server [192.168.110.235:8848], connectionId = 1718270385717_192.168.110.235_64104
17:19:46.814 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270260800_192.168.110.235_63918
17:19:46.814 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270265642_192.168.110.235_63923
17:19:46.814 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270260800_192.168.110.235_63918
17:19:46.814 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270265642_192.168.110.235_63923
17:19:46.820 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:19:46.820 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Notify disconnected event to listeners
17:19:46.820 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Notify disconnected event to listeners
17:19:46.820 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:19:46.823 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Notify connected event to listeners.
17:19:46.830 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Success to connect a server [192.168.110.235:8848], connectionId = 1718270385734_192.168.110.235_64106
17:19:46.830 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718270385734_192.168.110.235_64107
17:19:46.830 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270277698_192.168.110.235_64025
17:19:46.830 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270264970_192.168.110.235_63920
17:19:46.830 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270277698_192.168.110.235_64025
17:19:46.830 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270264970_192.168.110.235_63920
17:19:46.831 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Notify disconnected event to listeners
17:19:46.831 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:19:46.834 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Notify disconnected event to listeners
17:19:46.835 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Notify connected event to listeners.
17:19:46.836 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Notify connected event to listeners.
17:19:46.848 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Notify connected event to listeners.
17:19:46.926 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Server check success, currentServer is 192.168.110.235:8848
17:19:46.938 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718270385856_192.168.110.235_64109
17:19:46.938 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Success to connect a server [192.168.110.235:8848], connectionId = 1718270385856_192.168.110.235_64108
17:19:46.938 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270385717_192.168.110.235_64105
17:19:46.938 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270385717_192.168.110.235_64104
17:19:46.938 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270385717_192.168.110.235_64105
17:19:46.938 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270385717_192.168.110.235_64104
17:19:46.939 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Notify disconnected event to listeners
17:19:46.939 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Notify connected event to listeners.
17:19:46.939 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Notify disconnected event to listeners
17:19:46.940 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Notify connected event to listeners.
17:19:46.943 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Server check success, currentServer is 192.168.110.235:8848
17:19:46.968 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718270385878_192.168.110.235_64110
17:19:46.968 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270385734_192.168.110.235_64107
17:19:46.968 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270385734_192.168.110.235_64107
17:19:46.969 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Notify disconnected event to listeners
17:19:46.969 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Notify connected event to listeners.
17:19:47.545 [nacos-grpc-client-executor-26] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Receive server push request, request = NotifySubscriberRequest, requestId = 848
17:19:47.545 [nacos-grpc-client-executor-34] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Receive server push request, request = NotifySubscriberRequest, requestId = 849
17:19:47.546 [nacos-grpc-client-executor-26] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Ack server push request, request = NotifySubscriberRequest, requestId = 848
17:19:47.549 [nacos-grpc-client-executor-34] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Ack server push request, request = NotifySubscriberRequest, requestId = 849
17:19:47.552 [nacos-grpc-client-executor-35] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Receive server push request, request = NotifySubscriberRequest, requestId = 851
17:19:47.552 [nacos-grpc-client-executor-35] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Ack server push request, request = NotifySubscriberRequest, requestId = 851
17:19:58.673 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Server healthy check fail, currentConnection = 1718270385856_192.168.110.235_64109
17:19:58.673 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Server healthy check fail, currentConnection = 1718270385734_192.168.110.235_64106
17:19:58.673 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Server healthy check fail, currentConnection = 1718270385856_192.168.110.235_64108
17:19:58.673 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:19:58.673 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:19:58.673 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:19:58.799 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718270397709_192.168.110.235_64117
17:19:58.799 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Success to connect a server [192.168.110.235:8848], connectionId = 1718270397708_192.168.110.235_64116
17:19:58.799 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Success to connect a server [192.168.110.235:8848], connectionId = 1718270397708_192.168.110.235_64115
17:19:58.799 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270385856_192.168.110.235_64109
17:19:58.799 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270385856_192.168.110.235_64108
17:19:58.799 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270385734_192.168.110.235_64106
17:19:58.799 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270385856_192.168.110.235_64109
17:19:58.799 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270385856_192.168.110.235_64108
17:19:58.799 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270385734_192.168.110.235_64106
17:19:58.800 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Notify disconnected event to listeners
17:19:58.800 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Notify disconnected event to listeners
17:19:58.800 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Notify disconnected event to listeners
17:19:58.801 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Notify connected event to listeners.
17:19:58.802 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Notify connected event to listeners.
17:19:58.813 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Notify connected event to listeners.
17:19:58.863 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:19:58.864 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
17:19:58.870 [timeoutChecker_1_1] INFO  i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:1.7.0,channel:[id: 0xaff26c60, L:/192.168.110.235:64119 - R:/192.168.110.188:8091]
17:19:58.870 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 3 ms, version:1.7.0,role:TMROLE,channel:[id: 0xaff26c60, L:/192.168.110.235:64119 - R:/192.168.110.188:8091]
17:20:02.242 [nacos-grpc-client-executor-34] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Receive server push request, request = NotifySubscriberRequest, requestId = 858
17:20:02.242 [nacos-grpc-client-executor-45] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Receive server push request, request = NotifySubscriberRequest, requestId = 857
17:20:02.242 [nacos-grpc-client-executor-34] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Ack server push request, request = NotifySubscriberRequest, requestId = 858
17:20:02.242 [nacos-grpc-client-executor-45] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Ack server push request, request = NotifySubscriberRequest, requestId = 857
17:20:02.246 [nacos-grpc-client-executor-46] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Receive server push request, request = NotifySubscriberRequest, requestId = 861
17:20:02.246 [nacos-grpc-client-executor-46] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Ack server push request, request = NotifySubscriberRequest, requestId = 861
17:20:41.356 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0xaff26c60, L:/192.168.110.235:64119 - R:/192.168.110.188:8091] read idle.
17:20:41.363 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xaff26c60, L:/192.168.110.235:64119 - R:/192.168.110.188:8091]
17:20:41.364 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xaff26c60, L:/192.168.110.235:64119 - R:/192.168.110.188:8091]) will closed
17:20:41.365 [nacos-grpc-client-executor-47] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Receive server push request, request = ClientDetectionRequest, requestId = 869
17:20:41.366 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Server healthy check fail, currentConnection = 1718270397708_192.168.110.235_64116
17:20:41.367 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:20:41.364 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xaff26c60, L:/192.168.110.235:64119 ! R:/192.168.110.188:8091]) will closed
17:20:41.357 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x85d83e51, L:/192.168.110.235:64102 - R:/192.168.110.188:8091] read idle.
17:20:41.367 [nacos-grpc-client-executor-53] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 873
17:20:41.367 [nacos-grpc-client-executor-39] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 867
17:20:41.370 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x85d83e51, L:/192.168.110.235:64102 - R:/192.168.110.188:8091]
17:20:41.370 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xaff26c60, L:/192.168.110.235:64119 ! R:/192.168.110.188:8091]
17:20:41.371 [nacos-grpc-client-executor-39] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 867
17:20:41.371 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x85d83e51, L:/192.168.110.235:64102 - R:/192.168.110.188:8091]) will closed
17:20:41.374 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x85d83e51, L:/192.168.110.235:64102 ! R:/192.168.110.188:8091]) will closed
17:20:41.368 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Server healthy check fail, currentConnection = 1718270397708_192.168.110.235_64115
17:20:41.375 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xaff26c60, L:/192.168.110.235:64119 ! R:/192.168.110.188:8091]
17:20:41.376 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:20:41.376 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x85d83e51, L:/192.168.110.235:64102 ! R:/192.168.110.188:8091]
17:20:41.376 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x85d83e51, L:/192.168.110.235:64102 ! R:/192.168.110.188:8091]
17:20:41.376 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xaff26c60, L:/192.168.110.235:64119 ! R:/192.168.110.188:8091]
17:20:41.370 [nacos-grpc-client-executor-35] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Receive server push request, request = ClientDetectionRequest, requestId = 868
17:20:41.376 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x85d83e51, L:/192.168.110.235:64102 ! R:/192.168.110.188:8091]
17:20:41.378 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xaff26c60, L:/192.168.110.235:64119 ! R:/192.168.110.188:8091]) will closed
17:20:41.378 [nacos-grpc-client-executor-35] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Ack server push request, request = ClientDetectionRequest, requestId = 868
17:20:41.370 [nacos-grpc-client-executor-53] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 873
17:20:41.366 [nacos-grpc-client-executor-47] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Ack server push request, request = ClientDetectionRequest, requestId = 869
17:20:41.378 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xaff26c60, L:/192.168.110.235:64119 ! R:/192.168.110.188:8091]) will closed
17:20:41.378 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x85d83e51, L:/192.168.110.235:64102 ! R:/192.168.110.188:8091]) will closed
17:20:41.382 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Server healthy check fail, currentConnection = 1718270385878_192.168.110.235_64110
17:20:41.382 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xaff26c60, L:/192.168.110.235:64119 ! R:/192.168.110.188:8091]
17:20:41.382 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:20:41.382 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x85d83e51, L:/192.168.110.235:64102 ! R:/192.168.110.188:8091]) will closed
17:20:41.382 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xaff26c60, L:/192.168.110.235:64119 ! R:/192.168.110.188:8091]
17:20:41.382 [nacos-grpc-client-executor-53] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718270385878_192.168.110.235_64110]Ignore complete event,isRunning:false,isAbandon=false
17:20:41.382 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xaff26c60, L:/192.168.110.235:64119 ! R:/192.168.110.188:8091]
17:20:41.382 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x85d83e51, L:/192.168.110.235:64102 ! R:/192.168.110.188:8091]
17:20:41.382 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x85d83e51, L:/192.168.110.235:64102 ! R:/192.168.110.188:8091]
17:20:41.383 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x85d83e51, L:/192.168.110.235:64102 ! R:/192.168.110.188:8091]
17:20:41.384 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x85d83e51, L:/192.168.110.235:64102 ! R:/192.168.110.188:8091]) will closed
17:20:41.382 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xaff26c60, L:/192.168.110.235:64119 ! R:/192.168.110.188:8091]) will closed
17:20:41.384 [nacos-grpc-client-executor-47] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718270397708_192.168.110.235_64116]Ignore complete event,isRunning:false,isAbandon=false
17:20:41.380 [nacos-grpc-client-executor-35] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718270397708_192.168.110.235_64115]Ignore complete event,isRunning:false,isAbandon=false
17:20:41.384 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x85d83e51, L:/192.168.110.235:64102 ! R:/192.168.110.188:8091]) will closed
17:20:41.387 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xaff26c60, L:/192.168.110.235:64119 ! R:/192.168.110.188:8091]) will closed
17:20:41.391 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Server healthy check fail, currentConnection = 1718270397709_192.168.110.235_64117
17:20:41.391 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:20:41.508 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Success to connect a server [192.168.110.235:8848], connectionId = 1718270440423_192.168.110.235_64149
17:20:41.508 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Success to connect a server [192.168.110.235:8848], connectionId = 1718270440416_192.168.110.235_64148
17:20:41.508 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718270440426_192.168.110.235_64150
17:20:41.508 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270397708_192.168.110.235_64116
17:20:41.508 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270385878_192.168.110.235_64110
17:20:41.508 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270397708_192.168.110.235_64115
17:20:41.508 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270397708_192.168.110.235_64116
17:20:41.508 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270397708_192.168.110.235_64115
17:20:41.508 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270385878_192.168.110.235_64110
17:20:41.509 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Notify disconnected event to listeners
17:20:41.509 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Notify disconnected event to listeners
17:20:41.509 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Notify disconnected event to listeners
17:20:41.512 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Notify connected event to listeners.
17:20:41.512 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Notify connected event to listeners.
17:20:41.520 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb8656d3-7aa0-4455-aeec-7868c4905b64_config-0] Notify connected event to listeners.
17:20:41.523 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718270440433_192.168.110.235_64151
17:20:41.523 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270397709_192.168.110.235_64117
17:20:41.523 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270397709_192.168.110.235_64117
17:20:41.524 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Notify disconnected event to listeners
17:20:41.524 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:20:41.534 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Notify connected event to listeners.
17:20:41.646 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718270440560_192.168.110.235_64152
17:20:41.646 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718270440433_192.168.110.235_64151
17:20:41.646 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270440433_192.168.110.235_64151
17:20:41.647 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Notify disconnected event to listeners
17:20:41.647 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c1389e27-29e4-43ea-a0d4-827b3ba52dba_config-0] Notify connected event to listeners.
17:20:44.957 [nacos-grpc-client-executor-41] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Receive server push request, request = NotifySubscriberRequest, requestId = 880
17:20:44.957 [nacos-grpc-client-executor-55] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Receive server push request, request = NotifySubscriberRequest, requestId = 878
17:20:44.958 [nacos-grpc-client-executor-41] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d7cf1d5-b2b5-416e-8925-033cc9b9682f] Ack server push request, request = NotifySubscriberRequest, requestId = 880
17:20:44.958 [nacos-grpc-client-executor-55] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Ack server push request, request = NotifySubscriberRequest, requestId = 878
17:20:44.960 [nacos-grpc-client-executor-56] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Receive server push request, request = NotifySubscriberRequest, requestId = 881
17:20:44.960 [nacos-grpc-client-executor-56] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [14551209-1573-4e36-8311-fc5b449b68ff] Ack server push request, request = NotifySubscriberRequest, requestId = 881
17:20:46.396 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:20:46.396 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
17:20:46.408 [timeoutChecker_1_1] INFO  i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:1.7.0,channel:[id: 0xbf364ff9, L:/192.168.110.235:64153 - R:/192.168.110.188:8091]
17:20:46.408 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 5 ms, version:1.7.0,role:TMROLE,channel:[id: 0xbf364ff9, L:/192.168.110.235:64153 - R:/192.168.110.188:8091]
17:20:48.035 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:20:48.036 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
17:20:48.041 [timeoutChecker_2_1] INFO  i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:1.7.0,channel:[id: 0x3ae48ecd, L:/192.168.110.235:64154 - R:/192.168.110.188:8091]
17:20:48.041 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 3 ms, version:1.7.0,role:RMROLE,channel:[id: 0x3ae48ecd, L:/192.168.110.235:64154 - R:/192.168.110.188:8091]
17:26:33.935 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
17:26:35.226 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 50758a56-2ec7-428b-88c2-bb3ea77c95d0_config-0
17:26:35.323 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 60 ms to scan 1 urls, producing 3 keys and 6 values 
17:26:35.383 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
17:26:35.401 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values 
17:26:35.437 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 31 ms to scan 14 urls, producing 0 keys and 0 values 
17:26:35.454 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 5 values 
17:26:35.473 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values 
17:26:35.496 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 2 keys and 8 values 
17:26:35.540 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 40 ms to scan 14 urls, producing 0 keys and 0 values 
17:26:35.541 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [50758a56-2ec7-428b-88c2-bb3ea77c95d0_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:26:35.542 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [50758a56-2ec7-428b-88c2-bb3ea77c95d0_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1403413933
17:26:35.543 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [50758a56-2ec7-428b-88c2-bb3ea77c95d0_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/738937987
17:26:35.545 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [50758a56-2ec7-428b-88c2-bb3ea77c95d0_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:26:35.547 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [50758a56-2ec7-428b-88c2-bb3ea77c95d0_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:26:35.563 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [50758a56-2ec7-428b-88c2-bb3ea77c95d0_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:26:37.906 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [50758a56-2ec7-428b-88c2-bb3ea77c95d0_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718270796709_192.168.110.235_64377
17:26:37.906 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [50758a56-2ec7-428b-88c2-bb3ea77c95d0_config-0] Notify connected event to listeners.
17:26:37.906 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [50758a56-2ec7-428b-88c2-bb3ea77c95d0_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:26:37.907 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [50758a56-2ec7-428b-88c2-bb3ea77c95d0_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1090160486
17:26:38.028 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
17:26:41.370 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
17:26:41.481 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
17:26:41.492 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
17:26:41.658 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 42882007-57b1-4433-a55f-baea53846cb4_config-0
17:26:41.658 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42882007-57b1-4433-a55f-baea53846cb4_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:26:41.659 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42882007-57b1-4433-a55f-baea53846cb4_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1403413933
17:26:41.659 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42882007-57b1-4433-a55f-baea53846cb4_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/738937987
17:26:41.659 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42882007-57b1-4433-a55f-baea53846cb4_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:26:41.659 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42882007-57b1-4433-a55f-baea53846cb4_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:26:41.660 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42882007-57b1-4433-a55f-baea53846cb4_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:26:41.773 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42882007-57b1-4433-a55f-baea53846cb4_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718270800699_192.168.110.235_64381
17:26:41.774 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42882007-57b1-4433-a55f-baea53846cb4_config-0] Notify connected event to listeners.
17:26:41.774 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42882007-57b1-4433-a55f-baea53846cb4_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:26:41.775 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [42882007-57b1-4433-a55f-baea53846cb4_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1090160486
17:26:41.918 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
17:26:42.153 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
17:26:43.190 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of fda4f685-cbb4-4c7e-a0e5-c52f0812e7d7
17:26:43.190 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fda4f685-cbb4-4c7e-a0e5-c52f0812e7d7] RpcClient init label, labels = {module=naming, source=sdk}
17:26:43.193 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fda4f685-cbb4-4c7e-a0e5-c52f0812e7d7] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:26:43.193 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fda4f685-cbb4-4c7e-a0e5-c52f0812e7d7] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:26:43.193 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fda4f685-cbb4-4c7e-a0e5-c52f0812e7d7] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:26:43.194 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fda4f685-cbb4-4c7e-a0e5-c52f0812e7d7] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:26:43.320 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fda4f685-cbb4-4c7e-a0e5-c52f0812e7d7] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718270802233_192.168.110.235_64385
17:26:43.320 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fda4f685-cbb4-4c7e-a0e5-c52f0812e7d7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:26:43.320 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fda4f685-cbb4-4c7e-a0e5-c52f0812e7d7] Notify connected event to listeners.
17:26:43.321 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fda4f685-cbb4-4c7e-a0e5-c52f0812e7d7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1090160486
17:26:43.359 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:26:43.740 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
17:26:43.899 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fda4f685-cbb4-4c7e-a0e5-c52f0812e7d7] Receive server push request, request = NotifySubscriberRequest, requestId = 886
17:26:43.902 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fda4f685-cbb4-4c7e-a0e5-c52f0812e7d7] Ack server push request, request = NotifySubscriberRequest, requestId = 886
17:26:44.545 [main] INFO  i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:1.7.0,channel:[id: 0x1e7172b7, L:/192.168.110.235:64386 - R:/192.168.110.188:8091]
17:26:44.553 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 85 ms, version:1.7.0,role:TMROLE,channel:[id: 0x1e7172b7, L:/192.168.110.235:64386 - R:/192.168.110.188:8091]
17:26:44.554 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
17:26:44.617 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
17:26:44.618 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
17:26:44.631 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
17:26:44.631 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
17:26:44.631 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
17:26:45.844 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
17:26:45.845 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
17:26:45.845 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
17:26:46.034 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
17:26:46.732 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
17:26:46.734 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
17:26:46.734 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
17:26:50.465 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
17:26:50.934 [redisson-netty-2-7] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
17:26:51.002 [redisson-netty-2-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
17:26:52.333 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
17:26:55.755 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 05977645-1ccd-425e-9801-ee95b327dc10
17:26:55.756 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] RpcClient init label, labels = {module=naming, source=sdk}
17:26:55.756 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:26:55.756 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:26:55.756 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:26:55.757 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:26:55.870 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718270814793_192.168.110.235_64485
17:26:55.870 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:26:55.870 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Notify connected event to listeners.
17:26:55.871 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1090160486
17:26:55.881 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
17:26:55.907 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
17:26:56.475 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Receive server push request, request = NotifySubscriberRequest, requestId = 889
17:26:56.478 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Ack server push request, request = NotifySubscriberRequest, requestId = 889
17:26:57.077 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 24.5 seconds (JVM running for 26.834)
17:26:57.107 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
17:26:57.131 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
17:26:57.145 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
17:26:57.876 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
17:27:20.403 [nacos-grpc-client-executor-13] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Receive server push request, request = NotifySubscriberRequest, requestId = 891
17:27:20.403 [nacos-grpc-client-executor-13] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Ack server push request, request = NotifySubscriberRequest, requestId = 891
17:27:44.639 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:27:44.641 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
17:27:44.650 [timeoutChecker_2_1] INFO  i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:1.7.0,channel:[id: 0xb8c72603, L:/192.168.110.235:64527 - R:/192.168.110.188:8091]
17:27:44.650 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 6 ms, version:1.7.0,role:RMROLE,channel:[id: 0xb8c72603, L:/192.168.110.235:64527 - R:/192.168.110.188:8091]
17:35:58.330 [nacos-grpc-client-executor-119] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Receive server push request, request = NotifySubscriberRequest, requestId = 897
17:35:58.334 [nacos-grpc-client-executor-119] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Ack server push request, request = NotifySubscriberRequest, requestId = 897
17:36:41.906 [nacos-grpc-client-executor-129] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Receive server push request, request = NotifySubscriberRequest, requestId = 904
17:36:41.909 [nacos-grpc-client-executor-129] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Ack server push request, request = NotifySubscriberRequest, requestId = 904
17:37:15.819 [nacos-grpc-client-executor-136] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Receive server push request, request = NotifySubscriberRequest, requestId = 912
17:37:15.823 [nacos-grpc-client-executor-136] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Ack server push request, request = NotifySubscriberRequest, requestId = 912
17:37:42.834 [nacos-grpc-client-executor-142] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Receive server push request, request = NotifySubscriberRequest, requestId = 918
17:37:42.839 [nacos-grpc-client-executor-142] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Ack server push request, request = NotifySubscriberRequest, requestId = 918
17:39:03.007 [nacos-grpc-client-executor-158] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Receive server push request, request = NotifySubscriberRequest, requestId = 925
17:39:03.011 [nacos-grpc-client-executor-158] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [05977645-1ccd-425e-9801-ee95b327dc10] Ack server push request, request = NotifySubscriberRequest, requestId = 925
17:43:35.880 [SpringContextShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
17:43:35.886 [SpringContextShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
17:43:36.300 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
17:43:36.301 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3593ad6b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
17:43:36.301 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718270814793_192.168.110.235_64485
17:43:36.303 [nacos-grpc-client-executor-218] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718270814793_192.168.110.235_64485]Ignore complete event,isRunning:false,isAbandon=false
17:43:36.313 [SpringContextShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@c85e2e2[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 219]
17:43:36.535 [SpringContextShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
17:43:36.538 [SpringContextShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
17:43:36.551 [SpringContextShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
17:43:36.551 [SpringContextShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
17:43:36.553 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x1e7172b7, L:/192.168.110.235:64386 ! R:/192.168.110.188:8091]
17:43:36.554 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x1e7172b7, L:/192.168.110.235:64386 ! R:/192.168.110.188:8091]
17:43:36.554 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x1e7172b7, L:/192.168.110.235:64386 ! R:/192.168.110.188:8091]
17:43:36.556 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x1e7172b7, L:/192.168.110.235:64386 ! R:/192.168.110.188:8091]
17:43:36.556 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1e7172b7, L:/192.168.110.235:64386 ! R:/192.168.110.188:8091]) will closed
17:43:36.556 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xb8c72603, L:/192.168.110.235:64527 ! R:/192.168.110.188:8091]
17:43:36.557 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xb8c72603, L:/192.168.110.235:64527 ! R:/192.168.110.188:8091]
17:43:36.557 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x1e7172b7, L:/192.168.110.235:64386 ! R:/192.168.110.188:8091]) will closed
17:43:36.557 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xb8c72603, L:/192.168.110.235:64527 ! R:/192.168.110.188:8091]
17:43:36.557 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xb8c72603, L:/192.168.110.235:64527 ! R:/192.168.110.188:8091]
17:43:36.557 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb8c72603, L:/192.168.110.235:64527 ! R:/192.168.110.188:8091]) will closed
17:43:36.558 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xb8c72603, L:/192.168.110.235:64527 ! R:/192.168.110.188:8091]) will closed
17:48:29.326 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
17:48:30.993 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of d2a3fb3f-3dda-4a6d-bae7-a89ec91e937e_config-0
17:48:31.107 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 65 ms to scan 1 urls, producing 3 keys and 6 values 
17:48:31.178 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 30 ms to scan 1 urls, producing 4 keys and 9 values 
17:48:31.203 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values 
17:48:31.238 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 30 ms to scan 14 urls, producing 0 keys and 0 values 
17:48:31.257 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 5 values 
17:48:31.277 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values 
17:48:31.299 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 2 keys and 8 values 
17:48:31.347 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 43 ms to scan 14 urls, producing 0 keys and 0 values 
17:48:31.348 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2a3fb3f-3dda-4a6d-bae7-a89ec91e937e_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:48:31.349 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2a3fb3f-3dda-4a6d-bae7-a89ec91e937e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1102181662
17:48:31.350 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2a3fb3f-3dda-4a6d-bae7-a89ec91e937e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/978599729
17:48:31.352 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2a3fb3f-3dda-4a6d-bae7-a89ec91e937e_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:48:31.353 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2a3fb3f-3dda-4a6d-bae7-a89ec91e937e_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:48:31.373 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2a3fb3f-3dda-4a6d-bae7-a89ec91e937e_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:48:33.833 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2a3fb3f-3dda-4a6d-bae7-a89ec91e937e_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718272112011_192.168.110.235_59963
17:48:33.834 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2a3fb3f-3dda-4a6d-bae7-a89ec91e937e_config-0] Notify connected event to listeners.
17:48:33.834 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2a3fb3f-3dda-4a6d-bae7-a89ec91e937e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:48:33.835 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2a3fb3f-3dda-4a6d-bae7-a89ec91e937e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1515477775
17:48:33.984 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
17:48:45.174 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
17:48:45.386 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
17:48:45.413 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
17:48:45.743 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 75524d32-3cbe-478e-9781-bcca455515e1_config-0
17:48:45.744 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [75524d32-3cbe-478e-9781-bcca455515e1_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:48:45.744 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [75524d32-3cbe-478e-9781-bcca455515e1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1102181662
17:48:45.745 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [75524d32-3cbe-478e-9781-bcca455515e1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/978599729
17:48:45.745 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [75524d32-3cbe-478e-9781-bcca455515e1_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:48:45.746 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [75524d32-3cbe-478e-9781-bcca455515e1_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:48:45.747 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [75524d32-3cbe-478e-9781-bcca455515e1_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:48:46.117 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [75524d32-3cbe-478e-9781-bcca455515e1_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718272124404_192.168.110.235_59988
17:48:46.117 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [75524d32-3cbe-478e-9781-bcca455515e1_config-0] Notify connected event to listeners.
17:48:46.117 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [75524d32-3cbe-478e-9781-bcca455515e1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:48:46.118 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [75524d32-3cbe-478e-9781-bcca455515e1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1515477775
17:48:46.681 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
17:48:48.090 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
17:48:48.351 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 4cec5c87-e40e-436a-b711-cdac7e5bc9f6
17:48:48.351 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] RpcClient init label, labels = {module=naming, source=sdk}
17:48:48.355 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:48:48.356 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:48:48.357 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:48:48.357 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:48:48.507 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718272126799_192.168.110.235_60007
17:48:48.507 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] Notify connected event to listeners.
17:48:48.507 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:48:48.508 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1515477775
17:48:48.574 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:48:49.072 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.188:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
17:48:49.159 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] Receive server push request, request = NotifySubscriberRequest, requestId = 939
17:48:49.164 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] Ack server push request, request = NotifySubscriberRequest, requestId = 939
17:48:50.267 [main] INFO  i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:1.7.0,channel:[id: 0x390f61b7, L:/192.168.110.235:60015 - R:/192.168.110.188:8091]
17:48:50.278 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 126 ms, version:1.7.0,role:TMROLE,channel:[id: 0x390f61b7, L:/192.168.110.235:60015 - R:/192.168.110.188:8091]
17:48:50.280 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
17:48:50.367 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
17:48:50.368 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
17:48:50.390 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
17:48:50.390 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
17:48:50.390 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
17:48:52.377 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
17:48:52.378 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
17:48:52.378 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
17:48:52.686 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
17:48:54.364 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
17:48:54.366 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
17:48:54.367 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
17:49:05.154 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
17:49:06.111 [redisson-netty-2-5] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
17:49:06.212 [redisson-netty-2-19] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
17:49:08.825 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
17:49:18.790 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 3d30c202-023e-4a47-84dc-5750332aa5af
17:49:18.791 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d30c202-023e-4a47-84dc-5750332aa5af] RpcClient init label, labels = {module=naming, source=sdk}
17:49:18.791 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d30c202-023e-4a47-84dc-5750332aa5af] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:49:18.792 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d30c202-023e-4a47-84dc-5750332aa5af] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:49:18.792 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d30c202-023e-4a47-84dc-5750332aa5af] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:49:18.793 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d30c202-023e-4a47-84dc-5750332aa5af] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:49:19.019 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d30c202-023e-4a47-84dc-5750332aa5af] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718272157277_192.168.110.235_60389
17:49:19.019 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d30c202-023e-4a47-84dc-5750332aa5af] Notify connected event to listeners.
17:49:19.021 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d30c202-023e-4a47-84dc-5750332aa5af] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:49:19.021 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d30c202-023e-4a47-84dc-5750332aa5af] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1515477775
17:49:19.045 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
17:49:19.096 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
17:49:19.628 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d30c202-023e-4a47-84dc-5750332aa5af] Receive server push request, request = NotifySubscriberRequest, requestId = 945
17:49:19.634 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d30c202-023e-4a47-84dc-5750332aa5af] Ack server push request, request = NotifySubscriberRequest, requestId = 945
17:49:21.496 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 53.953 seconds (JVM running for 60.231)
17:49:21.546 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
17:49:21.583 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
17:49:21.606 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
17:49:21.870 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
17:49:50.398 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:49:50.400 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.188:8091,msg:< RegisterRMRequest{resourceIds='null', applicationId='ruoyi-order', transactionServiceGroup='ruoyi-order-group'} >
17:49:50.497 [timeoutChecker_2_1] INFO  i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:1.7.0,channel:[id: 0xb04d14d4, L:/192.168.110.235:60723 - R:/192.168.110.188:8091]
17:49:50.497 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 93 ms, version:1.7.0,role:RMROLE,channel:[id: 0xb04d14d4, L:/192.168.110.235:60723 - R:/192.168.110.188:8091]
17:55:27.472 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] Server healthy check fail, currentConnection = 1718272126799_192.168.110.235_60007
17:55:27.473 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:55:27.596 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] Success to connect a server [192.168.110.235:8848], connectionId = 1718272526196_192.168.110.235_61484
17:55:27.596 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718272126799_192.168.110.235_60007
17:55:27.596 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718272126799_192.168.110.235_60007
17:55:27.602 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] Notify disconnected event to listeners
17:55:27.605 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] Notify connected event to listeners.
17:55:28.786 [nacos-grpc-client-executor-89] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] Receive server push request, request = NotifySubscriberRequest, requestId = 984
17:55:28.787 [nacos-grpc-client-executor-89] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cec5c87-e40e-436a-b711-cdac7e5bc9f6] Ack server push request, request = NotifySubscriberRequest, requestId = 984
17:55:35.374 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [75524d32-3cbe-478e-9781-bcca455515e1_config-0] Server healthy check fail, currentConnection = 1718272124404_192.168.110.235_59988
17:55:35.375 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [75524d32-3cbe-478e-9781-bcca455515e1_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:55:35.749 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2a3fb3f-3dda-4a6d-bae7-a89ec91e937e_config-0] Server healthy check fail, currentConnection = 1718272112011_192.168.110.235_59963
17:55:35.749 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2a3fb3f-3dda-4a6d-bae7-a89ec91e937e_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:55:37.448 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [75524d32-3cbe-478e-9781-bcca455515e1_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718272536047_192.168.110.235_61507
17:55:37.450 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [75524d32-3cbe-478e-9781-bcca455515e1_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718272124404_192.168.110.235_59988
17:55:37.461 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718272124404_192.168.110.235_59988
17:55:37.471 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [75524d32-3cbe-478e-9781-bcca455515e1_config-0] Notify disconnected event to listeners
17:55:37.477 [nacos-grpc-client-executor-111] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718272124404_192.168.110.235_59988]Ignore complete event,isRunning:true,isAbandon=true
17:55:37.510 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [75524d32-3cbe-478e-9781-bcca455515e1_config-0] Notify connected event to listeners.
17:55:37.617 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2a3fb3f-3dda-4a6d-bae7-a89ec91e937e_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718272536217_192.168.110.235_61509
17:55:37.618 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2a3fb3f-3dda-4a6d-bae7-a89ec91e937e_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718272112011_192.168.110.235_59963
17:55:37.619 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718272112011_192.168.110.235_59963
17:55:37.621 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2a3fb3f-3dda-4a6d-bae7-a89ec91e937e_config-0] Notify disconnected event to listeners
17:55:37.626 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2a3fb3f-3dda-4a6d-bae7-a89ec91e937e_config-0] Notify connected event to listeners.
18:25:08.616 [SpringContextShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
18:25:08.621 [SpringContextShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
18:25:09.068 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
18:25:09.069 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3cce8715[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
18:25:09.069 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718272157277_192.168.110.235_60389
18:25:09.071 [SpringContextShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6577b372[Running, pool size = 5, active threads = 1, queued tasks = 0, completed tasks = 439]
18:25:09.074 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d30c202-023e-4a47-84dc-5750332aa5af] Notify disconnected event to listeners
18:25:09.170 [nacos-grpc-client-executor-439] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718272157277_192.168.110.235_60389]Ignore complete event,isRunning:false,isAbandon=false
18:25:09.505 [SpringContextShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
18:25:09.514 [SpringContextShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
18:25:09.535 [SpringContextShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
18:25:09.536 [SpringContextShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
18:25:09.538 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x390f61b7, L:/192.168.110.235:60015 ! R:/192.168.110.188:8091]
18:25:09.539 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x390f61b7, L:/192.168.110.235:60015 ! R:/192.168.110.188:8091]
18:25:09.539 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x390f61b7, L:/192.168.110.235:60015 ! R:/192.168.110.188:8091]
18:25:09.541 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x390f61b7, L:/192.168.110.235:60015 ! R:/192.168.110.188:8091]
18:25:09.541 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x390f61b7, L:/192.168.110.235:60015 ! R:/192.168.110.188:8091]) will closed
18:25:09.542 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x390f61b7, L:/192.168.110.235:60015 ! R:/192.168.110.188:8091]) will closed