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
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
08:57:02.648 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
08:57:04.283 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0
08:57:04.460 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 119 ms to scan 1 urls, producing 3 keys and 6 values 
08:57:04.534 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 31 ms to scan 1 urls, producing 4 keys and 9 values 
08:57:04.563 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 3 keys and 10 values 
08:57:04.609 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 39 ms to scan 14 urls, producing 0 keys and 0 values 
08:57:04.633 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 1 keys and 5 values 
08:57:04.667 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 27 ms to scan 1 urls, producing 1 keys and 7 values 
08:57:04.698 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 2 keys and 8 values 
08:57:04.745 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 37 ms to scan 14 urls, producing 0 keys and 0 values 
08:57:04.747 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_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:04.749 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/378327915
08:57:04.750 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/227381657
08:57:04.753 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
08:57:04.755 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
08:57:04.778 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
08:57:07.373 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718758627246_192.168.110.235_61121
08:57:07.374 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Notify connected event to listeners.
08:57:07.375 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:57:07.375 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1996385500
08:57:07.534 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
08:57:14.478 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
08:57:14.629 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
08:57:14.654 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
08:57:14.852 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0
08:57:14.852 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_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:14.852 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/378327915
08:57:14.853 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/227381657
08:57:14.853 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
08:57:14.853 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
08:57:14.854 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
08:57:14.977 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718758635039_192.168.110.235_61172
08:57:14.977 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Notify connected event to listeners.
08:57:14.977 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:57:14.977 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1996385500
08:57:15.192 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
08:57:15.532 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
08:57:15.757 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of dc6088ad-e8c5-4a45-80f9-9552f4f73158
08:57:15.758 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] RpcClient init label, labels = {module=naming, source=sdk}
08:57:15.762 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
08:57:15.763 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
08:57:15.764 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
08:57:15.765 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
08:57:15.917 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718758635972_192.168.110.235_61176
08:57:15.918 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Notify connected event to listeners.
08:57:15.918 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:57:15.918 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1996385500
08:57:16.003 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
08:57:16.360 [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'} >
08:57:16.545 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Receive server push request, request = NotifySubscriberRequest, requestId = 3
08:57:16.556 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Ack server push request, request = NotifySubscriberRequest, requestId = 3
08:57:17.410 [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: 0x71ab9a49, L:/192.168.110.235:61218 - R:/192.168.110.188:8091]
08:57:17.423 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 167 ms, version:1.7.0,role:TMROLE,channel:[id: 0x71ab9a49, L:/192.168.110.235:61218 - R:/192.168.110.188:8091]
08:57:17.424 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
08:57:17.518 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
08:57:17.519 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
08:57:17.550 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
08:57:17.550 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
08:57:17.551 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
08:57:19.738 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
08:57:19.739 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
08:57:19.739 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
08:57:19.996 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
08:57:21.593 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
08:57:21.594 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
08:57:21.595 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
08:57:29.874 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
08:57:31.254 [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
08:57:31.379 [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
08:57:33.725 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
08:57:39.381 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1
08:57:39.382 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] RpcClient init label, labels = {module=naming, source=sdk}
08:57:39.382 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
08:57:39.383 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
08:57:39.383 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
08:57:39.383 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
08:57:39.515 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718758659570_192.168.110.235_61717
08:57:39.516 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Notify connected event to listeners.
08:57:39.516 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:57:39.516 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1996385500
08:57:39.550 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
08:57:39.604 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
08:57:40.115 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Receive server push request, request = NotifySubscriberRequest, requestId = 8
08:57:40.119 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Ack server push request, request = NotifySubscriberRequest, requestId = 8
08:57:41.622 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 40.637 seconds (JVM running for 43.512)
08:57:41.649 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
08:57:41.665 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
08:57:41.674 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
08:57:42.929 [RMI TCP Connection(5)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
08:58:17.553 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
08:58:17.556 [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'} >
08:58:17.564 [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: 0x7ded677c, L:/192.168.110.235:62359 - R:/192.168.110.188:8091]
08:58:17.564 [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: 0x7ded677c, L:/192.168.110.235:62359 - R:/192.168.110.188:8091]
09:06:06.344 [nacos-grpc-client-executor-114] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Receive server push request, request = NotifySubscriberRequest, requestId = 35
09:06:06.345 [nacos-grpc-client-executor-114] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Ack server push request, request = NotifySubscriberRequest, requestId = 35
09:06:06.672 [nacos-grpc-client-executor-115] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Receive server push request, request = NotifySubscriberRequest, requestId = 36
09:06:06.673 [nacos-grpc-client-executor-115] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Ack server push request, request = NotifySubscriberRequest, requestId = 36
09:06:09.512 [nacos-grpc-client-executor-119] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Receive server push request, request = NotifySubscriberRequest, requestId = 37
09:06:09.513 [nacos-grpc-client-executor-119] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Ack server push request, request = NotifySubscriberRequest, requestId = 37
09:06:44.408 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x7ded677c, L:/192.168.110.235:62359 - R:/192.168.110.188:8091] read idle.
09:06:44.409 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x7ded677c, L:/192.168.110.235:62359 - R:/192.168.110.188:8091]
09:06:44.410 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7ded677c, L:/192.168.110.235:62359 - R:/192.168.110.188:8091]) will closed
09:06:44.412 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x71ab9a49, L:/192.168.110.235:61218 - R:/192.168.110.188:8091] read idle.
09:06:44.412 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x71ab9a49, L:/192.168.110.235:61218 - R:/192.168.110.188:8091]
09:06:44.412 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x71ab9a49, L:/192.168.110.235:61218 - R:/192.168.110.188:8091]) will closed
09:06:44.414 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7ded677c, L:/192.168.110.235:62359 ! R:/192.168.110.188:8091]) will closed
09:06:44.416 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x71ab9a49, L:/192.168.110.235:61218 ! R:/192.168.110.188:8091]) will closed
09:06:44.417 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x7ded677c, L:/192.168.110.235:62359 ! R:/192.168.110.188:8091]
09:06:44.420 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x71ab9a49, L:/192.168.110.235:61218 ! R:/192.168.110.188:8091]
09:06:44.423 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x71ab9a49, L:/192.168.110.235:61218 ! R:/192.168.110.188:8091]
09:06:44.423 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x71ab9a49, L:/192.168.110.235:61218 ! R:/192.168.110.188:8091]
09:06:44.422 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x7ded677c, L:/192.168.110.235:62359 ! R:/192.168.110.188:8091]
09:06:44.424 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x7ded677c, L:/192.168.110.235:62359 ! R:/192.168.110.188:8091]
09:06:44.424 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7ded677c, L:/192.168.110.235:62359 ! R:/192.168.110.188:8091]) will closed
09:06:44.423 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x71ab9a49, L:/192.168.110.235:61218 ! R:/192.168.110.188:8091]) will closed
09:06:44.426 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x71ab9a49, L:/192.168.110.235:61218 ! R:/192.168.110.188:8091]) will closed
09:06:44.426 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7ded677c, L:/192.168.110.235:62359 ! R:/192.168.110.188:8091]) will closed
09:06:44.428 [nacos-grpc-client-executor-140] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 40
09:06:44.428 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x71ab9a49, L:/192.168.110.235:61218 ! R:/192.168.110.188:8091]
09:06:44.428 [nacos-grpc-client-executor-113] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Receive server push request, request = ClientDetectionRequest, requestId = 38
09:06:44.428 [nacos-grpc-client-executor-140] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 40
09:06:44.428 [nacos-grpc-client-executor-127] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 39
09:06:44.428 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x71ab9a49, L:/192.168.110.235:61218 ! R:/192.168.110.188:8091]
09:06:44.428 [nacos-grpc-client-executor-121] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Receive server push request, request = ClientDetectionRequest, requestId = 41
09:06:44.428 [nacos-grpc-client-executor-113] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Ack server push request, request = ClientDetectionRequest, requestId = 38
09:06:44.429 [nacos-grpc-client-executor-121] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Ack server push request, request = ClientDetectionRequest, requestId = 41
09:06:44.428 [nacos-grpc-client-executor-127] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 39
09:06:44.428 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x71ab9a49, L:/192.168.110.235:61218 ! R:/192.168.110.188:8091]
09:06:44.431 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x7ded677c, L:/192.168.110.235:62359 ! R:/192.168.110.188:8091]
09:06:44.435 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x71ab9a49, L:/192.168.110.235:61218 ! R:/192.168.110.188:8091]) will closed
09:06:44.436 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x71ab9a49, L:/192.168.110.235:61218 ! R:/192.168.110.188:8091]) will closed
09:06:44.435 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x7ded677c, L:/192.168.110.235:62359 ! R:/192.168.110.188:8091]
09:06:44.437 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x7ded677c, L:/192.168.110.235:62359 ! R:/192.168.110.188:8091]
09:06:44.438 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7ded677c, L:/192.168.110.235:62359 ! R:/192.168.110.188:8091]) will closed
09:06:44.439 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7ded677c, L:/192.168.110.235:62359 ! R:/192.168.110.188:8091]) will closed
09:06:44.449 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Server healthy check fail, currentConnection = 1718758635972_192.168.110.235_61176
09:06:44.448 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Server healthy check fail, currentConnection = 1718758659570_192.168.110.235_61717
09:06:44.449 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Server healthy check fail, currentConnection = 1718758627246_192.168.110.235_61121
09:06:44.449 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:06:44.449 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:06:44.449 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:06:44.448 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Server healthy check fail, currentConnection = 1718758635039_192.168.110.235_61172
09:06:44.450 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:06:44.577 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718759204642_192.168.110.235_62597
09:06:44.577 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718758635039_192.168.110.235_61172
09:06:44.577 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Success to connect a server [192.168.110.235:8848], connectionId = 1718759204642_192.168.110.235_62595
09:06:44.577 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718759204642_192.168.110.235_62596
09:06:44.578 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718758627246_192.168.110.235_61121
09:06:44.578 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718758635039_192.168.110.235_61172
09:06:44.578 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718758635972_192.168.110.235_61176
09:06:44.578 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718758627246_192.168.110.235_61121
09:06:44.578 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718758635972_192.168.110.235_61176
09:06:44.585 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Notify disconnected event to listeners
09:06:44.585 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Notify disconnected event to listeners
09:06:44.585 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:06:44.586 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Notify disconnected event to listeners
09:06:44.585 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:06:44.585 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:06:44.593 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Success to connect a server [192.168.110.235:8848], connectionId = 1718759204651_192.168.110.235_62598
09:06:44.593 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718758659570_192.168.110.235_61717
09:06:44.594 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718758659570_192.168.110.235_61717
09:06:44.594 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:06:44.594 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Notify disconnected event to listeners
09:06:44.601 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Notify connected event to listeners.
09:06:44.612 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Notify connected event to listeners.
09:06:44.614 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Notify connected event to listeners.
09:06:44.617 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Notify connected event to listeners.
09:06:44.714 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718759204777_192.168.110.235_62601
09:06:44.714 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718759204774_192.168.110.235_62599
09:06:44.729 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Success to connect a server [192.168.110.235:8848], connectionId = 1718759204784_192.168.110.235_62602
09:06:44.729 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Success to connect a server [192.168.110.235:8848], connectionId = 1718759204775_192.168.110.235_62600
09:06:44.798 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718759204642_192.168.110.235_62596
09:06:44.798 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718759204651_192.168.110.235_62598
09:06:44.798 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718759204642_192.168.110.235_62597
09:06:44.799 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718759204642_192.168.110.235_62596
09:06:44.799 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718759204642_192.168.110.235_62595
09:06:44.799 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718759204651_192.168.110.235_62598
09:06:44.799 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718759204642_192.168.110.235_62595
09:06:44.799 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718759204642_192.168.110.235_62597
09:06:44.803 [nacos-grpc-client-executor-130] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718759204651_192.168.110.235_62598]Ignore complete event,isRunning:false,isAbandon=true
09:06:44.804 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Notify disconnected event to listeners
09:06:44.803 [nacos-grpc-client-executor-122] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718759204642_192.168.110.235_62595]Ignore complete event,isRunning:false,isAbandon=true
09:06:44.805 [nacos-grpc-client-executor-149] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718759204642_192.168.110.235_62597]Ignore complete event,isRunning:true,isAbandon=true
09:06:44.805 [nacos-grpc-client-executor-135] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718759204642_192.168.110.235_62596]Ignore complete event,isRunning:true,isAbandon=true
09:06:44.806 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Server check success, currentServer is 192.168.110.235:8848
09:06:44.806 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Server check success, currentServer is 192.168.110.235:8848
09:06:44.807 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Notify disconnected event to listeners
09:06:44.807 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Notify disconnected event to listeners
09:06:44.807 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Notify disconnected event to listeners
09:06:44.808 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Notify connected event to listeners.
09:06:44.814 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Notify connected event to listeners.
09:06:44.814 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Notify connected event to listeners.
09:06:44.814 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Notify connected event to listeners.
09:06:47.559 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:06:47.559 [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:06:47.579 [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: 0x6a788b6d, L:/192.168.110.235:62613 - R:/192.168.110.188:8091]
09:06:47.579 [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: 0x6a788b6d, L:/192.168.110.235:62613 - R:/192.168.110.188:8091]
09:06:47.978 [nacos-grpc-client-executor-138] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Receive server push request, request = NotifySubscriberRequest, requestId = 45
09:06:47.978 [nacos-grpc-client-executor-126] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Receive server push request, request = NotifySubscriberRequest, requestId = 47
09:06:47.978 [nacos-grpc-client-executor-138] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Ack server push request, request = NotifySubscriberRequest, requestId = 45
09:06:47.978 [nacos-grpc-client-executor-126] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Ack server push request, request = NotifySubscriberRequest, requestId = 47
09:06:47.980 [nacos-grpc-client-executor-139] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Receive server push request, request = NotifySubscriberRequest, requestId = 46
09:06:47.981 [nacos-grpc-client-executor-139] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Ack server push request, request = NotifySubscriberRequest, requestId = 46
09:06:47.983 [nacos-grpc-client-executor-140] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Receive server push request, request = NotifySubscriberRequest, requestId = 44
09:06:47.984 [nacos-grpc-client-executor-140] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Ack server push request, request = NotifySubscriberRequest, requestId = 44
09:06:47.986 [nacos-grpc-client-executor-141] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Receive server push request, request = NotifySubscriberRequest, requestId = 48
09:06:47.986 [nacos-grpc-client-executor-141] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Ack server push request, request = NotifySubscriberRequest, requestId = 48
09:06:48.987 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:06:48.988 [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:06:48.995 [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: 0xdf193f24, L:/192.168.110.235:62614 - R:/192.168.110.188:8091]
09:06:48.995 [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: 0xdf193f24, L:/192.168.110.235:62614 - R:/192.168.110.188:8091]
09:14:37.129 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x6a788b6d, L:/192.168.110.235:62613 - R:/192.168.110.188:8091] read idle.
09:14:37.130 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x6a788b6d, L:/192.168.110.235:62613 - R:/192.168.110.188:8091]
09:14:37.130 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0xdf193f24, L:/192.168.110.235:62614 - R:/192.168.110.188:8091] read idle.
09:14:37.130 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6a788b6d, L:/192.168.110.235:62613 - R:/192.168.110.188:8091]) will closed
09:14:37.130 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xdf193f24, L:/192.168.110.235:62614 - R:/192.168.110.188:8091]
09:14:37.131 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdf193f24, L:/192.168.110.235:62614 - R:/192.168.110.188:8091]) will closed
09:14:37.132 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdf193f24, L:/192.168.110.235:62614 ! R:/192.168.110.188:8091]) will closed
09:14:37.132 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6a788b6d, L:/192.168.110.235:62613 ! R:/192.168.110.188:8091]) will closed
09:14:37.133 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x6a788b6d, L:/192.168.110.235:62613 ! R:/192.168.110.188:8091]
09:14:37.133 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xdf193f24, L:/192.168.110.235:62614 ! R:/192.168.110.188:8091]
09:14:37.133 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x6a788b6d, L:/192.168.110.235:62613 ! R:/192.168.110.188:8091]
09:14:37.133 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xdf193f24, L:/192.168.110.235:62614 ! R:/192.168.110.188:8091]
09:14:37.133 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x6a788b6d, L:/192.168.110.235:62613 ! R:/192.168.110.188:8091]
09:14:37.135 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6a788b6d, L:/192.168.110.235:62613 ! R:/192.168.110.188:8091]) will closed
09:14:37.135 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xdf193f24, L:/192.168.110.235:62614 ! R:/192.168.110.188:8091]
09:14:37.135 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6a788b6d, L:/192.168.110.235:62613 ! R:/192.168.110.188:8091]) will closed
09:14:37.136 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdf193f24, L:/192.168.110.235:62614 ! R:/192.168.110.188:8091]) will closed
09:14:40.809 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdf193f24, L:/192.168.110.235:62614 ! R:/192.168.110.188:8091]) will closed
09:14:40.809 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:14:40.809 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x6a788b6d, L:/192.168.110.235:62613 ! R:/192.168.110.188:8091]
09:14:40.811 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xdf193f24, L:/192.168.110.235:62614 ! R:/192.168.110.188:8091]
09:14:40.811 [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:14:40.812 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xdf193f24, L:/192.168.110.235:62614 ! R:/192.168.110.188:8091]
09:14:40.813 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Server healthy check fail, currentConnection = 1718759204774_192.168.110.235_62599
09:14:40.813 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xdf193f24, L:/192.168.110.235:62614 ! R:/192.168.110.188:8091]
09:14:40.814 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:14:41.431 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdf193f24, L:/192.168.110.235:62614 ! R:/192.168.110.188:8091]) will closed
09:14:41.847 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdf193f24, L:/192.168.110.235:62614 ! R:/192.168.110.188:8091]) will closed
09:14:42.697 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Server healthy check fail, currentConnection = 1718759204775_192.168.110.235_62600
09:14:42.697 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Server healthy check fail, currentConnection = 1718759204777_192.168.110.235_62601
09:14:42.698 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:14:42.698 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:14:44.656 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718759683839_192.168.110.235_62944
09:14:44.657 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718759204774_192.168.110.235_62599
09:14:44.658 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718759204774_192.168.110.235_62599
09:14:44.856 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Notify disconnected event to listeners
09:14:45.038 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Success to connect a server [192.168.110.235:8848], connectionId = 1718759684409_192.168.110.235_62946
09:14:45.038 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718759684227_192.168.110.235_62945
09:14:45.039 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718759204777_192.168.110.235_62601
09:14:45.039 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718759204775_192.168.110.235_62600
09:14:45.039 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718759204777_192.168.110.235_62601
09:14:45.039 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718759204775_192.168.110.235_62600
09:14:45.040 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Notify disconnected event to listeners
09:14:45.233 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Notify disconnected event to listeners
09:14:45.236 [nacos-grpc-client-executor-222] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718759204775_192.168.110.235_62600]Ignore complete event,isRunning:true,isAbandon=true
09:14:45.623 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:14:45.625 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Notify connected event to listeners.
09:14:45.626 [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:15:08.047 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Notify connected event to listeners.
09:15:08.048 [nacos-grpc-client-executor-250] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Receive server push request, request = ClientDetectionRequest, requestId = 53
09:15:08.048 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xd0e93ac3, L:0.0.0.0/0.0.0.0:62947 ! R:/192.168.110.188:8091]
09:15:08.048 [nacos-grpc-client-executor-250] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Ack server push request, request = ClientDetectionRequest, requestId = 53
09:15:08.054 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Server healthy check fail, currentConnection = 1718759684227_192.168.110.235_62945
09:15:08.054 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:15:08.058 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Server healthy check fail, currentConnection = 1718759204784_192.168.110.235_62602
09:15:08.058 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:15:08.058 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Server healthy check fail, currentConnection = 1718759683839_192.168.110.235_62944
09:15:08.058 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:15:08.061 [nacos-grpc-client-executor-233] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 54
09:15:08.064 [nacos-grpc-client-executor-233] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 54
09:16:24.056 [nacos-grpc-client-executor-247] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 52
09:16:24.057 [nacos-grpc-client-executor-247] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 52
09:16:24.061 [nacos-grpc-client-executor-247] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718759684227_192.168.110.235_62945]Ignore complete event,isRunning:false,isAbandon=false
09:16:24.067 [nacos-grpc-client-executor-233] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718759683839_192.168.110.235_62944]Ignore complete event,isRunning:false,isAbandon=false
09:16:31.788 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x6a788b6d, L:/192.168.110.235:62613 ! R:/192.168.110.188:8091]
09:16:31.788 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x6a788b6d, L:/192.168.110.235:62613 ! R:/192.168.110.188:8091]
09:16:31.788 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xd0e93ac3, L:0.0.0.0/0.0.0.0:62947 ! R:/192.168.110.188:8091]
09:16:31.788 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6a788b6d, L:/192.168.110.235:62613 ! R:/192.168.110.188:8091]) will closed
09:16:31.788 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xd0e93ac3, L:0.0.0.0/0.0.0.0:62947 ! R:/192.168.110.188:8091]
09:16:31.789 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x6a788b6d, L:/192.168.110.235:62613 ! R:/192.168.110.188:8091]) will closed
09:16:31.789 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd0e93ac3, L:0.0.0.0/0.0.0.0:62947 ! R:/192.168.110.188:8091]) will closed
09:16:31.792 [nacos-grpc-client-executor-225] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Receive server push request, request = ClientDetectionRequest, requestId = 57
09:16:31.792 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd0e93ac3, L:0.0.0.0/0.0.0.0:62947 ! R:/192.168.110.188:8091]) will closed
09:16:31.792 [nacos-grpc-client-executor-225] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Ack server push request, request = ClientDetectionRequest, requestId = 57
09:16:31.792 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:16:31.793 [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:16:31.793 [nacos-grpc-client-executor-225] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718759684409_192.168.110.235_62946]Ignore complete event,isRunning:false,isAbandon=false
09:16:35.103 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:16:35.106 [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:16:38.289 [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: 0x972b2cf5, L:/192.168.110.235:63002 - R:/192.168.110.188:8091]
09:16:38.290 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 3188 ms, version:1.7.0,role:RMROLE,channel:[id: 0x972b2cf5, L:/192.168.110.235:63002 - R:/192.168.110.188:8091]
09:16:38.292 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [40f6d317-fbbc-4cb4-8d0e-780303ab50c3_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:16:38.292 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d9f1bd5-d380-4365-9a54-c9b6af4e2fa1] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
09:16:38.295 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Server healthy check fail, currentConnection = 1718759684409_192.168.110.235_62946
09:16:38.295 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:16:38.305 [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: 0x49fb28d1, L:/192.168.110.235:63008 - R:/192.168.110.188:8091]
09:16:38.305 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 3195 ms, version:1.7.0,role:TMROLE,channel:[id: 0x49fb28d1, L:/192.168.110.235:63008 - R:/192.168.110.188:8091]
09:16:38.308 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Notify connected event to listeners.
09:16:38.423 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Success to connect a server [192.168.110.235:8848], connectionId = 1718759798494_192.168.110.235_63015
09:16:38.423 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718759684409_192.168.110.235_62946
09:16:38.423 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718759684409_192.168.110.235_62946
09:16:38.423 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Notify disconnected event to listeners
09:16:38.424 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718759798488_192.168.110.235_63014
09:16:38.424 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718759683839_192.168.110.235_62944
09:16:38.425 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718759683839_192.168.110.235_62944
09:16:38.425 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Notify disconnected event to listeners
09:16:38.425 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Server check success, currentServer is 192.168.110.235:8848
09:16:38.431 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc6088ad-e8c5-4a45-80f9-9552f4f73158] Notify connected event to listeners.
09:16:38.432 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [af86f7b2-97e2-4604-8f3b-0fdfe99a1867_config-0] Notify connected event to listeners.
09:18:41.137 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:18:42.183 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 089dcd06-d512-4e12-b689-85d160bfc1ca_config-0
09:18:42.275 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 52 ms to scan 1 urls, producing 3 keys and 6 values 
09:18:42.318 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
09:18:42.335 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values 
09:18:42.363 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 14 urls, producing 0 keys and 0 values 
09:18:42.378 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
09:18:42.397 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values 
09:18:42.415 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values 
09:18:42.454 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 35 ms to scan 14 urls, producing 0 keys and 0 values 
09:18:42.457 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [089dcd06-d512-4e12-b689-85d160bfc1ca_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:18:42.458 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [089dcd06-d512-4e12-b689-85d160bfc1ca_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1886301021
09:18:42.458 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [089dcd06-d512-4e12-b689-85d160bfc1ca_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1920098017
09:18:42.459 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [089dcd06-d512-4e12-b689-85d160bfc1ca_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:18:42.460 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [089dcd06-d512-4e12-b689-85d160bfc1ca_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:18:42.474 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [089dcd06-d512-4e12-b689-85d160bfc1ca_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:18:44.371 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [089dcd06-d512-4e12-b689-85d160bfc1ca_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718759924316_192.168.110.235_63105
09:18:44.374 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [089dcd06-d512-4e12-b689-85d160bfc1ca_config-0] Notify connected event to listeners.
09:18:44.376 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [089dcd06-d512-4e12-b689-85d160bfc1ca_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:18:44.378 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [089dcd06-d512-4e12-b689-85d160bfc1ca_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1536465406
09:18:44.528 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:18:48.404 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
09:18:48.493 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
09:18:48.506 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
09:18:48.685 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c3d39f53-fb00-4c5e-9964-672e02f396c0_config-0
09:18:48.685 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3d39f53-fb00-4c5e-9964-672e02f396c0_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:18:48.686 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3d39f53-fb00-4c5e-9964-672e02f396c0_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1886301021
09:18:48.686 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3d39f53-fb00-4c5e-9964-672e02f396c0_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1920098017
09:18:48.686 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3d39f53-fb00-4c5e-9964-672e02f396c0_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:18:48.686 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3d39f53-fb00-4c5e-9964-672e02f396c0_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:18:48.687 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3d39f53-fb00-4c5e-9964-672e02f396c0_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:18:48.813 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3d39f53-fb00-4c5e-9964-672e02f396c0_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718759928883_192.168.110.235_63108
09:18:48.813 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3d39f53-fb00-4c5e-9964-672e02f396c0_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:18:48.813 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3d39f53-fb00-4c5e-9964-672e02f396c0_config-0] Notify connected event to listeners.
09:18:48.813 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3d39f53-fb00-4c5e-9964-672e02f396c0_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1536465406
09:18:48.942 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
09:18:49.167 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:18:49.360 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 26c76f56-5309-485b-a6b2-6e0386d54f18
09:18:49.360 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26c76f56-5309-485b-a6b2-6e0386d54f18] RpcClient init label, labels = {module=naming, source=sdk}
09:18:49.362 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26c76f56-5309-485b-a6b2-6e0386d54f18] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:18:49.363 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26c76f56-5309-485b-a6b2-6e0386d54f18] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:18:49.363 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26c76f56-5309-485b-a6b2-6e0386d54f18] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:18:49.364 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26c76f56-5309-485b-a6b2-6e0386d54f18] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:18:49.484 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26c76f56-5309-485b-a6b2-6e0386d54f18] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718759929551_192.168.110.235_63111
09:18:49.484 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26c76f56-5309-485b-a6b2-6e0386d54f18] Notify connected event to listeners.
09:18:49.484 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26c76f56-5309-485b-a6b2-6e0386d54f18] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:18:49.485 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26c76f56-5309-485b-a6b2-6e0386d54f18] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1536465406
09:18:49.523 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:18:49.741 [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:18:50.046 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26c76f56-5309-485b-a6b2-6e0386d54f18] Receive server push request, request = NotifySubscriberRequest, requestId = 58
09:18:50.056 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [26c76f56-5309-485b-a6b2-6e0386d54f18] Ack server push request, request = NotifySubscriberRequest, requestId = 58
09:18:50.303 [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: 0x20822210, L:/192.168.110.235:63112 - R:/192.168.110.188:8091]
09:18:50.311 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 93 ms, version:1.7.0,role:TMROLE,channel:[id: 0x20822210, L:/192.168.110.235:63112 - R:/192.168.110.188:8091]
09:18:50.312 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
09:18:50.354 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
09:18:50.355 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
09:18:50.366 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:18:50.366 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
09:18:50.366 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
09:18:51.392 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
09:18:51.393 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:18:51.393 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:18:51.553 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:18:52.148 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:18:52.149 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:18:52.149 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:18:55.409 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:18:55.787 [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
09:18:55.938 [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
09:20:06.283 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:20:07.256 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of fc50ffa1-bc5c-430b-8dbf-3107bfc5704f_config-0
09:20:07.346 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 56 ms to scan 1 urls, producing 3 keys and 6 values 
09:20:07.392 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
09:20:07.408 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values 
09:20:07.436 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 14 urls, producing 0 keys and 0 values 
09:20:07.451 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values 
09:20:07.471 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values 
09:20:07.489 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values 
09:20:07.519 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 14 urls, producing 0 keys and 0 values 
09:20:07.521 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc50ffa1-bc5c-430b-8dbf-3107bfc5704f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:20:07.522 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc50ffa1-bc5c-430b-8dbf-3107bfc5704f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/593045830
09:20:07.522 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc50ffa1-bc5c-430b-8dbf-3107bfc5704f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/65310008
09:20:07.523 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc50ffa1-bc5c-430b-8dbf-3107bfc5704f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:20:07.524 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc50ffa1-bc5c-430b-8dbf-3107bfc5704f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:20:07.536 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc50ffa1-bc5c-430b-8dbf-3107bfc5704f_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:20:09.273 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc50ffa1-bc5c-430b-8dbf-3107bfc5704f_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718760009234_192.168.110.235_63290
09:20:09.274 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc50ffa1-bc5c-430b-8dbf-3107bfc5704f_config-0] Notify connected event to listeners.
09:20:09.275 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc50ffa1-bc5c-430b-8dbf-3107bfc5704f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:20:09.275 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fc50ffa1-bc5c-430b-8dbf-3107bfc5704f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/740950652
09:20:09.611 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:20:12.631 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
09:20:12.729 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
09:20:12.740 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
09:20:12.904 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ddd8538f-4d3d-456a-8a90-dfa43a45e3b1_config-0
09:20:12.904 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddd8538f-4d3d-456a-8a90-dfa43a45e3b1_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:20:12.904 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddd8538f-4d3d-456a-8a90-dfa43a45e3b1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/593045830
09:20:12.904 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddd8538f-4d3d-456a-8a90-dfa43a45e3b1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/65310008
09:20:12.905 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddd8538f-4d3d-456a-8a90-dfa43a45e3b1_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:20:12.905 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddd8538f-4d3d-456a-8a90-dfa43a45e3b1_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:20:12.905 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddd8538f-4d3d-456a-8a90-dfa43a45e3b1_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:20:13.024 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddd8538f-4d3d-456a-8a90-dfa43a45e3b1_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718760013093_192.168.110.235_63293
09:20:13.024 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddd8538f-4d3d-456a-8a90-dfa43a45e3b1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:20:13.024 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddd8538f-4d3d-456a-8a90-dfa43a45e3b1_config-0] Notify connected event to listeners.
09:20:13.025 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ddd8538f-4d3d-456a-8a90-dfa43a45e3b1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/740950652
09:20:13.142 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
09:20:13.527 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:20:13.797 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 546ef9b6-9ea3-4580-ae00-e8e129d2873d
09:20:13.797 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [546ef9b6-9ea3-4580-ae00-e8e129d2873d] RpcClient init label, labels = {module=naming, source=sdk}
09:20:13.799 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [546ef9b6-9ea3-4580-ae00-e8e129d2873d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:20:13.799 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [546ef9b6-9ea3-4580-ae00-e8e129d2873d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:20:13.800 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [546ef9b6-9ea3-4580-ae00-e8e129d2873d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:20:13.801 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [546ef9b6-9ea3-4580-ae00-e8e129d2873d] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:20:13.931 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [546ef9b6-9ea3-4580-ae00-e8e129d2873d] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718760013992_192.168.110.235_63296
09:20:13.931 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [546ef9b6-9ea3-4580-ae00-e8e129d2873d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:20:13.931 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [546ef9b6-9ea3-4580-ae00-e8e129d2873d] Notify connected event to listeners.
09:20:13.931 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [546ef9b6-9ea3-4580-ae00-e8e129d2873d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/740950652
09:20:13.972 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:20:14.214 [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:20:14.570 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [546ef9b6-9ea3-4580-ae00-e8e129d2873d] Receive server push request, request = NotifySubscriberRequest, requestId = 59
09:20:14.579 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [546ef9b6-9ea3-4580-ae00-e8e129d2873d] Ack server push request, request = NotifySubscriberRequest, requestId = 59
09:20:14.737 [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: 0x01233339, L:/192.168.110.235:63297 - R:/192.168.110.188:8091]
09:20:14.744 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 85 ms, version:1.7.0,role:TMROLE,channel:[id: 0x01233339, L:/192.168.110.235:63297 - R:/192.168.110.188:8091]
09:20:14.745 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
09:20:14.814 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
09:20:14.815 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
09:20:14.831 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:20:14.832 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
09:20:14.832 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
09:20:15.872 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
09:20:15.872 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:20:15.872 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:20:16.026 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:20:16.701 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:20:16.703 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:20:16.703 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:20:19.520 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:20:19.861 [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
09:20:19.938 [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
09:20:21.205 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:20:24.154 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b647878b-a5a4-4d49-967a-1da035f47796
09:20:24.155 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b647878b-a5a4-4d49-967a-1da035f47796] RpcClient init label, labels = {module=naming, source=sdk}
09:20:24.155 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b647878b-a5a4-4d49-967a-1da035f47796] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:20:24.156 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b647878b-a5a4-4d49-967a-1da035f47796] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:20:24.156 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b647878b-a5a4-4d49-967a-1da035f47796] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:20:24.156 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b647878b-a5a4-4d49-967a-1da035f47796] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:20:24.271 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b647878b-a5a4-4d49-967a-1da035f47796] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718760024342_192.168.110.235_63398
09:20:24.272 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b647878b-a5a4-4d49-967a-1da035f47796] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:20:24.272 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b647878b-a5a4-4d49-967a-1da035f47796] Notify connected event to listeners.
09:20:24.272 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b647878b-a5a4-4d49-967a-1da035f47796] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/740950652
09:20:24.300 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
09:20:24.332 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
09:20:24.864 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b647878b-a5a4-4d49-967a-1da035f47796] Receive server push request, request = NotifySubscriberRequest, requestId = 61
09:20:24.867 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b647878b-a5a4-4d49-967a-1da035f47796] Ack server push request, request = NotifySubscriberRequest, requestId = 61
09:20:25.385 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 20.174 seconds (JVM running for 22.315)
09:20:25.402 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
09:20:25.414 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
09:20:25.420 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
09:20:25.994 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:21:14.834 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:21:14.836 [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:21:14.845 [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: 0x132ab4e9, L:/192.168.110.235:63440 - R:/192.168.110.188:8091]
09:21:14.845 [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: 0x132ab4e9, L:/192.168.110.235:63440 - R:/192.168.110.188:8091]
09:21:44.248 [nacos-grpc-client-executor-24] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b647878b-a5a4-4d49-967a-1da035f47796] Receive server push request, request = NotifySubscriberRequest, requestId = 63
09:21:44.249 [nacos-grpc-client-executor-24] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b647878b-a5a4-4d49-967a-1da035f47796] Ack server push request, request = NotifySubscriberRequest, requestId = 63
09:21:44.790 [nacos-grpc-client-executor-26] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b647878b-a5a4-4d49-967a-1da035f47796] Receive server push request, request = NotifySubscriberRequest, requestId = 64
09:21:44.791 [nacos-grpc-client-executor-26] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b647878b-a5a4-4d49-967a-1da035f47796] Ack server push request, request = NotifySubscriberRequest, requestId = 64
09:24:01.751 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:24:02.709 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 2255c07a-c6ae-446b-9866-6242ae67b345_config-0
09:24:02.790 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 48 ms to scan 1 urls, producing 3 keys and 6 values 
09:24:02.835 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 4 keys and 9 values 
09:24:02.851 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 3 keys and 10 values 
09:24:02.876 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 14 urls, producing 0 keys and 0 values 
09:24:02.890 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
09:24:02.908 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values 
09:24:02.932 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 2 keys and 8 values 
09:24:02.970 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 34 ms to scan 14 urls, producing 0 keys and 0 values 
09:24:02.971 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:24:02.972 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1217639236
09:24:02.973 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1403413933
09:24:02.974 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:24:02.975 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:24:02.987 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:24:04.631 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718760244592_192.168.110.235_63535
09:24:04.632 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Notify connected event to listeners.
09:24:04.633 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:24:04.634 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1090160486
09:24:04.746 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
09:24:07.700 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
09:24:07.799 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
09:24:07.810 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
09:24:07.983 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0
09:24:07.984 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
09:24:07.984 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1217639236
09:24:07.984 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1403413933
09:24:07.984 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
09:24:07.984 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
09:24:07.985 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:24:08.101 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718760248174_192.168.110.235_63538
09:24:08.101 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:24:08.101 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Notify connected event to listeners.
09:24:08.102 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1090160486
09:24:08.211 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
09:24:08.432 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:24:08.617 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 5bced18f-c6ce-433c-b765-fc13e45ff797
09:24:08.618 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] RpcClient init label, labels = {module=naming, source=sdk}
09:24:08.620 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:24:08.621 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:24:08.621 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:24:08.622 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:24:08.744 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718760248807_192.168.110.235_63541
09:24:08.744 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Notify connected event to listeners.
09:24:08.744 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:24:08.744 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1090160486
09:24:08.780 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:24:08.986 [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:24:09.296 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Receive server push request, request = NotifySubscriberRequest, requestId = 67
09:24:09.304 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Ack server push request, request = NotifySubscriberRequest, requestId = 67
09:24:09.551 [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: 0x2bf0ff1e, L:/192.168.110.235:63542 - R:/192.168.110.188:8091]
09:24:09.558 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 101 ms, version:1.7.0,role:TMROLE,channel:[id: 0x2bf0ff1e, L:/192.168.110.235:63542 - R:/192.168.110.188:8091]
09:24:09.559 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
09:24:09.602 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
09:24:09.603 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
09:24:09.615 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
09:24:09.616 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
09:24:09.616 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
09:24:10.615 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
09:24:10.615 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:24:10.616 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
09:24:10.765 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:24:11.358 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
09:24:11.359 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
09:24:11.359 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:24:14.127 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
09:24:14.490 [redisson-netty-2-9] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
09:24:14.660 [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
09:24:15.909 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:24:18.805 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e9844258-651e-4a32-a939-b5d778f246fa
09:24:18.807 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] RpcClient init label, labels = {module=naming, source=sdk}
09:24:18.807 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:24:18.808 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:24:18.808 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:24:18.808 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
09:24:18.924 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718760258996_192.168.110.235_63642
09:24:18.924 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:24:18.924 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Notify connected event to listeners.
09:24:18.924 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1090160486
09:24:18.970 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
09:24:19.042 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
09:24:19.584 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 68
09:24:19.587 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 68
09:24:20.113 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 19.384 seconds (JVM running for 21.384)
09:24:20.129 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
09:24:20.141 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
09:24:20.149 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
09:24:20.862 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:25:09.623 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:25:09.625 [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:25:09.633 [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: 0xd8bbc2d7, L:/192.168.110.235:63674 - R:/192.168.110.188:8091]
09:25:09.633 [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: 0xd8bbc2d7, L:/192.168.110.235:63674 - R:/192.168.110.188:8091]
09:34:21.130 [nacos-grpc-client-executor-133] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 71
09:34:21.131 [nacos-grpc-client-executor-133] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 71
09:34:21.228 [nacos-grpc-client-executor-134] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 72
09:34:21.228 [nacos-grpc-client-executor-134] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 72
09:34:21.336 [nacos-grpc-client-executor-135] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 73
09:34:21.337 [nacos-grpc-client-executor-135] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 73
09:51:45.652 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0xd8bbc2d7, L:/192.168.110.235:63674 - R:/192.168.110.188:8091] read idle.
09:51:46.744 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xd8bbc2d7, L:/192.168.110.235:63674 - R:/192.168.110.188:8091]
09:51:46.744 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd8bbc2d7, L:/192.168.110.235:63674 - R:/192.168.110.188:8091]) will closed
09:51:46.748 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd8bbc2d7, L:/192.168.110.235:63674 ! R:/192.168.110.188:8091]) will closed
09:51:46.748 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xd8bbc2d7, L:/192.168.110.235:63674 ! R:/192.168.110.188:8091]
09:51:46.748 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xd8bbc2d7, L:/192.168.110.235:63674 ! R:/192.168.110.188:8091]
09:51:47.515 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xd8bbc2d7, L:/192.168.110.235:63674 ! R:/192.168.110.188:8091]
09:51:47.515 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd8bbc2d7, L:/192.168.110.235:63674 ! R:/192.168.110.188:8091]) will closed
09:51:47.515 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd8bbc2d7, L:/192.168.110.235:63674 ! R:/192.168.110.188:8091]) will closed
09:51:47.518 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xd8bbc2d7, L:/192.168.110.235:63674 ! R:/192.168.110.188:8091]
09:51:47.518 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xd8bbc2d7, L:/192.168.110.235:63674 ! R:/192.168.110.188:8091]
09:51:47.519 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xd8bbc2d7, L:/192.168.110.235:63674 ! R:/192.168.110.188:8091]
09:51:47.520 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd8bbc2d7, L:/192.168.110.235:63674 ! R:/192.168.110.188:8091]) will closed
09:51:47.520 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd8bbc2d7, L:/192.168.110.235:63674 ! R:/192.168.110.188:8091]) will closed
09:51:47.522 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x2bf0ff1e, L:/192.168.110.235:63542 - R:/192.168.110.188:8091] read idle.
09:51:47.522 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x2bf0ff1e, L:/192.168.110.235:63542 - R:/192.168.110.188:8091]
09:51:47.523 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2bf0ff1e, L:/192.168.110.235:63542 - R:/192.168.110.188:8091]) will closed
09:51:47.523 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2bf0ff1e, L:/192.168.110.235:63542 ! R:/192.168.110.188:8091]) will closed
09:51:47.525 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x2bf0ff1e, L:/192.168.110.235:63542 ! R:/192.168.110.188:8091]
09:51:47.525 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x2bf0ff1e, L:/192.168.110.235:63542 ! R:/192.168.110.188:8091]
09:51:47.525 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x2bf0ff1e, L:/192.168.110.235:63542 ! R:/192.168.110.188:8091]
09:51:47.525 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2bf0ff1e, L:/192.168.110.235:63542 ! R:/192.168.110.188:8091]) will closed
09:51:47.526 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2bf0ff1e, L:/192.168.110.235:63542 ! R:/192.168.110.188:8091]) will closed
09:51:47.526 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x2bf0ff1e, L:/192.168.110.235:63542 ! R:/192.168.110.188:8091]
09:51:47.526 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x2bf0ff1e, L:/192.168.110.235:63542 ! R:/192.168.110.188:8091]
09:51:47.526 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x2bf0ff1e, L:/192.168.110.235:63542 ! R:/192.168.110.188:8091]
09:51:47.526 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2bf0ff1e, L:/192.168.110.235:63542 ! R:/192.168.110.188:8091]) will closed
09:51:47.527 [nacos-grpc-client-executor-340] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 76
09:51:47.527 [nacos-grpc-client-executor-316] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Receive server push request, request = ClientDetectionRequest, requestId = 77
09:51:47.527 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2bf0ff1e, L:/192.168.110.235:63542 ! R:/192.168.110.188:8091]) will closed
09:51:47.531 [nacos-grpc-client-executor-316] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Ack server push request, request = ClientDetectionRequest, requestId = 77
09:51:47.531 [nacos-grpc-client-executor-340] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 76
09:51:47.537 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Server healthy check fail, currentConnection = 1718760248807_192.168.110.235_63541
09:51:47.538 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:51:47.540 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Server healthy check fail, currentConnection = 1718760258996_192.168.110.235_63642
09:51:47.540 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:51:47.542 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Server healthy check fail, currentConnection = 1718760244592_192.168.110.235_63535
09:51:47.543 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:51:47.546 [nacos-grpc-client-executor-322] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 75
09:51:47.546 [nacos-grpc-client-executor-322] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 75
09:51:47.546 [nacos-grpc-client-executor-361] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = ClientDetectionRequest, requestId = 74
09:51:47.547 [nacos-grpc-client-executor-322] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718760244592_192.168.110.235_63535]Ignore complete event,isRunning:false,isAbandon=false
09:51:47.546 [nacos-grpc-client-executor-361] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = ClientDetectionRequest, requestId = 74
09:51:47.548 [nacos-grpc-client-executor-361] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718760258996_192.168.110.235_63642]Ignore complete event,isRunning:false,isAbandon=false
09:51:47.551 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Server healthy check fail, currentConnection = 1718760248174_192.168.110.235_63538
09:51:47.552 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:51:47.676 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718761907738_192.168.110.235_64504
09:51:47.676 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Success to connect a server [192.168.110.235:8848], connectionId = 1718761907751_192.168.110.235_64505
09:51:47.676 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Success to connect a server [192.168.110.235:8848], connectionId = 1718761907737_192.168.110.235_64503
09:51:47.676 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718761907751_192.168.110.235_64506
09:51:47.676 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718760258996_192.168.110.235_63642
09:51:47.676 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718760244592_192.168.110.235_63535
09:51:47.676 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718760248807_192.168.110.235_63541
09:51:47.676 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718760248174_192.168.110.235_63538
09:51:47.676 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718760258996_192.168.110.235_63642
09:51:47.676 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718760244592_192.168.110.235_63535
09:51:47.676 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718760248807_192.168.110.235_63541
09:51:47.676 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718760248174_192.168.110.235_63538
09:51:47.682 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:51:47.683 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Notify disconnected event to listeners
09:51:47.683 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Notify disconnected event to listeners
09:51:47.682 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:51:47.683 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Notify disconnected event to listeners
09:51:47.683 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Notify disconnected event to listeners
09:51:47.696 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Notify connected event to listeners.
09:51:47.705 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Notify connected event to listeners.
09:51:47.705 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Notify connected event to listeners.
09:51:47.706 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Notify connected event to listeners.
09:51:47.757 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Server check success, currentServer is 192.168.110.235:8848
09:51:47.772 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Server check success, currentServer is 192.168.110.235:8848
09:51:47.815 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718761907873_192.168.110.235_64507
09:51:47.815 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Success to connect a server [192.168.110.235:8848], connectionId = 1718761907874_192.168.110.235_64508
09:51:47.815 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718761907737_192.168.110.235_64503
09:51:47.815 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718761907751_192.168.110.235_64506
09:51:47.815 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718761907737_192.168.110.235_64503
09:51:47.815 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718761907751_192.168.110.235_64506
09:51:47.817 [nacos-grpc-client-executor-325] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718761907737_192.168.110.235_64503]Ignore complete event,isRunning:false,isAbandon=true
09:51:47.817 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Notify disconnected event to listeners
09:51:47.817 [nacos-grpc-client-executor-349] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718761907751_192.168.110.235_64506]Ignore complete event,isRunning:true,isAbandon=true
09:51:47.818 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Notify connected event to listeners.
09:51:47.819 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Notify disconnected event to listeners
09:51:47.820 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Server check success, currentServer is 192.168.110.235:8848
09:51:47.820 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Notify connected event to listeners.
09:52:51.923 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:52:51.923 [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:52:51.926 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
09:52:51.924 [nacos-grpc-client-executor-328] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 80
09:52:53.219 [nacos-grpc-client-executor-328] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 80
09:52:51.927 [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:52:53.221 [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: 0x7047035a, L:/192.168.110.235:64558 - R:/192.168.110.188:8091]
09:52:53.222 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 1295 ms, version:1.7.0,role:RMROLE,channel:[id: 0x7047035a, L:/192.168.110.235:64558 - R:/192.168.110.188:8091]
09:52:53.222 [nacos-grpc-client-executor-374] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = ClientDetectionRequest, requestId = 81
09:52:53.225 [nacos-grpc-client-executor-374] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = ClientDetectionRequest, requestId = 81
09:52:53.231 [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: 0xc8551b57, L:/192.168.110.235:64559 - R:/192.168.110.188:8091]
09:52:53.232 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 6 ms, version:1.7.0,role:TMROLE,channel:[id: 0xc8551b57, L:/192.168.110.235:64559 - R:/192.168.110.188:8091]
09:52:53.236 [nacos-grpc-client-executor-352] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 82
09:52:53.236 [nacos-grpc-client-executor-352] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 82
09:52:53.238 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Server healthy check fail, currentConnection = 1718761907873_192.168.110.235_64507
09:52:53.239 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:52:53.246 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Server healthy check fail, currentConnection = 1718761907738_192.168.110.235_64504
09:52:53.246 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:52:53.247 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Server healthy check fail, currentConnection = 1718761907751_192.168.110.235_64505
09:52:53.247 [nacos-grpc-client-executor-327] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Receive server push request, request = ClientDetectionRequest, requestId = 83
09:52:53.247 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:52:53.247 [nacos-grpc-client-executor-327] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Ack server push request, request = ClientDetectionRequest, requestId = 83
09:52:53.253 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Server healthy check fail, currentConnection = 1718761907874_192.168.110.235_64508
09:52:53.253 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:52:53.361 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718761973439_192.168.110.235_64562
09:52:53.361 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718761907873_192.168.110.235_64507
09:52:53.361 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718761907873_192.168.110.235_64507
09:52:53.361 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:52:53.361 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Notify disconnected event to listeners
09:52:53.365 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718761973440_192.168.110.235_64563
09:52:53.365 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Success to connect a server [192.168.110.235:8848], connectionId = 1718761973440_192.168.110.235_64564
09:52:53.365 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718761907738_192.168.110.235_64504
09:52:53.365 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718761907751_192.168.110.235_64505
09:52:53.365 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718761907738_192.168.110.235_64504
09:52:53.365 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718761907751_192.168.110.235_64505
09:52:53.365 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:52:53.365 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Notify disconnected event to listeners
09:52:53.365 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Notify disconnected event to listeners
09:52:53.365 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:52:53.366 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Notify connected event to listeners.
09:52:53.368 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Notify connected event to listeners.
09:52:53.369 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Success to connect a server [192.168.110.235:8848], connectionId = 1718761973445_192.168.110.235_64565
09:52:53.372 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718761907874_192.168.110.235_64508
09:52:53.373 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718761907874_192.168.110.235_64508
09:52:53.374 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Try to reconnect to a new server, server is  not appointed, will choose a random server.
09:52:53.375 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Notify disconnected event to listeners
09:52:53.375 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Notify connected event to listeners.
09:52:53.382 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Notify connected event to listeners.
09:52:53.477 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718761973550_192.168.110.235_64566
09:52:53.477 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718761973439_192.168.110.235_64562
09:52:53.477 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718761973439_192.168.110.235_64562
09:52:53.477 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Notify disconnected event to listeners
09:52:53.479 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Notify connected event to listeners.
09:52:53.484 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Success to connect a server [192.168.110.235:8848], connectionId = 1718761973558_192.168.110.235_64567
09:52:53.484 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718761973559_192.168.110.235_64568
09:52:53.484 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718761973440_192.168.110.235_64564
09:52:53.484 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718761973440_192.168.110.235_64563
09:52:53.484 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718761973440_192.168.110.235_64564
09:52:53.484 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718761973440_192.168.110.235_64563
09:52:53.484 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Notify disconnected event to listeners
09:52:53.484 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Notify disconnected event to listeners
09:52:53.485 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Notify connected event to listeners.
09:52:53.487 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Notify connected event to listeners.
09:52:53.487 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Server check success, currentServer is 192.168.110.235:8848
09:52:53.489 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Success to connect a server [192.168.110.235:8848], connectionId = 1718761973566_192.168.110.235_64569
09:52:53.489 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718761973445_192.168.110.235_64565
09:52:53.489 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718761973445_192.168.110.235_64565
09:52:53.489 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Notify disconnected event to listeners
09:52:53.490 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Notify connected event to listeners.
09:52:53.538 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Server check success, currentServer is 192.168.110.235:8848
09:52:53.555 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Server check success, currentServer is 192.168.110.235:8848
09:52:56.841 [nacos-grpc-client-executor-398] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 85
09:52:56.842 [nacos-grpc-client-executor-398] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 85
09:52:56.844 [nacos-grpc-client-executor-399] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 87
09:52:56.844 [nacos-grpc-client-executor-399] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 87
09:52:56.846 [nacos-grpc-client-executor-400] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 84
09:52:56.848 [nacos-grpc-client-executor-400] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 84
09:52:56.851 [nacos-grpc-client-executor-401] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 86
09:52:56.852 [nacos-grpc-client-executor-401] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 86
09:52:56.949 [nacos-grpc-client-executor-343] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Receive server push request, request = NotifySubscriberRequest, requestId = 90
09:52:56.949 [nacos-grpc-client-executor-343] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Ack server push request, request = NotifySubscriberRequest, requestId = 90
09:53:02.935 [nacos-grpc-client-executor-403] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 91
09:53:02.936 [nacos-grpc-client-executor-403] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 91
10:18:35.518 [nacos-grpc-client-executor-787] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 97
10:18:35.530 [nacos-grpc-client-executor-787] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 97
10:19:14.484 [nacos-grpc-client-executor-798] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 100
10:19:14.510 [nacos-grpc-client-executor-798] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 100
10:19:22.315 [nacos-grpc-client-executor-800] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 105
10:19:22.325 [nacos-grpc-client-executor-800] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 105
10:19:23.078 [nacos-grpc-client-executor-801] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 108
10:19:23.089 [nacos-grpc-client-executor-801] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 108
10:20:06.347 [nacos-grpc-client-executor-811] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 113
10:20:06.359 [nacos-grpc-client-executor-811] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 113
10:20:15.092 [nacos-grpc-client-executor-813] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 119
10:20:15.104 [nacos-grpc-client-executor-813] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 119
10:25:52.369 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Server healthy check fail, currentConnection = 1718761973558_192.168.110.235_64567
10:25:52.369 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Server healthy check fail, currentConnection = 1718761973566_192.168.110.235_64569
10:25:52.369 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Server healthy check fail, currentConnection = 1718761973550_192.168.110.235_64566
10:25:52.369 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Try to reconnect to a new server, server is  not appointed, will choose a random server.
10:25:52.369 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
10:25:52.369 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Try to reconnect to a new server, server is  not appointed, will choose a random server.
10:25:52.487 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Success to connect a server [192.168.110.235:8848], connectionId = 1718763952564_192.168.110.235_50170
10:25:52.487 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Success to connect a server [192.168.110.235:8848], connectionId = 1718763952564_192.168.110.235_50169
10:25:52.487 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718761973566_192.168.110.235_64569
10:25:52.487 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718761973558_192.168.110.235_64567
10:25:52.487 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718761973566_192.168.110.235_64569
10:25:52.487 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718761973558_192.168.110.235_64567
10:25:52.503 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718763952566_192.168.110.235_50171
10:25:52.503 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718761973550_192.168.110.235_64566
10:25:52.503 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718761973550_192.168.110.235_64566
10:25:52.507 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Notify disconnected event to listeners
10:25:52.507 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Notify disconnected event to listeners
10:25:52.507 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Notify disconnected event to listeners
10:25:52.513 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Notify connected event to listeners.
10:25:52.519 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Notify connected event to listeners.
10:25:52.519 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Notify connected event to listeners.
10:28:21.539 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x7047035a, L:/192.168.110.235:64558 - R:/192.168.110.188:8091] read idle.
10:28:21.541 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x7047035a, L:/192.168.110.235:64558 - R:/192.168.110.188:8091]
10:28:21.541 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7047035a, L:/192.168.110.235:64558 - R:/192.168.110.188:8091]) will closed
10:28:21.542 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7047035a, L:/192.168.110.235:64558 ! R:/192.168.110.188:8091]) will closed
10:28:21.543 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x7047035a, L:/192.168.110.235:64558 ! R:/192.168.110.188:8091]
10:28:21.543 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x7047035a, L:/192.168.110.235:64558 ! R:/192.168.110.188:8091]
10:28:21.544 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x7047035a, L:/192.168.110.235:64558 ! R:/192.168.110.188:8091]
10:28:21.544 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7047035a, L:/192.168.110.235:64558 ! R:/192.168.110.188:8091]) will closed
10:28:21.545 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7047035a, L:/192.168.110.235:64558 ! R:/192.168.110.188:8091]) will closed
10:28:21.545 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
10:28:21.545 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x7047035a, L:/192.168.110.235:64558 ! R:/192.168.110.188:8091]
10:28:21.546 [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'} >
10:28:21.546 [nacos-grpc-client-executor-733] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 123
10:28:21.546 [nacos-grpc-client-executor-733] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 123
10:28:21.546 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0xc8551b57, L:/192.168.110.235:64559 - R:/192.168.110.188:8091] read idle.
10:28:21.547 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xc8551b57, L:/192.168.110.235:64559 - R:/192.168.110.188:8091]
10:28:21.548 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc8551b57, L:/192.168.110.235:64559 - R:/192.168.110.188:8091]) will closed
10:28:21.552 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc8551b57, L:/192.168.110.235:64559 ! R:/192.168.110.188:8091]) will closed
10:28:21.552 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xc8551b57, L:/192.168.110.235:64559 ! R:/192.168.110.188:8091]
10:28:21.552 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xc8551b57, L:/192.168.110.235:64559 ! R:/192.168.110.188:8091]
10:28:21.552 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xc8551b57, L:/192.168.110.235:64559 ! R:/192.168.110.188:8091]
10:28:21.552 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc8551b57, L:/192.168.110.235:64559 ! R:/192.168.110.188:8091]) will closed
10:28:21.553 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc8551b57, L:/192.168.110.235:64559 ! R:/192.168.110.188:8091]) will closed
10:28:21.553 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xc8551b57, L:/192.168.110.235:64559 ! R:/192.168.110.188:8091]
10:28:21.553 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xc8551b57, L:/192.168.110.235:64559 ! R:/192.168.110.188:8091]
10:28:21.553 [nacos-grpc-client-executor-894] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = ClientDetectionRequest, requestId = 126
10:28:21.553 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xc8551b57, L:/192.168.110.235:64559 ! R:/192.168.110.188:8091]
10:28:21.553 [nacos-grpc-client-executor-894] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = ClientDetectionRequest, requestId = 126
10:28:21.553 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc8551b57, L:/192.168.110.235:64559 ! R:/192.168.110.188:8091]) will closed
10:28:21.553 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc8551b57, L:/192.168.110.235:64559 ! R:/192.168.110.188:8091]) will closed
10:28:21.552 [nacos-grpc-client-executor-761] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 124
10:28:21.556 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Server healthy check fail, currentConnection = 1718763952566_192.168.110.235_50171
10:28:21.557 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
10:28:21.557 [nacos-grpc-client-executor-761] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 124
10:28:21.558 [nacos-grpc-client-executor-741] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Receive server push request, request = ClientDetectionRequest, requestId = 125
10:28:21.560 [nacos-grpc-client-executor-741] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Ack server push request, request = ClientDetectionRequest, requestId = 125
10:28:21.561 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Server healthy check fail, currentConnection = 1718763952564_192.168.110.235_50169
10:28:21.561 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Try to reconnect to a new server, server is  not appointed, will choose a random server.
10:28:21.563 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Server healthy check fail, currentConnection = 1718763952564_192.168.110.235_50170
10:28:21.564 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Try to reconnect to a new server, server is  not appointed, will choose a random server.
10:28:21.565 [nacos-grpc-client-executor-761] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718763952566_192.168.110.235_50171]Ignore complete event,isRunning:false,isAbandon=false
10:28:21.564 [nacos-grpc-client-executor-741] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718763952564_192.168.110.235_50170]Ignore complete event,isRunning:false,isAbandon=false
10:28:21.574 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Server healthy check fail, currentConnection = 1718761973559_192.168.110.235_64568
10:28:21.574 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
10:28:21.683 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718764101757_192.168.110.235_50630
10:28:21.683 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718763952566_192.168.110.235_50171
10:28:21.684 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718763952566_192.168.110.235_50171
10:28:21.685 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Notify disconnected event to listeners
10:28:21.693 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f6f3b1e4-d03e-4615-8495-6c8976d56fee_config-0] Notify connected event to listeners.
10:28:21.699 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Success to connect a server [192.168.110.235:8848], connectionId = 1718764101775_192.168.110.235_50632
10:28:21.699 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718764101776_192.168.110.235_50633
10:28:21.699 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Success to connect a server [192.168.110.235:8848], connectionId = 1718764101763_192.168.110.235_50631
10:28:21.699 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718763952564_192.168.110.235_50170
10:28:21.699 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718763952564_192.168.110.235_50169
10:28:21.699 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718761973559_192.168.110.235_64568
10:28:21.699 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718763952564_192.168.110.235_50170
10:28:21.699 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718761973559_192.168.110.235_64568
10:28:21.699 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718763952564_192.168.110.235_50169
10:28:21.699 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
10:28:21.699 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Notify disconnected event to listeners
10:28:21.699 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Try to reconnect to a new server, server is  not appointed, will choose a random server.
10:28:21.699 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Notify disconnected event to listeners
10:28:21.707 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Notify connected event to listeners.
10:28:21.707 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Notify connected event to listeners.
10:28:21.708 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Notify disconnected event to listeners
10:28:21.709 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Notify connected event to listeners.
10:28:21.784 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Server check success, currentServer is 192.168.110.235:8848
10:28:21.823 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Success to connect a server [192.168.110.235:8848], connectionId = 1718764101896_192.168.110.235_50636
10:28:21.823 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718764101895_192.168.110.235_50635
10:28:21.823 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718764101763_192.168.110.235_50631
10:28:21.823 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718764101776_192.168.110.235_50633
10:28:21.823 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718764101763_192.168.110.235_50631
10:28:21.823 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718764101776_192.168.110.235_50633
10:28:21.824 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Notify disconnected event to listeners
10:28:21.824 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Notify disconnected event to listeners
10:28:21.824 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Notify connected event to listeners.
10:28:21.825 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2255c07a-c6ae-446b-9866-6242ae67b345_config-0] Notify connected event to listeners.
10:28:21.831 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Server check success, currentServer is 192.168.110.235:8848
10:28:22.345 [nacos-grpc-client-executor-751] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Receive server push request, request = NotifySubscriberRequest, requestId = 168
10:28:22.345 [nacos-grpc-client-executor-751] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5bced18f-c6ce-433c-b765-fc13e45ff797] Ack server push request, request = NotifySubscriberRequest, requestId = 168
10:28:25.156 [nacos-grpc-client-executor-920] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 170
10:28:25.156 [nacos-grpc-client-executor-920] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 170
10:28:25.157 [nacos-grpc-client-executor-921] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 172
10:28:25.158 [nacos-grpc-client-executor-921] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 172
10:28:25.159 [nacos-grpc-client-executor-922] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 171
10:28:25.159 [nacos-grpc-client-executor-922] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 171
10:28:25.160 [nacos-grpc-client-executor-923] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 169
10:28:25.160 [nacos-grpc-client-executor-923] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 169
10:28:28.430 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
10:28:28.431 [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'} >
10:28:28.436 [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: 0xd0adc170, L:/192.168.110.235:50640 - R:/192.168.110.188:8091]
10:28:28.436 [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: 0xd0adc170, L:/192.168.110.235:50640 - R:/192.168.110.188:8091]
10:28:31.561 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x7047035a, L:/192.168.110.235:64558 ! R:/192.168.110.188:8091]
10:28:31.561 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x7047035a, L:/192.168.110.235:64558 ! R:/192.168.110.188:8091]
10:28:31.561 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
10:28:31.561 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7047035a, L:/192.168.110.235:64558 ! R:/192.168.110.188:8091]) will closed
10:28:31.561 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x7047035a, L:/192.168.110.235:64558 ! R:/192.168.110.188:8091]) will closed
10:28:31.561 [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'} >
10:28:31.568 [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: 0x3f6d37da, L:/192.168.110.235:50642 - R:/192.168.110.188:8091]
10:28:31.568 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 4 ms, version:1.7.0,role:RMROLE,channel:[id: 0x3f6d37da, L:/192.168.110.235:50642 - R:/192.168.110.188:8091]
10:37:36.787 [nacos-grpc-client-executor-1065] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 176
10:37:36.800 [nacos-grpc-client-executor-1065] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 176
10:38:36.188 [nacos-grpc-client-executor-1079] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 183
10:38:36.202 [nacos-grpc-client-executor-1079] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 183
10:39:14.347 [nacos-grpc-client-executor-1087] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 188
10:39:14.378 [nacos-grpc-client-executor-1087] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 188
10:47:40.884 [nacos-grpc-client-executor-1216] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 192
10:47:40.898 [nacos-grpc-client-executor-1216] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 192
10:48:54.992 [nacos-grpc-client-executor-1233] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Receive server push request, request = NotifySubscriberRequest, requestId = 198
10:48:55.008 [nacos-grpc-client-executor-1233] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9844258-651e-4a32-a939-b5d778f246fa] Ack server push request, request = NotifySubscriberRequest, requestId = 198
10:51:09.825 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
10:51:10.849 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 46e16be0-6379-40ac-910a-608ba529e9ca_config-0
10:51:10.942 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 54 ms to scan 1 urls, producing 3 keys and 6 values 
10:51:10.989 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
10:51:11.006 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values 
10:51:11.034 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 14 urls, producing 0 keys and 0 values 
10:51:11.050 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values 
10:51:11.070 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values 
10:51:11.093 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 2 keys and 8 values 
10:51:11.126 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 28 ms to scan 14 urls, producing 0 keys and 0 values 
10:51:11.129 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
10:51:11.130 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/498023236
10:51:11.131 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/2144912729
10:51:11.133 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
10:51:11.135 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
10:51:11.148 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
10:51:12.973 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718765472909_192.168.110.235_51742
10:51:12.976 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Notify connected event to listeners.
10:51:12.979 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
10:51:12.981 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1487884406
10:51:13.504 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
10:51:17.250 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
10:51:17.334 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
10:51:17.347 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
10:51:17.516 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 2ab4e312-22fe-4678-b161-a718086adcbc_config-0
10:51:17.516 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
10:51:17.516 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/498023236
10:51:17.516 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/2144912729
10:51:17.517 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
10:51:17.517 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
10:51:17.517 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
10:51:17.639 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718765477712_192.168.110.235_51747
10:51:17.639 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Notify connected event to listeners.
10:51:17.639 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
10:51:17.640 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1487884406
10:51:17.761 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
10:51:17.983 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
10:51:18.171 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8
10:51:18.172 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] RpcClient init label, labels = {module=naming, source=sdk}
10:51:18.174 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
10:51:18.174 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
10:51:18.175 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
10:51:18.175 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
10:51:18.291 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718765478371_192.168.110.235_51750
10:51:18.291 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
10:51:18.291 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Notify connected event to listeners.
10:51:18.291 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1487884406
10:51:18.330 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
10:51:18.559 [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'} >
10:51:18.865 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Receive server push request, request = NotifySubscriberRequest, requestId = 204
10:51:18.876 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Ack server push request, request = NotifySubscriberRequest, requestId = 204
10:51:19.104 [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: 0x96b8a2ee, L:/192.168.110.235:51751 - R:/192.168.110.188:8091]
10:51:19.111 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 88 ms, version:1.7.0,role:TMROLE,channel:[id: 0x96b8a2ee, L:/192.168.110.235:51751 - R:/192.168.110.188:8091]
10:51:19.113 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
10:51:19.156 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
10:51:19.156 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
10:51:19.170 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
10:51:19.171 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
10:51:19.171 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
10:51:20.259 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
10:51:20.260 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
10:51:20.260 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
10:51:20.436 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
10:51:21.109 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
10:51:21.110 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
10:51:21.111 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
10:51:23.993 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
10:51:24.351 [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
10:51:24.425 [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
10:51:25.757 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
10:51:28.765 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 1c14b87e-be19-4f52-90b5-7516e8c3c845
10:51:28.766 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] RpcClient init label, labels = {module=naming, source=sdk}
10:51:28.766 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
10:51:28.766 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
10:51:28.766 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
10:51:28.766 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
10:51:28.886 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718765488960_192.168.110.235_51850
10:51:28.886 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
10:51:28.886 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Notify connected event to listeners.
10:51:28.887 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1487884406
10:51:28.906 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
10:51:28.937 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
10:51:29.418 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 205
10:51:29.421 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 205
10:51:30.083 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 21.299 seconds (JVM running for 23.563)
10:51:30.101 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
10:51:30.113 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
10:51:30.120 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
10:51:31.114 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
10:52:19.176 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
10:52:19.178 [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'} >
10:52:19.186 [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: 0x266836ad, L:/192.168.110.235:51892 - R:/192.168.110.188:8091]
10:52:19.186 [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: 0x266836ad, L:/192.168.110.235:51892 - R:/192.168.110.188:8091]
10:55:43.775 [nacos-grpc-client-executor-60] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 216
10:55:43.776 [nacos-grpc-client-executor-60] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 216
10:55:43.878 [nacos-grpc-client-executor-61] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 217
10:55:43.879 [nacos-grpc-client-executor-61] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 217
10:55:56.552 [nacos-grpc-client-executor-66] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 218
10:55:56.567 [nacos-grpc-client-executor-66] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 218
10:56:45.423 [nacos-grpc-client-executor-76] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 223
10:56:45.438 [nacos-grpc-client-executor-76] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 223
11:19:01.244 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x96b8a2ee, L:/192.168.110.235:51751 - R:/192.168.110.188:8091] read idle.
11:19:01.244 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x96b8a2ee, L:/192.168.110.235:51751 - R:/192.168.110.188:8091]
11:19:01.245 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x96b8a2ee, L:/192.168.110.235:51751 - R:/192.168.110.188:8091]) will closed
11:19:01.247 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x96b8a2ee, L:/192.168.110.235:51751 ! R:/192.168.110.188:8091]) will closed
11:19:01.248 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x96b8a2ee, L:/192.168.110.235:51751 ! R:/192.168.110.188:8091]
11:19:01.248 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x96b8a2ee, L:/192.168.110.235:51751 ! R:/192.168.110.188:8091]
11:19:01.249 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x96b8a2ee, L:/192.168.110.235:51751 ! R:/192.168.110.188:8091]
11:19:01.249 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x96b8a2ee, L:/192.168.110.235:51751 ! R:/192.168.110.188:8091]) will closed
11:19:01.249 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x96b8a2ee, L:/192.168.110.235:51751 ! R:/192.168.110.188:8091]) will closed
11:19:01.249 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x96b8a2ee, L:/192.168.110.235:51751 ! R:/192.168.110.188:8091]
11:19:01.249 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x96b8a2ee, L:/192.168.110.235:51751 ! R:/192.168.110.188:8091]
11:19:01.249 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x96b8a2ee, L:/192.168.110.235:51751 ! R:/192.168.110.188:8091]
11:19:01.250 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x96b8a2ee, L:/192.168.110.235:51751 ! R:/192.168.110.188:8091]) will closed
11:19:01.250 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x96b8a2ee, L:/192.168.110.235:51751 ! R:/192.168.110.188:8091]) will closed
11:19:07.978 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
11:19:07.978 [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'} >
11:19:07.985 [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: 0x781998e0, L:/192.168.110.235:53079 - R:/192.168.110.188:8091]
11:19:07.986 [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: 0x781998e0, L:/192.168.110.235:53079 - R:/192.168.110.188:8091]
11:57:23.119 [nacos-grpc-client-executor-871] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 275
11:57:23.160 [nacos-grpc-client-executor-871] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 275
11:58:10.372 [nacos-grpc-client-executor-881] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 280
11:58:10.387 [nacos-grpc-client-executor-881] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 280
11:59:58.115 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Server healthy check fail, currentConnection = 1718765478371_192.168.110.235_51750
11:59:58.116 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Try to reconnect to a new server, server is  not appointed, will choose a random server.
11:59:58.870 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Server healthy check fail, currentConnection = 1718765472909_192.168.110.235_51742
11:59:58.870 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:00:00.233 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Server healthy check fail, currentConnection = 1718765488960_192.168.110.235_51850
12:00:00.233 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:00:00.258 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Server healthy check fail, currentConnection = 1718765477712_192.168.110.235_51747
12:00:00.260 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:00:00.369 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Success to connect a server [192.168.110.235:8848], connectionId = 1718769600442_192.168.110.235_54518
12:00:00.369 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718765488960_192.168.110.235_51850
12:00:00.370 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718765488960_192.168.110.235_51850
12:00:00.399 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718769600464_192.168.110.235_54519
12:00:00.400 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718765477712_192.168.110.235_51747
12:00:00.400 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718765477712_192.168.110.235_51747
12:00:00.410 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Notify disconnected event to listeners
12:00:00.410 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Notify disconnected event to listeners
12:00:00.424 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Notify connected event to listeners.
12:00:00.435 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Notify connected event to listeners.
12:00:01.514 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Success to connect a server [192.168.110.235:8848], connectionId = 1718769601596_192.168.110.235_54523
12:00:01.514 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718765478371_192.168.110.235_51750
12:00:01.514 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718765478371_192.168.110.235_51750
12:00:01.515 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Notify disconnected event to listeners
12:00:01.522 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Notify connected event to listeners.
12:00:02.143 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718769602207_192.168.110.235_54524
12:00:02.144 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718765472909_192.168.110.235_51742
12:00:02.144 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718765472909_192.168.110.235_51742
12:00:02.145 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Notify disconnected event to listeners
12:00:02.154 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Notify connected event to listeners.
12:00:03.776 [nacos-grpc-client-executor-911] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 302
12:00:03.784 [nacos-grpc-client-executor-911] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 302
12:00:04.025 [nacos-grpc-client-executor-912] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 304
12:00:04.026 [nacos-grpc-client-executor-912] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 304
12:00:04.032 [nacos-grpc-client-executor-913] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 301
12:00:04.032 [nacos-grpc-client-executor-913] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 301
12:00:04.306 [nacos-grpc-client-executor-834] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Receive server push request, request = NotifySubscriberRequest, requestId = 307
12:00:04.307 [nacos-grpc-client-executor-834] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Ack server push request, request = NotifySubscriberRequest, requestId = 307
12:00:09.874 [nacos-grpc-client-executor-914] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 313
12:00:09.874 [nacos-grpc-client-executor-914] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 313
12:33:22.254 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Server healthy check fail, currentConnection = 1718769600442_192.168.110.235_54518
12:33:22.255 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:33:22.349 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Server healthy check fail, currentConnection = 1718769600464_192.168.110.235_54519
12:33:22.350 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:33:25.412 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Server healthy check fail, currentConnection = 1718769601596_192.168.110.235_54523
12:33:25.412 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:33:26.146 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Server healthy check fail, currentConnection = 1718769602207_192.168.110.235_54524
12:33:26.147 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
12:33:28.380 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
12:33:28.487 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
12:33:28.595 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x266836ad, L:/192.168.110.235:51892 - R:/192.168.110.188:8091] read idle.
12:33:28.596 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x266836ad, L:/192.168.110.235:51892 - R:/192.168.110.188:8091]
12:33:28.597 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x266836ad, L:/192.168.110.235:51892 - R:/192.168.110.188:8091]) will closed
12:33:28.598 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x266836ad, L:/192.168.110.235:51892 ! R:/192.168.110.188:8091]) will closed
12:33:28.599 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x266836ad, L:/192.168.110.235:51892 ! R:/192.168.110.188:8091]
12:33:28.599 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x266836ad, L:/192.168.110.235:51892 ! R:/192.168.110.188:8091]
12:33:28.599 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x266836ad, L:/192.168.110.235:51892 ! R:/192.168.110.188:8091]
12:33:28.599 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x266836ad, L:/192.168.110.235:51892 ! R:/192.168.110.188:8091]) will closed
12:33:28.599 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x266836ad, L:/192.168.110.235:51892 ! R:/192.168.110.188:8091]) will closed
12:33:28.599 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x266836ad, L:/192.168.110.235:51892 ! R:/192.168.110.188:8091]
12:33:28.599 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x266836ad, L:/192.168.110.235:51892 ! R:/192.168.110.188:8091]
12:33:28.599 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x266836ad, L:/192.168.110.235:51892 ! R:/192.168.110.188:8091]
12:33:28.599 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x266836ad, L:/192.168.110.235:51892 ! R:/192.168.110.188:8091]) will closed
12:33:28.599 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x266836ad, L:/192.168.110.235:51892 ! R:/192.168.110.188:8091]) will closed
12:33:29.170 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
12:33:29.170 [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'} >
12:33:31.382 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x781998e0, L:/192.168.110.235:53079 - R:/192.168.110.188:8091] read idle.
12:33:31.382 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x781998e0, L:/192.168.110.235:53079 - R:/192.168.110.188:8091]
12:33:31.382 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x781998e0, L:/192.168.110.235:53079 - R:/192.168.110.188:8091]) will closed
12:33:31.383 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x781998e0, L:/192.168.110.235:53079 ! R:/192.168.110.188:8091]) will closed
12:33:31.383 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x781998e0, L:/192.168.110.235:53079 ! R:/192.168.110.188:8091]
12:33:31.383 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x781998e0, L:/192.168.110.235:53079 ! R:/192.168.110.188:8091]
12:33:31.383 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x781998e0, L:/192.168.110.235:53079 ! R:/192.168.110.188:8091]
12:33:31.383 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x781998e0, L:/192.168.110.235:53079 ! R:/192.168.110.188:8091]) will closed
12:33:31.384 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x781998e0, L:/192.168.110.235:53079 ! R:/192.168.110.188:8091]) will closed
12:33:31.384 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x781998e0, L:/192.168.110.235:53079 ! R:/192.168.110.188:8091]
12:33:31.384 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x781998e0, L:/192.168.110.235:53079 ! R:/192.168.110.188:8091]
12:33:31.384 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x781998e0, L:/192.168.110.235:53079 ! R:/192.168.110.188:8091]
12:33:31.384 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x781998e0, L:/192.168.110.235:53079 ! R:/192.168.110.188:8091]) will closed
12:33:31.384 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x781998e0, L:/192.168.110.235:53079 ! R:/192.168.110.188:8091]) will closed
12:33:31.537 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
12:33:31.600 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
12:33:31.711 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
12:33:32.277 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
12:33:32.861 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Success to connect a server [192.168.110.235:8848], connectionId = 1718771612951_192.168.110.235_55093
12:33:32.861 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718769601596_192.168.110.235_54523
12:33:32.862 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718769601596_192.168.110.235_54523
12:33:32.862 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Notify disconnected event to listeners
12:33:32.872 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Notify connected event to listeners.
12:33:33.391 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Server check success, currentServer is 192.168.110.235:8848
12:33:33.629 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718771613707_192.168.110.235_55098
12:33:33.629 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718769602207_192.168.110.235_54524
12:33:33.629 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718769602207_192.168.110.235_54524
12:33:33.630 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Notify disconnected event to listeners
12:33:33.635 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [46e16be0-6379-40ac-910a-608ba529e9ca_config-0] Notify connected event to listeners.
12:33:33.746 [nacos-grpc-client-executor-1242] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Receive server push request, request = NotifySubscriberRequest, requestId = 332
12:33:33.746 [nacos-grpc-client-executor-1242] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5f6cd4af-3033-40ed-94ae-b8e75f2ea1b8] Ack server push request, request = NotifySubscriberRequest, requestId = 332
12:33:34.923 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
12:33:35.033 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
12:33:35.457 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Success to connect a server [192.168.110.235:8848], connectionId = 1718771615540_192.168.110.235_55106
12:33:35.457 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718769600442_192.168.110.235_54518
12:33:35.457 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718769600442_192.168.110.235_54518
12:33:35.458 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Notify disconnected event to listeners
12:33:35.468 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Notify connected event to listeners.
12:33:37.940 [nacos-grpc-client-executor-1326] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 350
12:33:37.940 [nacos-grpc-client-executor-1326] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 350
12:33:37.943 [nacos-grpc-client-executor-1327] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 351
12:33:37.943 [nacos-grpc-client-executor-1327] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 351
12:33:37.968 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
12:33:37.968 [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'} >
12:33:37.978 [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: 0x3e640933, L:/192.168.110.235:55109 - R:/192.168.110.188:8091]
12:33:37.978 [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: 0x3e640933, L:/192.168.110.235:55109 - R:/192.168.110.188:8091]
12:33:38.453 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
12:33:39.081 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718771619159_192.168.110.235_55112
12:33:39.081 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718769600464_192.168.110.235_54519
12:33:39.081 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718769600464_192.168.110.235_54519
12:33:39.082 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Notify disconnected event to listeners
12:33:39.089 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2ab4e312-22fe-4678-b161-a718086adcbc_config-0] Notify connected event to listeners.
12:33:39.338 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x03b043a2]) will closed
12:33:39.340 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
12:33:39.340 [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'} >
12:33:39.363 [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: 0xc3319a67, L:/192.168.110.235:55114 - R:/192.168.110.188:8091]
12:33:39.364 [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: 0xc3319a67, L:/192.168.110.235:55114 - R:/192.168.110.188:8091]
12:33:39.471 [nacos-grpc-client-executor-1330] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 353
12:33:39.472 [nacos-grpc-client-executor-1330] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 353
12:33:44.005 [nacos-grpc-client-executor-1331] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 360
12:33:44.005 [nacos-grpc-client-executor-1331] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 360
13:38:12.558 [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)
13:38:12.705 [lettuce-eventExecutorLoop-5-8] INFO  i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.110.188:6379
13:38:12.751 [lettuce-nioEventLoop-7-3] INFO  i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.110.188:6379
14:14:03.409 [nacos-grpc-client-executor-2631] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 371
14:14:03.424 [nacos-grpc-client-executor-2631] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 371
14:14:48.051 [nacos-grpc-client-executor-2641] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 376
14:14:48.066 [nacos-grpc-client-executor-2641] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 376
14:15:22.437 [nacos-grpc-client-executor-2648] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 381
14:15:22.452 [nacos-grpc-client-executor-2648] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 381
14:16:23.880 [nacos-grpc-client-executor-2662] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 386
14:16:23.893 [nacos-grpc-client-executor-2662] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 386
14:21:45.389 [nacos-grpc-client-executor-2727] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 391
14:21:45.402 [nacos-grpc-client-executor-2727] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 391
14:22:51.548 [nacos-grpc-client-executor-2740] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 396
14:22:51.561 [nacos-grpc-client-executor-2740] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 396
14:25:46.652 [nacos-grpc-client-executor-2776] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 401
14:25:46.664 [nacos-grpc-client-executor-2776] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 401
14:26:43.525 [nacos-grpc-client-executor-2789] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Receive server push request, request = NotifySubscriberRequest, requestId = 406
14:26:43.541 [nacos-grpc-client-executor-2789] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c14b87e-be19-4f52-90b5-7516e8c3c845] Ack server push request, request = NotifySubscriberRequest, requestId = 406
14:43:59.267 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
14:44:00.399 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of fdfc375e-b86f-4871-b2ec-55ed300abd6c_config-0
14:44:00.497 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 60 ms to scan 1 urls, producing 3 keys and 6 values 
14:44:00.545 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
14:44:00.563 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values 
14:44:00.594 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 27 ms to scan 14 urls, producing 0 keys and 0 values 
14:44:00.609 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values 
14:44:00.627 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values 
14:44:00.645 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values 
14:44:00.674 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 14 urls, producing 0 keys and 0 values 
14:44:00.676 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fdfc375e-b86f-4871-b2ec-55ed300abd6c_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
14:44:00.678 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fdfc375e-b86f-4871-b2ec-55ed300abd6c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1329938019
14:44:00.678 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fdfc375e-b86f-4871-b2ec-55ed300abd6c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/2090589929
14:44:00.679 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fdfc375e-b86f-4871-b2ec-55ed300abd6c_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
14:44:00.681 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fdfc375e-b86f-4871-b2ec-55ed300abd6c_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
14:44:00.694 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fdfc375e-b86f-4871-b2ec-55ed300abd6c_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
14:44:02.536 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fdfc375e-b86f-4871-b2ec-55ed300abd6c_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718779442515_192.168.110.235_57930
14:44:02.537 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fdfc375e-b86f-4871-b2ec-55ed300abd6c_config-0] Notify connected event to listeners.
14:44:02.538 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fdfc375e-b86f-4871-b2ec-55ed300abd6c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:44:02.539 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [fdfc375e-b86f-4871-b2ec-55ed300abd6c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/309790180
14:44:02.659 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
14:44:06.687 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
14:44:06.776 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
14:44:06.788 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
14:44:06.952 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0484d963-a07b-4bfa-ba2f-884a27149d67_config-0
14:44:06.952 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0484d963-a07b-4bfa-ba2f-884a27149d67_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
14:44:06.953 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0484d963-a07b-4bfa-ba2f-884a27149d67_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1329938019
14:44:06.953 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0484d963-a07b-4bfa-ba2f-884a27149d67_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/2090589929
14:44:06.953 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0484d963-a07b-4bfa-ba2f-884a27149d67_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
14:44:06.953 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0484d963-a07b-4bfa-ba2f-884a27149d67_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
14:44:06.954 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0484d963-a07b-4bfa-ba2f-884a27149d67_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
14:44:07.081 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0484d963-a07b-4bfa-ba2f-884a27149d67_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718779447170_192.168.110.235_57934
14:44:07.081 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0484d963-a07b-4bfa-ba2f-884a27149d67_config-0] Notify connected event to listeners.
14:44:07.081 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0484d963-a07b-4bfa-ba2f-884a27149d67_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:44:07.082 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0484d963-a07b-4bfa-ba2f-884a27149d67_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/309790180
14:44:07.199 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
14:44:07.464 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
14:44:07.653 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a2dec2f6-e072-43cb-9ea3-820bee05480f
14:44:07.654 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2dec2f6-e072-43cb-9ea3-820bee05480f] RpcClient init label, labels = {module=naming, source=sdk}
14:44:07.656 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2dec2f6-e072-43cb-9ea3-820bee05480f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
14:44:07.656 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2dec2f6-e072-43cb-9ea3-820bee05480f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
14:44:07.657 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2dec2f6-e072-43cb-9ea3-820bee05480f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
14:44:07.658 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2dec2f6-e072-43cb-9ea3-820bee05480f] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
14:44:07.783 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2dec2f6-e072-43cb-9ea3-820bee05480f] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718779447875_192.168.110.235_57937
14:44:07.783 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2dec2f6-e072-43cb-9ea3-820bee05480f] Notify connected event to listeners.
14:44:07.783 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2dec2f6-e072-43cb-9ea3-820bee05480f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:44:07.784 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2dec2f6-e072-43cb-9ea3-820bee05480f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/309790180
14:44:07.825 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:44:08.046 [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'} >
14:44:08.422 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2dec2f6-e072-43cb-9ea3-820bee05480f] Receive server push request, request = NotifySubscriberRequest, requestId = 411
14:44:08.431 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2dec2f6-e072-43cb-9ea3-820bee05480f] Ack server push request, request = NotifySubscriberRequest, requestId = 411
14:44:08.673 [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: 0x4bc96c4b, L:/192.168.110.235:57938 - R:/192.168.110.188:8091]
14:44:08.681 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 141 ms, version:1.7.0,role:TMROLE,channel:[id: 0x4bc96c4b, L:/192.168.110.235:57938 - R:/192.168.110.188:8091]
14:44:08.682 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
14:44:08.738 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
14:44:08.739 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
14:44:08.753 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
14:44:08.753 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
14:44:08.753 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
14:44:09.875 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
14:44:09.876 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
14:44:09.876 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
14:44:10.040 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
14:44:10.667 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
14:44:10.668 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
14:44:10.669 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
14:44:11.895 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
14:44:11.898 [main] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
14:44:11.905 [main] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
14:44:11.906 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
14:44:11.912 [main] INFO  o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
14:45:25.656 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
14:45:26.754 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ef4bed45-e514-466f-853e-a02481d8c797_config-0
14:45:26.837 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 48 ms to scan 1 urls, producing 3 keys and 6 values 
14:45:26.881 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
14:45:26.901 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values 
14:45:26.926 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 14 urls, producing 0 keys and 0 values 
14:45:26.940 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
14:45:26.960 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values 
14:45:26.980 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values 
14:45:27.017 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 31 ms to scan 14 urls, producing 0 keys and 0 values 
14:45:27.018 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef4bed45-e514-466f-853e-a02481d8c797_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
14:45:27.019 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef4bed45-e514-466f-853e-a02481d8c797_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/2050529121
14:45:27.019 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef4bed45-e514-466f-853e-a02481d8c797_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/69670055
14:45:27.020 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef4bed45-e514-466f-853e-a02481d8c797_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
14:45:27.021 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef4bed45-e514-466f-853e-a02481d8c797_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
14:45:27.035 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef4bed45-e514-466f-853e-a02481d8c797_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
14:45:28.762 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef4bed45-e514-466f-853e-a02481d8c797_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718779528728_192.168.110.235_58022
14:45:28.763 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef4bed45-e514-466f-853e-a02481d8c797_config-0] Notify connected event to listeners.
14:45:28.764 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef4bed45-e514-466f-853e-a02481d8c797_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:45:28.764 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef4bed45-e514-466f-853e-a02481d8c797_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/225507106
14:45:28.905 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
14:45:32.082 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
14:45:32.179 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
14:45:32.191 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
14:45:32.361 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6aec3860-a7d1-4dd6-ac0a-806eeeee15c7_config-0
14:45:32.361 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6aec3860-a7d1-4dd6-ac0a-806eeeee15c7_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
14:45:32.361 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6aec3860-a7d1-4dd6-ac0a-806eeeee15c7_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/2050529121
14:45:32.361 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6aec3860-a7d1-4dd6-ac0a-806eeeee15c7_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/69670055
14:45:32.361 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6aec3860-a7d1-4dd6-ac0a-806eeeee15c7_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
14:45:32.362 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6aec3860-a7d1-4dd6-ac0a-806eeeee15c7_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
14:45:32.362 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6aec3860-a7d1-4dd6-ac0a-806eeeee15c7_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
14:45:32.479 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6aec3860-a7d1-4dd6-ac0a-806eeeee15c7_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718779532578_192.168.110.235_58024
14:45:32.479 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6aec3860-a7d1-4dd6-ac0a-806eeeee15c7_config-0] Notify connected event to listeners.
14:45:32.479 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6aec3860-a7d1-4dd6-ac0a-806eeeee15c7_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:45:32.479 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6aec3860-a7d1-4dd6-ac0a-806eeeee15c7_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/225507106
14:45:32.604 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
14:45:32.824 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
14:45:33.012 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6ded8578-fe63-42e2-9ce0-e71f0e69ca84
14:45:33.012 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ded8578-fe63-42e2-9ce0-e71f0e69ca84] RpcClient init label, labels = {module=naming, source=sdk}
14:45:33.015 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ded8578-fe63-42e2-9ce0-e71f0e69ca84] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
14:45:33.015 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ded8578-fe63-42e2-9ce0-e71f0e69ca84] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
14:45:33.016 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ded8578-fe63-42e2-9ce0-e71f0e69ca84] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
14:45:33.016 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ded8578-fe63-42e2-9ce0-e71f0e69ca84] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
14:45:33.132 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ded8578-fe63-42e2-9ce0-e71f0e69ca84] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718779533233_192.168.110.235_58027
14:45:33.133 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ded8578-fe63-42e2-9ce0-e71f0e69ca84] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:45:33.133 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ded8578-fe63-42e2-9ce0-e71f0e69ca84] Notify connected event to listeners.
14:45:33.134 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ded8578-fe63-42e2-9ce0-e71f0e69ca84] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/225507106
14:45:33.182 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:45:33.401 [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'} >
14:45:33.774 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ded8578-fe63-42e2-9ce0-e71f0e69ca84] Receive server push request, request = NotifySubscriberRequest, requestId = 412
14:45:33.781 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ded8578-fe63-42e2-9ce0-e71f0e69ca84] Ack server push request, request = NotifySubscriberRequest, requestId = 412
14:45:33.964 [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: 0x35e4b1f4, L:/192.168.110.235:58028 - R:/192.168.110.188:8091]
14:45:33.971 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 99 ms, version:1.7.0,role:TMROLE,channel:[id: 0x35e4b1f4, L:/192.168.110.235:58028 - R:/192.168.110.188:8091]
14:45:33.973 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
14:45:34.022 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
14:45:34.024 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
14:45:34.037 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
14:45:34.038 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
14:45:34.038 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
14:45:35.290 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
14:45:35.290 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
14:45:35.290 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
14:45:35.487 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
14:45:36.067 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
14:45:36.068 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
14:45:36.068 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
14:45:37.232 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
14:45:37.235 [main] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
14:45:37.242 [main] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
14:45:37.243 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
14:45:37.249 [main] INFO  o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
14:48:22.850 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
14:48:23.870 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 87fa6222-99d3-487d-bfc5-8ba2ccc6105d_config-0
14:48:23.959 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 55 ms to scan 1 urls, producing 3 keys and 6 values 
14:48:24.004 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values 
14:48:24.020 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values 
14:48:24.047 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 14 urls, producing 0 keys and 0 values 
14:48:24.061 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
14:48:24.080 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values 
14:48:24.099 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values 
14:48:24.131 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 28 ms to scan 14 urls, producing 0 keys and 0 values 
14:48:24.132 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [87fa6222-99d3-487d-bfc5-8ba2ccc6105d_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
14:48:24.134 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [87fa6222-99d3-487d-bfc5-8ba2ccc6105d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1502616653
14:48:24.134 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [87fa6222-99d3-487d-bfc5-8ba2ccc6105d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/378327915
14:48:24.135 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [87fa6222-99d3-487d-bfc5-8ba2ccc6105d_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
14:48:24.137 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [87fa6222-99d3-487d-bfc5-8ba2ccc6105d_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
14:48:24.155 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [87fa6222-99d3-487d-bfc5-8ba2ccc6105d_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
14:48:25.923 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [87fa6222-99d3-487d-bfc5-8ba2ccc6105d_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718779705909_192.168.110.235_58180
14:48:25.924 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [87fa6222-99d3-487d-bfc5-8ba2ccc6105d_config-0] Notify connected event to listeners.
14:48:25.925 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [87fa6222-99d3-487d-bfc5-8ba2ccc6105d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:48:25.926 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [87fa6222-99d3-487d-bfc5-8ba2ccc6105d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1000386113
14:48:26.042 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
14:48:29.244 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
14:48:29.341 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
14:48:29.354 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
14:48:29.519 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 4f151584-a3d7-4802-bf63-af03fea93f53_config-0
14:48:29.520 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f151584-a3d7-4802-bf63-af03fea93f53_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
14:48:29.520 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f151584-a3d7-4802-bf63-af03fea93f53_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1502616653
14:48:29.520 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f151584-a3d7-4802-bf63-af03fea93f53_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/378327915
14:48:29.520 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f151584-a3d7-4802-bf63-af03fea93f53_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
14:48:29.521 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f151584-a3d7-4802-bf63-af03fea93f53_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
14:48:29.521 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f151584-a3d7-4802-bf63-af03fea93f53_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
14:48:29.648 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f151584-a3d7-4802-bf63-af03fea93f53_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718779709739_192.168.110.235_58184
14:48:29.648 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f151584-a3d7-4802-bf63-af03fea93f53_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:48:29.648 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f151584-a3d7-4802-bf63-af03fea93f53_config-0] Notify connected event to listeners.
14:48:29.649 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f151584-a3d7-4802-bf63-af03fea93f53_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1000386113
14:48:29.776 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
14:48:30.013 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
14:48:30.243 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 1e5c24c5-f27a-4e03-a4a0-a6ad40940185
14:48:30.243 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5c24c5-f27a-4e03-a4a0-a6ad40940185] RpcClient init label, labels = {module=naming, source=sdk}
14:48:30.245 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5c24c5-f27a-4e03-a4a0-a6ad40940185] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
14:48:30.245 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5c24c5-f27a-4e03-a4a0-a6ad40940185] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
14:48:30.246 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5c24c5-f27a-4e03-a4a0-a6ad40940185] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
14:48:30.247 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5c24c5-f27a-4e03-a4a0-a6ad40940185] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
14:48:30.370 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5c24c5-f27a-4e03-a4a0-a6ad40940185] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718779710467_192.168.110.235_58187
14:48:30.370 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5c24c5-f27a-4e03-a4a0-a6ad40940185] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:48:30.370 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5c24c5-f27a-4e03-a4a0-a6ad40940185] Notify connected event to listeners.
14:48:30.371 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5c24c5-f27a-4e03-a4a0-a6ad40940185] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1000386113
14:48:30.411 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:48:30.646 [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'} >
14:48:30.984 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5c24c5-f27a-4e03-a4a0-a6ad40940185] Receive server push request, request = NotifySubscriberRequest, requestId = 413
14:48:30.991 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5c24c5-f27a-4e03-a4a0-a6ad40940185] Ack server push request, request = NotifySubscriberRequest, requestId = 413
14:48:31.200 [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: 0x00e0593c, L:/192.168.110.235:58188 - R:/192.168.110.188:8091]
14:48:31.208 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 88 ms, version:1.7.0,role:TMROLE,channel:[id: 0x00e0593c, L:/192.168.110.235:58188 - R:/192.168.110.188:8091]
14:48:31.209 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
14:48:31.252 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
14:48:31.253 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
14:48:31.265 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
14:48:31.265 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
14:48:31.265 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
14:48:32.356 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
14:48:32.357 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
14:48:32.357 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
14:48:32.514 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
14:48:33.129 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
14:48:33.131 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
14:48:33.131 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
14:48:36.251 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
14:48:36.609 [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
14:48:36.692 [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
14:48:38.002 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
14:48:41.100 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b4084bec-4917-4c1f-a155-96c22fb77850
14:48:41.101 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b4084bec-4917-4c1f-a155-96c22fb77850] RpcClient init label, labels = {module=naming, source=sdk}
14:48:41.101 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b4084bec-4917-4c1f-a155-96c22fb77850] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
14:48:41.101 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b4084bec-4917-4c1f-a155-96c22fb77850] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
14:48:41.101 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b4084bec-4917-4c1f-a155-96c22fb77850] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
14:48:41.102 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b4084bec-4917-4c1f-a155-96c22fb77850] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
14:48:41.216 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b4084bec-4917-4c1f-a155-96c22fb77850] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718779721317_192.168.110.235_58287
14:48:41.217 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b4084bec-4917-4c1f-a155-96c22fb77850] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:48:41.217 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b4084bec-4917-4c1f-a155-96c22fb77850] Notify connected event to listeners.
14:48:41.218 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b4084bec-4917-4c1f-a155-96c22fb77850] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1000386113
14:48:41.243 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
14:48:41.290 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
14:48:41.750 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b4084bec-4917-4c1f-a155-96c22fb77850] Receive server push request, request = NotifySubscriberRequest, requestId = 415
14:48:41.753 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b4084bec-4917-4c1f-a155-96c22fb77850] Ack server push request, request = NotifySubscriberRequest, requestId = 415
14:48:42.522 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 20.768 seconds (JVM running for 22.82)
14:48:42.541 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
14:48:42.552 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
14:48:42.563 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
14:48:42.839 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
14:49:31.272 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
14:49:31.276 [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'} >
14:49:31.286 [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: 0x01593d34, L:/192.168.110.235:58331 - R:/192.168.110.188:8091]
14:49:31.286 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 7 ms, version:1.7.0,role:RMROLE,channel:[id: 0x01593d34, L:/192.168.110.235:58331 - R:/192.168.110.188:8091]
15:12:30.023 [nacos-grpc-client-executor-296] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b4084bec-4917-4c1f-a155-96c22fb77850] Receive server push request, request = NotifySubscriberRequest, requestId = 487
15:12:30.024 [nacos-grpc-client-executor-296] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b4084bec-4917-4c1f-a155-96c22fb77850] Ack server push request, request = NotifySubscriberRequest, requestId = 487
15:12:30.450 [nacos-grpc-client-executor-297] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b4084bec-4917-4c1f-a155-96c22fb77850] Receive server push request, request = NotifySubscriberRequest, requestId = 488
15:12:30.451 [nacos-grpc-client-executor-297] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b4084bec-4917-4c1f-a155-96c22fb77850] Ack server push request, request = NotifySubscriberRequest, requestId = 488
15:12:30.560 [nacos-grpc-client-executor-299] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b4084bec-4917-4c1f-a155-96c22fb77850] Receive server push request, request = NotifySubscriberRequest, requestId = 489
15:12:30.561 [nacos-grpc-client-executor-299] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b4084bec-4917-4c1f-a155-96c22fb77850] Ack server push request, request = NotifySubscriberRequest, requestId = 489
15:13:19.387 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x00e0593c, L:/192.168.110.235:58188 - R:/192.168.110.188:8091] read idle.
15:13:19.387 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x01593d34, L:/192.168.110.235:58331 - R:/192.168.110.188:8091] read idle.
15:13:19.388 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x00e0593c, L:/192.168.110.235:58188 - R:/192.168.110.188:8091]
15:13:19.388 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x01593d34, L:/192.168.110.235:58331 - R:/192.168.110.188:8091]
15:13:19.388 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x00e0593c, L:/192.168.110.235:58188 - R:/192.168.110.188:8091]) will closed
15:13:19.388 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x01593d34, L:/192.168.110.235:58331 - R:/192.168.110.188:8091]) will closed
15:13:19.391 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x01593d34, L:/192.168.110.235:58331 ! R:/192.168.110.188:8091]) will closed
15:13:19.391 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x00e0593c, L:/192.168.110.235:58188 ! R:/192.168.110.188:8091]) will closed
15:13:19.392 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x00e0593c, L:/192.168.110.235:58188 ! R:/192.168.110.188:8091]
15:13:19.392 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x01593d34, L:/192.168.110.235:58331 ! R:/192.168.110.188:8091]
15:13:19.392 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x00e0593c, L:/192.168.110.235:58188 ! R:/192.168.110.188:8091]
15:13:19.392 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x01593d34, L:/192.168.110.235:58331 ! R:/192.168.110.188:8091]
15:13:19.392 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x01593d34, L:/192.168.110.235:58331 ! R:/192.168.110.188:8091]
15:13:19.392 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x00e0593c, L:/192.168.110.235:58188 ! R:/192.168.110.188:8091]
15:13:19.392 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x01593d34, L:/192.168.110.235:58331 ! R:/192.168.110.188:8091]) will closed
15:13:19.392 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x00e0593c, L:/192.168.110.235:58188 ! R:/192.168.110.188:8091]) will closed
15:13:19.392 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x01593d34, L:/192.168.110.235:58331 ! R:/192.168.110.188:8091]) will closed
15:13:19.393 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x00e0593c, L:/192.168.110.235:58188 ! R:/192.168.110.188:8091]) will closed
15:13:19.393 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x01593d34, L:/192.168.110.235:58331 ! R:/192.168.110.188:8091]
15:13:19.393 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x00e0593c, L:/192.168.110.235:58188 ! R:/192.168.110.188:8091]
15:13:19.393 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x01593d34, L:/192.168.110.235:58331 ! R:/192.168.110.188:8091]
15:13:19.393 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x00e0593c, L:/192.168.110.235:58188 ! R:/192.168.110.188:8091]
15:13:19.393 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x01593d34, L:/192.168.110.235:58331 ! R:/192.168.110.188:8091]
15:13:19.393 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x00e0593c, L:/192.168.110.235:58188 ! R:/192.168.110.188:8091]
15:13:19.393 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x01593d34, L:/192.168.110.235:58331 ! R:/192.168.110.188:8091]) will closed
15:13:19.393 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x00e0593c, L:/192.168.110.235:58188 ! R:/192.168.110.188:8091]) will closed
15:13:19.393 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x01593d34, L:/192.168.110.235:58331 ! R:/192.168.110.188:8091]) will closed
15:13:19.394 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x00e0593c, L:/192.168.110.235:58188 ! R:/192.168.110.188:8091]) will closed
15:13:19.998 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:13:19.998 [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'} >
15:13:20.003 [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: 0xdf991523, L:/192.168.110.235:59456 - R:/192.168.110.188:8091]
15:13:20.003 [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: 0xdf991523, L:/192.168.110.235:59456 - R:/192.168.110.188:8091]
15:13:21.264 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:13:21.264 [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'} >
15:13:21.280 [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: 0x9b86fe04, L:/192.168.110.235:59457 - R:/192.168.110.188:8091]
15:13:21.280 [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: 0x9b86fe04, L:/192.168.110.235:59457 - R:/192.168.110.188:8091]
15:13:37.630 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [87fa6222-99d3-487d-bfc5-8ba2ccc6105d_config-0] Server check success, currentServer is 192.168.110.235:8848
15:15:58.835 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
15:15:59.847 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0
15:15:59.939 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 56 ms to scan 1 urls, producing 3 keys and 6 values 
15:15:59.986 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
15:16:00.003 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values 
15:16:00.038 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 31 ms to scan 14 urls, producing 0 keys and 0 values 
15:16:00.054 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values 
15:16:00.075 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values 
15:16:00.097 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 2 keys and 8 values 
15:16:00.133 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 33 ms to scan 14 urls, producing 0 keys and 0 values 
15:16:00.135 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
15:16:00.136 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/715534618
15:16:00.136 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/102709691
15:16:00.138 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
15:16:00.139 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
15:16:00.151 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
15:16:01.910 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718781361897_192.168.110.235_59587
15:16:01.912 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0] Notify connected event to listeners.
15:16:01.912 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:16:01.913 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1051927339
15:16:02.028 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
15:16:05.200 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
15:16:05.283 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
15:16:05.295 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
15:16:05.460 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0
15:16:05.460 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
15:16:05.460 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/715534618
15:16:05.460 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/102709691
15:16:05.460 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
15:16:05.461 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
15:16:05.461 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
15:16:05.587 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718781365689_192.168.110.235_59589
15:16:05.587 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:16:05.587 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0] Notify connected event to listeners.
15:16:05.587 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1051927339
15:16:05.703 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
15:16:05.921 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
15:16:06.107 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8
15:16:06.107 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] RpcClient init label, labels = {module=naming, source=sdk}
15:16:06.109 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
15:16:06.110 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
15:16:06.110 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
15:16:06.110 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
15:16:06.225 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718781366332_192.168.110.235_59592
15:16:06.225 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:16:06.225 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Notify connected event to listeners.
15:16:06.225 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1051927339
15:16:06.264 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:16:06.485 [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'} >
15:16:06.815 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Receive server push request, request = NotifySubscriberRequest, requestId = 493
15:16:06.824 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Ack server push request, request = NotifySubscriberRequest, requestId = 493
15:16:07.049 [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: 0xd578e482, L:/192.168.110.235:59593 - R:/192.168.110.188:8091]
15:16:07.057 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 92 ms, version:1.7.0,role:TMROLE,channel:[id: 0xd578e482, L:/192.168.110.235:59593 - R:/192.168.110.188:8091]
15:16:07.058 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
15:16:07.102 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
15:16:07.103 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
15:16:07.118 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
15:16:07.118 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
15:16:07.118 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
15:16:08.165 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
15:16:08.165 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:16:08.165 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
15:16:08.322 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:16:08.906 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
15:16:08.908 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
15:16:08.908 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
15:16:11.906 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
15:16:12.266 [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
15:16:12.337 [redisson-netty-2-18] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
15:16:13.658 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:16:16.679 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7d4e6526-0b6d-4468-a955-a7eaaf56c35b
15:16:16.680 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] RpcClient init label, labels = {module=naming, source=sdk}
15:16:16.680 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
15:16:16.680 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
15:16:16.680 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
15:16:16.681 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
15:16:16.797 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718781376899_192.168.110.235_59693
15:16:16.797 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:16:16.797 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Notify connected event to listeners.
15:16:16.797 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1051927339
15:16:16.815 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
15:16:16.847 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
15:16:17.375 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Receive server push request, request = NotifySubscriberRequest, requestId = 496
15:16:17.378 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Ack server push request, request = NotifySubscriberRequest, requestId = 496
15:16:18.026 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 20.257 seconds (JVM running for 22.302)
15:16:18.045 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
15:16:18.057 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
15:16:18.064 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
15:16:19.085 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
15:16:30.975 [nacos-grpc-client-executor-10] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Receive server push request, request = NotifySubscriberRequest, requestId = 498
15:16:30.975 [nacos-grpc-client-executor-10] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Ack server push request, request = NotifySubscriberRequest, requestId = 498
15:16:35.407 [nacos-grpc-client-executor-13] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Receive server push request, request = NotifySubscriberRequest, requestId = 499
15:16:35.407 [nacos-grpc-client-executor-13] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Ack server push request, request = NotifySubscriberRequest, requestId = 499
15:17:18.033 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:17:18.033 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0xd578e482, L:/192.168.110.235:59593 - R:/192.168.110.188:8091] read idle.
15:17:18.040 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xd578e482, L:/192.168.110.235:59593 - R:/192.168.110.188:8091]
15:17:18.041 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd578e482, L:/192.168.110.235:59593 - R:/192.168.110.188:8091]) will closed
15:17:18.050 [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'} >
15:17:18.059 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd578e482, L:/192.168.110.235:59593 ! R:/192.168.110.188:8091]) will closed
15:17:19.245 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xd578e482, L:/192.168.110.235:59593 ! R:/192.168.110.188:8091]
15:17:19.247 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xd578e482, L:/192.168.110.235:59593 ! R:/192.168.110.188:8091]
15:17:19.255 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xd578e482, L:/192.168.110.235:59593 ! R:/192.168.110.188:8091]
15:17:19.258 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd578e482, L:/192.168.110.235:59593 ! R:/192.168.110.188:8091]) will closed
15:17:19.265 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Server healthy check fail, currentConnection = 1718781366332_192.168.110.235_59592
15:17:19.265 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Server healthy check fail, currentConnection = 1718781376899_192.168.110.235_59693
15:17:19.267 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd578e482, L:/192.168.110.235:59593 ! R:/192.168.110.188:8091]) will closed
15:17:19.268 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0] Server healthy check fail, currentConnection = 1718781365689_192.168.110.235_59589
15:17:19.269 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0] Server healthy check fail, currentConnection = 1718781361897_192.168.110.235_59587
15:17:19.275 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Try to reconnect to a new server, server is  not appointed, will choose a random server.
15:17:19.275 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
15:17:19.275 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xd578e482, L:/192.168.110.235:59593 ! R:/192.168.110.188:8091]
15:17:19.275 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Try to reconnect to a new server, server is  not appointed, will choose a random server.
15:17:19.275 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
15:17:23.344 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xd578e482, L:/192.168.110.235:59593 ! R:/192.168.110.188:8091]
15:17:23.347 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xd578e482, L:/192.168.110.235:59593 ! R:/192.168.110.188:8091]
15:17:23.348 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd578e482, L:/192.168.110.235:59593 ! R:/192.168.110.188:8091]) will closed
15:17:23.348 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xd578e482, L:/192.168.110.235:59593 ! R:/192.168.110.188:8091]) will closed
15:17:23.350 [nacos-grpc-client-executor-40] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 503
15:17:23.350 [nacos-grpc-client-executor-17] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Receive server push request, request = ClientDetectionRequest, requestId = 501
15:17:23.350 [nacos-grpc-client-executor-40] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 503
15:17:23.350 [nacos-grpc-client-executor-17] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Ack server push request, request = ClientDetectionRequest, requestId = 501
15:17:23.351 [nacos-grpc-client-executor-14] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Receive server push request, request = ClientDetectionRequest, requestId = 502
15:17:23.352 [nacos-grpc-client-executor-14] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Ack server push request, request = ClientDetectionRequest, requestId = 502
15:17:23.352 [nacos-grpc-client-executor-17] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718781376899_192.168.110.235_59693]Ignore complete event,isRunning:false,isAbandon=false
15:17:23.354 [nacos-grpc-client-executor-40] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718781365689_192.168.110.235_59589]Ignore complete event,isRunning:false,isAbandon=false
15:17:23.355 [nacos-grpc-client-executor-14] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718781366332_192.168.110.235_59592]Ignore complete event,isRunning:false,isAbandon=false
15:17:23.359 [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: 0x824b7ced, L:/192.168.110.235:59768 - R:/192.168.110.188:8091]
15:17:23.362 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 4099 ms, version:1.7.0,role:RMROLE,channel:[id: 0x824b7ced, L:/192.168.110.235:59768 - R:/192.168.110.188:8091]
15:17:28.706 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:17:28.706 [nacos-grpc-client-executor-21] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 500
15:17:28.706 [nacos-grpc-client-executor-21] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 500
15:17:28.706 [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'} >
15:17:47.728 [nacos-grpc-client-executor-21] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718781361897_192.168.110.235_59587]Ignore complete event,isRunning:false,isAbandon=false
15:17:47.733 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [userEventTriggered,450] - channel [id: 0x824b7ced, L:/192.168.110.235:59768 - R:/192.168.110.188:8091] read idle.
15:17:47.736 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x824b7ced, L:/192.168.110.235:59768 - R:/192.168.110.188:8091]
15:17:47.737 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x824b7ced, L:/192.168.110.235:59768 - R:/192.168.110.188:8091]) will closed
15:17:48.710 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x824b7ced, L:/192.168.110.235:59768 ! R:/192.168.110.188:8091]) will closed
15:17:48.717 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x824b7ced, L:/192.168.110.235:59768 ! R:/192.168.110.188:8091]
15:17:48.718 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x824b7ced, L:/192.168.110.235:59768 ! R:/192.168.110.188:8091]
15:17:48.720 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x824b7ced, L:/192.168.110.235:59768 ! R:/192.168.110.188:8091]
15:17:48.721 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x824b7ced, L:/192.168.110.235:59768 ! R:/192.168.110.188:8091]) will closed
15:17:48.721 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x824b7ced, L:/192.168.110.235:59768 ! R:/192.168.110.188:8091]) will closed
15:17:48.721 [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: 0x63e3af9c, L:/192.168.110.235:59781 - R:/192.168.110.188:8091]
15:17:48.721 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x824b7ced, L:/192.168.110.235:59768 ! R:/192.168.110.188:8091]
15:17:48.722 [timeoutChecker_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 14 ms, version:1.7.0,role:TMROLE,channel:[id: 0x63e3af9c, L:/192.168.110.235:59781 - R:/192.168.110.188:8091]
15:17:48.722 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x824b7ced, L:/192.168.110.235:59768 ! R:/192.168.110.188:8091]
15:17:48.723 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x824b7ced, L:/192.168.110.235:59768 ! R:/192.168.110.188:8091]
15:17:48.724 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x824b7ced, L:/192.168.110.235:59768 ! R:/192.168.110.188:8091]) will closed
15:17:48.728 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x824b7ced, L:/192.168.110.235:59768 ! R:/192.168.110.188:8091]) will closed
15:17:51.919 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718781472021_192.168.110.235_59791
15:17:51.919 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Success to connect a server [192.168.110.235:8848], connectionId = 1718781472005_192.168.110.235_59786
15:17:51.919 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Success to connect a server [192.168.110.235:8848], connectionId = 1718781472013_192.168.110.235_59787
15:17:51.919 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718781472016_192.168.110.235_59790
15:17:51.919 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718781376899_192.168.110.235_59693
15:17:51.919 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718781365689_192.168.110.235_59589
15:17:51.919 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718781376899_192.168.110.235_59693
15:17:51.919 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718781361897_192.168.110.235_59587
15:17:51.919 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718781365689_192.168.110.235_59589
15:17:51.920 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718781361897_192.168.110.235_59587
15:17:51.920 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Notify disconnected event to listeners
15:17:51.920 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718781366332_192.168.110.235_59592
15:17:51.921 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0] Notify disconnected event to listeners
15:17:51.921 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718781366332_192.168.110.235_59592
15:17:51.921 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0] Notify disconnected event to listeners
15:17:51.921 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Notify disconnected event to listeners
15:17:51.930 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Notify connected event to listeners.
15:17:51.930 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [baf852c0-e0f6-4120-ab19-0cce41d1f7e4_config-0] Notify connected event to listeners.
15:17:51.939 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a0ab5af-15b6-4bd1-b884-86e12c4dc6f8_config-0] Notify connected event to listeners.
15:17:51.939 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Notify connected event to listeners.
15:17:55.380 [nacos-grpc-client-executor-31] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Receive server push request, request = NotifySubscriberRequest, requestId = 509
15:17:55.380 [nacos-grpc-client-executor-23] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Receive server push request, request = NotifySubscriberRequest, requestId = 510
15:17:55.380 [nacos-grpc-client-executor-31] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Ack server push request, request = NotifySubscriberRequest, requestId = 509
15:17:55.380 [nacos-grpc-client-executor-23] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [6a73cfcf-6fe9-47a1-bc09-bb1ab2415dc8] Ack server push request, request = NotifySubscriberRequest, requestId = 510
15:17:55.383 [nacos-grpc-client-executor-32] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Receive server push request, request = NotifySubscriberRequest, requestId = 508
15:17:55.384 [nacos-grpc-client-executor-32] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Ack server push request, request = NotifySubscriberRequest, requestId = 508
15:17:55.386 [nacos-grpc-client-executor-33] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Receive server push request, request = NotifySubscriberRequest, requestId = 512
15:17:55.387 [nacos-grpc-client-executor-33] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7d4e6526-0b6d-4468-a955-a7eaaf56c35b] Ack server push request, request = NotifySubscriberRequest, requestId = 512
15:17:57.130 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:17:57.131 [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'} >
15:17:57.153 [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: 0x502869bb, L:/192.168.110.235:59792 - R:/192.168.110.188:8091]
15:17:57.153 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 10 ms, version:1.7.0,role:RMROLE,channel:[id: 0x502869bb, L:/192.168.110.235:59792 - R:/192.168.110.188:8091]
15:28:18.815 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
15:28:19.813 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 06734f39-ba1f-4d07-acef-83f4e4c4a224_config-0
15:28:19.912 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 62 ms to scan 1 urls, producing 3 keys and 6 values 
15:28:19.958 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
15:28:19.975 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values 
15:28:20.003 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 14 urls, producing 0 keys and 0 values 
15:28:20.018 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values 
15:28:20.039 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values 
15:28:20.060 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values 
15:28:20.088 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 14 urls, producing 0 keys and 0 values 
15:28:20.089 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06734f39-ba1f-4d07-acef-83f4e4c4a224_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
15:28:20.090 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06734f39-ba1f-4d07-acef-83f4e4c4a224_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/271514713
15:28:20.090 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06734f39-ba1f-4d07-acef-83f4e4c4a224_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/959897458
15:28:20.091 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06734f39-ba1f-4d07-acef-83f4e4c4a224_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
15:28:20.092 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06734f39-ba1f-4d07-acef-83f4e4c4a224_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
15:28:20.105 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06734f39-ba1f-4d07-acef-83f4e4c4a224_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
15:28:21.878 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06734f39-ba1f-4d07-acef-83f4e4c4a224_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718782101873_192.168.110.235_60170
15:28:21.880 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06734f39-ba1f-4d07-acef-83f4e4c4a224_config-0] Notify connected event to listeners.
15:28:21.881 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06734f39-ba1f-4d07-acef-83f4e4c4a224_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:28:21.882 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [06734f39-ba1f-4d07-acef-83f4e4c4a224_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1985235978
15:28:22.005 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
15:28:25.131 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
15:28:25.220 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
15:28:25.231 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
15:28:25.400 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 57482053-de3f-47e3-8671-894ea77d72e7_config-0
15:28:25.400 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57482053-de3f-47e3-8671-894ea77d72e7_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
15:28:25.401 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57482053-de3f-47e3-8671-894ea77d72e7_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/271514713
15:28:25.401 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57482053-de3f-47e3-8671-894ea77d72e7_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/959897458
15:28:25.401 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57482053-de3f-47e3-8671-894ea77d72e7_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
15:28:25.401 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57482053-de3f-47e3-8671-894ea77d72e7_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
15:28:25.401 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57482053-de3f-47e3-8671-894ea77d72e7_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
15:28:25.527 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57482053-de3f-47e3-8671-894ea77d72e7_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718782105624_192.168.110.235_60172
15:28:25.528 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57482053-de3f-47e3-8671-894ea77d72e7_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:28:25.528 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57482053-de3f-47e3-8671-894ea77d72e7_config-0] Notify connected event to listeners.
15:28:25.529 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57482053-de3f-47e3-8671-894ea77d72e7_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1985235978
15:28:25.668 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
15:28:25.880 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
15:28:26.072 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of f971e17d-47d3-41c8-b8e6-582d2d5cddc1
15:28:26.072 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f971e17d-47d3-41c8-b8e6-582d2d5cddc1] RpcClient init label, labels = {module=naming, source=sdk}
15:28:26.075 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f971e17d-47d3-41c8-b8e6-582d2d5cddc1] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
15:28:26.075 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f971e17d-47d3-41c8-b8e6-582d2d5cddc1] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
15:28:26.076 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f971e17d-47d3-41c8-b8e6-582d2d5cddc1] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
15:28:26.076 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f971e17d-47d3-41c8-b8e6-582d2d5cddc1] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
15:28:26.195 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f971e17d-47d3-41c8-b8e6-582d2d5cddc1] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718782106299_192.168.110.235_60175
15:28:26.196 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f971e17d-47d3-41c8-b8e6-582d2d5cddc1] Notify connected event to listeners.
15:28:26.196 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f971e17d-47d3-41c8-b8e6-582d2d5cddc1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:28:26.196 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f971e17d-47d3-41c8-b8e6-582d2d5cddc1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1985235978
15:28:26.233 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:28:26.461 [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'} >
15:28:26.768 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f971e17d-47d3-41c8-b8e6-582d2d5cddc1] Receive server push request, request = NotifySubscriberRequest, requestId = 527
15:28:26.776 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f971e17d-47d3-41c8-b8e6-582d2d5cddc1] Ack server push request, request = NotifySubscriberRequest, requestId = 527
15:28:27.020 [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: 0xc8bfb9f9, L:/192.168.110.235:60178 - R:/192.168.110.188:8091]
15:28:27.027 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 90 ms, version:1.7.0,role:TMROLE,channel:[id: 0xc8bfb9f9, L:/192.168.110.235:60178 - R:/192.168.110.188:8091]
15:28:27.029 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
15:28:27.075 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
15:28:27.076 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
15:28:27.090 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
15:28:27.090 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
15:28:27.090 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
15:28:28.135 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
15:28:28.135 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:28:28.135 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
15:28:28.290 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:28:28.920 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
15:28:28.922 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
15:28:28.922 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
15:28:31.970 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
15:28:32.553 [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
15:28:32.624 [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
15:28:33.917 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:28:36.938 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 80cedf86-289c-4631-9bd4-b0fc9d2f1b10
15:28:36.939 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] RpcClient init label, labels = {module=naming, source=sdk}
15:28:36.939 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
15:28:36.939 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
15:28:36.939 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
15:28:36.940 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
15:28:37.062 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718782117160_192.168.110.235_60278
15:28:37.062 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:28:37.062 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Notify connected event to listeners.
15:28:37.062 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1985235978
15:28:37.083 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
15:28:37.113 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
15:28:37.635 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Receive server push request, request = NotifySubscriberRequest, requestId = 529
15:28:37.638 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Ack server push request, request = NotifySubscriberRequest, requestId = 529
15:28:38.283 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 20.527 seconds (JVM running for 22.615)
15:28:38.300 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
15:28:38.312 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
15:28:38.320 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
15:28:39.491 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
15:29:04.958 [nacos-grpc-client-executor-16] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Receive server push request, request = NotifySubscriberRequest, requestId = 532
15:29:04.959 [nacos-grpc-client-executor-16] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Ack server push request, request = NotifySubscriberRequest, requestId = 532
15:29:05.066 [nacos-grpc-client-executor-17] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Receive server push request, request = NotifySubscriberRequest, requestId = 533
15:29:05.067 [nacos-grpc-client-executor-17] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Ack server push request, request = NotifySubscriberRequest, requestId = 533
15:29:05.174 [nacos-grpc-client-executor-18] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Receive server push request, request = NotifySubscriberRequest, requestId = 534
15:29:05.175 [nacos-grpc-client-executor-18] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Ack server push request, request = NotifySubscriberRequest, requestId = 534
15:29:26.274 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Server healthy check fail, currentConnection = 1718782117160_192.168.110.235_60278
15:29:26.276 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Try to reconnect to a new server, server is  not appointed, will choose a random server.
15:29:26.389 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Success to connect a server [192.168.110.235:8848], connectionId = 1718782166496_192.168.110.235_60325
15:29:26.389 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718782117160_192.168.110.235_60278
15:29:26.389 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718782117160_192.168.110.235_60278
15:29:26.391 [nacos-grpc-client-executor-28] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718782117160_192.168.110.235_60278]Ignore complete event,isRunning:false,isAbandon=true
15:29:26.395 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Notify disconnected event to listeners
15:29:26.408 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Notify connected event to listeners.
15:29:27.095 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:29:27.096 [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'} >
15:29:27.105 [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: 0xc95eacf8, L:/192.168.110.235:60326 - R:/192.168.110.188:8091]
15:29:27.105 [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: 0xc95eacf8, L:/192.168.110.235:60326 - R:/192.168.110.188:8091]
15:29:29.884 [nacos-grpc-client-executor-35] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Receive server push request, request = NotifySubscriberRequest, requestId = 538
15:29:29.885 [nacos-grpc-client-executor-35] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Ack server push request, request = NotifySubscriberRequest, requestId = 538
15:29:29.887 [nacos-grpc-client-executor-36] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Receive server push request, request = NotifySubscriberRequest, requestId = 539
15:29:29.887 [nacos-grpc-client-executor-36] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Ack server push request, request = NotifySubscriberRequest, requestId = 539
15:29:29.890 [nacos-grpc-client-executor-37] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Receive server push request, request = NotifySubscriberRequest, requestId = 543
15:29:29.890 [nacos-grpc-client-executor-37] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Ack server push request, request = NotifySubscriberRequest, requestId = 543
15:29:29.893 [nacos-grpc-client-executor-38] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Receive server push request, request = NotifySubscriberRequest, requestId = 544
15:29:29.893 [nacos-grpc-client-executor-38] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Ack server push request, request = NotifySubscriberRequest, requestId = 544
15:29:35.956 [nacos-grpc-client-executor-39] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Receive server push request, request = NotifySubscriberRequest, requestId = 545
15:29:35.956 [nacos-grpc-client-executor-39] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Ack server push request, request = NotifySubscriberRequest, requestId = 545
15:29:49.819 [nacos-grpc-client-executor-42] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Receive server push request, request = NotifySubscriberRequest, requestId = 550
15:29:49.832 [nacos-grpc-client-executor-42] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Ack server push request, request = NotifySubscriberRequest, requestId = 550
15:30:43.003 [nacos-grpc-client-executor-53] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Receive server push request, request = NotifySubscriberRequest, requestId = 557
15:30:43.016 [nacos-grpc-client-executor-53] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cedf86-289c-4631-9bd4-b0fc9d2f1b10] Ack server push request, request = NotifySubscriberRequest, requestId = 557
15:40:44.066 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
15:40:45.066 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 11a6d635-31c8-4651-a936-2fa43ca4e4b2_config-0
15:40:45.162 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 57 ms to scan 1 urls, producing 3 keys and 6 values 
15:40:45.211 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
15:40:45.226 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 3 keys and 10 values 
15:40:45.255 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 14 urls, producing 0 keys and 0 values 
15:40:45.272 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 5 values 
15:40:45.291 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values 
15:40:45.311 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values 
15:40:45.340 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 26 ms to scan 14 urls, producing 0 keys and 0 values 
15:40:45.342 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a6d635-31c8-4651-a936-2fa43ca4e4b2_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
15:40:45.343 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a6d635-31c8-4651-a936-2fa43ca4e4b2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/755944228
15:40:45.344 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a6d635-31c8-4651-a936-2fa43ca4e4b2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1298483237
15:40:45.345 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a6d635-31c8-4651-a936-2fa43ca4e4b2_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
15:40:45.346 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a6d635-31c8-4651-a936-2fa43ca4e4b2_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
15:40:45.357 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a6d635-31c8-4651-a936-2fa43ca4e4b2_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
15:40:47.060 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a6d635-31c8-4651-a936-2fa43ca4e4b2_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718782847051_192.168.110.235_60764
15:40:47.063 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a6d635-31c8-4651-a936-2fa43ca4e4b2_config-0] Notify connected event to listeners.
15:40:47.064 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a6d635-31c8-4651-a936-2fa43ca4e4b2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:40:47.066 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a6d635-31c8-4651-a936-2fa43ca4e4b2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1235678342
15:40:47.207 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
15:40:50.334 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
15:40:50.421 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
15:40:50.432 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
15:40:50.598 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c8bfc3a9-63c2-4502-b0cd-e146801eca84_config-0
15:40:50.599 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8bfc3a9-63c2-4502-b0cd-e146801eca84_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
15:40:50.599 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8bfc3a9-63c2-4502-b0cd-e146801eca84_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/755944228
15:40:50.599 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8bfc3a9-63c2-4502-b0cd-e146801eca84_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1298483237
15:40:50.599 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8bfc3a9-63c2-4502-b0cd-e146801eca84_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
15:40:50.599 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8bfc3a9-63c2-4502-b0cd-e146801eca84_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
15:40:50.600 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8bfc3a9-63c2-4502-b0cd-e146801eca84_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
15:40:50.715 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8bfc3a9-63c2-4502-b0cd-e146801eca84_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718782850820_192.168.110.235_60771
15:40:50.716 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8bfc3a9-63c2-4502-b0cd-e146801eca84_config-0] Notify connected event to listeners.
15:40:50.716 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8bfc3a9-63c2-4502-b0cd-e146801eca84_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:40:50.717 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8bfc3a9-63c2-4502-b0cd-e146801eca84_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1235678342
15:40:50.848 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
15:40:51.067 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
15:40:51.252 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of d557f491-5fee-468a-bd96-57e7cfd8336a
15:40:51.253 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] RpcClient init label, labels = {module=naming, source=sdk}
15:40:51.255 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
15:40:51.255 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
15:40:51.256 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
15:40:51.256 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
15:40:51.369 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718782851477_192.168.110.235_60774
15:40:51.369 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:40:51.369 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] Notify connected event to listeners.
15:40:51.369 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1235678342
15:40:51.406 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:40:51.642 [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'} >
15:40:51.942 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] Receive server push request, request = NotifySubscriberRequest, requestId = 561
15:40:51.950 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] Ack server push request, request = NotifySubscriberRequest, requestId = 561
15:40:52.212 [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: 0xdc05d934, L:/192.168.110.235:60775 - R:/192.168.110.188:8091]
15:40:52.219 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 100 ms, version:1.7.0,role:TMROLE,channel:[id: 0xdc05d934, L:/192.168.110.235:60775 - R:/192.168.110.188:8091]
15:40:52.220 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
15:40:52.264 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
15:40:52.265 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
15:40:52.278 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
15:40:52.278 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
15:40:52.278 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
15:40:53.414 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
15:40:53.415 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:40:53.415 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
15:40:53.570 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:40:54.165 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
15:40:54.167 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
15:40:54.167 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
15:40:57.145 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
15:40:57.517 [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
15:40:57.584 [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
15:40:58.873 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:41:01.924 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 2b846768-91b2-45c3-b641-5d3e558341cc
15:41:01.925 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] RpcClient init label, labels = {module=naming, source=sdk}
15:41:01.925 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
15:41:01.925 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
15:41:01.925 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
15:41:01.926 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
15:41:02.038 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718782862149_192.168.110.235_60878
15:41:02.038 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:41:02.038 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] Notify connected event to listeners.
15:41:02.038 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1235678342
15:41:02.057 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
15:41:02.087 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
15:41:02.642 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] Receive server push request, request = NotifySubscriberRequest, requestId = 564
15:41:02.645 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] Ack server push request, request = NotifySubscriberRequest, requestId = 564
15:41:03.217 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 20.22 seconds (JVM running for 22.227)
15:41:03.233 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
15:41:03.246 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
15:41:03.253 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
15:41:04.000 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
15:41:47.038 [nacos-grpc-client-executor-19] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] Receive server push request, request = NotifySubscriberRequest, requestId = 566
15:41:47.039 [nacos-grpc-client-executor-19] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] Ack server push request, request = NotifySubscriberRequest, requestId = 566
15:41:47.252 [nacos-grpc-client-executor-20] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] Receive server push request, request = NotifySubscriberRequest, requestId = 567
15:41:47.253 [nacos-grpc-client-executor-20] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] Ack server push request, request = NotifySubscriberRequest, requestId = 567
15:41:47.256 [nacos-grpc-client-executor-21] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] Receive server push request, request = NotifySubscriberRequest, requestId = 568
15:41:47.256 [nacos-grpc-client-executor-21] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] Ack server push request, request = NotifySubscriberRequest, requestId = 568
15:41:52.287 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:41:52.289 [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'} >
15:41:52.299 [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: 0xadd87f4e, L:/192.168.110.235:60935 - R:/192.168.110.188:8091]
15:41:52.299 [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: 0xadd87f4e, L:/192.168.110.235:60935 - R:/192.168.110.188:8091]
15:43:06.027 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8bfc3a9-63c2-4502-b0cd-e146801eca84_config-0] Server healthy check fail, currentConnection = 1718782850820_192.168.110.235_60771
15:43:06.027 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] Server healthy check fail, currentConnection = 1718782851477_192.168.110.235_60774
15:43:06.030 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] Try to reconnect to a new server, server is  not appointed, will choose a random server.
15:43:06.030 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8bfc3a9-63c2-4502-b0cd-e146801eca84_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
15:43:06.147 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] Success to connect a server [192.168.110.235:8848], connectionId = 1718782986253_192.168.110.235_61045
15:43:06.147 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8bfc3a9-63c2-4502-b0cd-e146801eca84_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718782986254_192.168.110.235_61046
15:43:06.147 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718782851477_192.168.110.235_60774
15:43:06.147 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8bfc3a9-63c2-4502-b0cd-e146801eca84_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718782850820_192.168.110.235_60771
15:43:06.147 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718782851477_192.168.110.235_60774
15:43:06.147 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718782850820_192.168.110.235_60771
15:43:06.149 [nacos-grpc-client-executor-36] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718782851477_192.168.110.235_60774]Ignore complete event,isRunning:false,isAbandon=true
15:43:06.149 [nacos-grpc-client-executor-55] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718782850820_192.168.110.235_60771]Ignore complete event,isRunning:false,isAbandon=true
15:43:06.154 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] Notify disconnected event to listeners
15:43:06.154 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8bfc3a9-63c2-4502-b0cd-e146801eca84_config-0] Notify disconnected event to listeners
15:43:06.161 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] Notify connected event to listeners.
15:43:06.161 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c8bfc3a9-63c2-4502-b0cd-e146801eca84_config-0] Notify connected event to listeners.
15:43:09.899 [nacos-grpc-client-executor-39] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] Receive server push request, request = NotifySubscriberRequest, requestId = 569
15:43:09.900 [nacos-grpc-client-executor-39] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d557f491-5fee-468a-bd96-57e7cfd8336a] Ack server push request, request = NotifySubscriberRequest, requestId = 569
15:57:05.941 [nacos-grpc-client-executor-243] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] Receive server push request, request = NotifySubscriberRequest, requestId = 576
15:57:05.961 [nacos-grpc-client-executor-243] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b846768-91b2-45c3-b641-5d3e558341cc] Ack server push request, request = NotifySubscriberRequest, requestId = 576
15:59:49.896 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
15:59:51.040 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8e504526-0525-4cac-83ce-f8da15830a62_config-0
15:59:51.133 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 56 ms to scan 1 urls, producing 3 keys and 6 values 
15:59:51.191 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 4 keys and 9 values 
15:59:51.214 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 3 keys and 10 values 
15:59:51.251 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 33 ms to scan 14 urls, producing 0 keys and 0 values 
15:59:51.272 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 5 values 
15:59:51.320 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 45 ms to scan 1 urls, producing 1 keys and 7 values 
15:59:51.344 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 2 keys and 8 values 
15:59:51.383 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 36 ms to scan 14 urls, producing 0 keys and 0 values 
15:59:51.384 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e504526-0525-4cac-83ce-f8da15830a62_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
15:59:51.385 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e504526-0525-4cac-83ce-f8da15830a62_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/2050529121
15:59:51.386 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e504526-0525-4cac-83ce-f8da15830a62_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/69670055
15:59:51.388 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e504526-0525-4cac-83ce-f8da15830a62_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
15:59:51.389 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e504526-0525-4cac-83ce-f8da15830a62_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
15:59:51.404 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e504526-0525-4cac-83ce-f8da15830a62_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
15:59:53.792 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e504526-0525-4cac-83ce-f8da15830a62_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718783993771_192.168.110.235_62107
15:59:53.793 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e504526-0525-4cac-83ce-f8da15830a62_config-0] Notify connected event to listeners.
15:59:53.794 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e504526-0525-4cac-83ce-f8da15830a62_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:59:53.795 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e504526-0525-4cac-83ce-f8da15830a62_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1761011037
15:59:53.935 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
15:59:57.153 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
15:59:57.234 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
15:59:57.246 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
15:59:57.411 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 22139bfe-5ab4-4540-ae97-436e8ed31209_config-0
15:59:57.412 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [22139bfe-5ab4-4540-ae97-436e8ed31209_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
15:59:57.412 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [22139bfe-5ab4-4540-ae97-436e8ed31209_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/2050529121
15:59:57.412 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [22139bfe-5ab4-4540-ae97-436e8ed31209_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/69670055
15:59:57.412 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [22139bfe-5ab4-4540-ae97-436e8ed31209_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
15:59:57.412 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [22139bfe-5ab4-4540-ae97-436e8ed31209_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
15:59:57.413 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [22139bfe-5ab4-4540-ae97-436e8ed31209_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
15:59:57.528 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [22139bfe-5ab4-4540-ae97-436e8ed31209_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718783997636_192.168.110.235_62109
15:59:57.528 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [22139bfe-5ab4-4540-ae97-436e8ed31209_config-0] Notify connected event to listeners.
15:59:57.528 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [22139bfe-5ab4-4540-ae97-436e8ed31209_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:59:57.528 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [22139bfe-5ab4-4540-ae97-436e8ed31209_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1761011037
15:59:57.644 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
15:59:57.869 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
15:59:58.055 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c450b9e6-f745-4f34-982d-e988c5e7a122
15:59:58.055 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c450b9e6-f745-4f34-982d-e988c5e7a122] RpcClient init label, labels = {module=naming, source=sdk}
15:59:58.058 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c450b9e6-f745-4f34-982d-e988c5e7a122] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
15:59:58.059 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c450b9e6-f745-4f34-982d-e988c5e7a122] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
15:59:58.059 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c450b9e6-f745-4f34-982d-e988c5e7a122] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
15:59:58.060 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c450b9e6-f745-4f34-982d-e988c5e7a122] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
15:59:58.179 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c450b9e6-f745-4f34-982d-e988c5e7a122] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718783998287_192.168.110.235_62128
15:59:58.180 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c450b9e6-f745-4f34-982d-e988c5e7a122] Notify connected event to listeners.
15:59:58.180 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c450b9e6-f745-4f34-982d-e988c5e7a122] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:59:58.180 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c450b9e6-f745-4f34-982d-e988c5e7a122] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1761011037
15:59:58.219 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
15:59:58.453 [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'} >
15:59:58.725 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c450b9e6-f745-4f34-982d-e988c5e7a122] Receive server push request, request = NotifySubscriberRequest, requestId = 584
15:59:58.733 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c450b9e6-f745-4f34-982d-e988c5e7a122] Ack server push request, request = NotifySubscriberRequest, requestId = 584
15:59:59.034 [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: 0x87785237, L:/192.168.110.235:62129 - R:/192.168.110.188:8091]
15:59:59.043 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 107 ms, version:1.7.0,role:TMROLE,channel:[id: 0x87785237, L:/192.168.110.235:62129 - R:/192.168.110.188:8091]
15:59:59.044 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
15:59:59.090 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
15:59:59.091 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
15:59:59.105 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
15:59:59.105 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
15:59:59.105 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
16:00:00.282 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
16:00:00.282 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:00:00.283 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:00:00.440 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:00:01.064 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:00:01.065 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:00:01.066 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:00:04.033 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:00:04.401 [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
16:00:04.468 [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
16:00:05.803 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:00:08.828 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of adf52219-58c1-4948-8f7f-ee83d8cba9d4
16:00:08.829 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [adf52219-58c1-4948-8f7f-ee83d8cba9d4] RpcClient init label, labels = {module=naming, source=sdk}
16:00:08.829 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [adf52219-58c1-4948-8f7f-ee83d8cba9d4] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:00:08.829 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [adf52219-58c1-4948-8f7f-ee83d8cba9d4] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:00:08.829 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [adf52219-58c1-4948-8f7f-ee83d8cba9d4] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:00:08.830 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [adf52219-58c1-4948-8f7f-ee83d8cba9d4] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:00:08.954 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [adf52219-58c1-4948-8f7f-ee83d8cba9d4] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718784009053_192.168.110.235_62295
16:00:08.954 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [adf52219-58c1-4948-8f7f-ee83d8cba9d4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:00:08.954 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [adf52219-58c1-4948-8f7f-ee83d8cba9d4] Notify connected event to listeners.
16:00:08.954 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [adf52219-58c1-4948-8f7f-ee83d8cba9d4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1761011037
16:00:08.976 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
16:00:09.007 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
16:00:09.521 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [adf52219-58c1-4948-8f7f-ee83d8cba9d4] Receive server push request, request = NotifySubscriberRequest, requestId = 586
16:00:09.524 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [adf52219-58c1-4948-8f7f-ee83d8cba9d4] Ack server push request, request = NotifySubscriberRequest, requestId = 586
16:00:10.193 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 21.477 seconds (JVM running for 23.828)
16:00:10.211 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
16:00:10.224 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
16:00:10.231 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
16:00:10.664 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:00:59.115 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
16:00:59.117 [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'} >
16:01:00.246 [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: 0x8521d026, L:/192.168.110.235:62328 - R:/192.168.110.188:8091]
16:01:00.246 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 1125 ms, version:1.7.0,role:RMROLE,channel:[id: 0x8521d026, L:/192.168.110.235:62328 - R:/192.168.110.188:8091]
16:06:58.136 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:06:59.139 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 13b6fb2e-395e-4473-ab9f-907385b01075_config-0
16:06:59.229 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 54 ms to scan 1 urls, producing 3 keys and 6 values 
16:06:59.273 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
16:06:59.290 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values 
16:06:59.319 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 14 urls, producing 0 keys and 0 values 
16:06:59.335 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values 
16:06:59.356 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values 
16:06:59.377 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 2 keys and 8 values 
16:06:59.408 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 26 ms to scan 14 urls, producing 0 keys and 0 values 
16:06:59.409 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [13b6fb2e-395e-4473-ab9f-907385b01075_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:06:59.411 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [13b6fb2e-395e-4473-ab9f-907385b01075_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1901648626
16:06:59.412 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [13b6fb2e-395e-4473-ab9f-907385b01075_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/284268103
16:06:59.414 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [13b6fb2e-395e-4473-ab9f-907385b01075_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:06:59.415 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [13b6fb2e-395e-4473-ab9f-907385b01075_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:06:59.428 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [13b6fb2e-395e-4473-ab9f-907385b01075_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:07:01.289 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [13b6fb2e-395e-4473-ab9f-907385b01075_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718784421286_192.168.110.235_62540
16:07:01.290 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [13b6fb2e-395e-4473-ab9f-907385b01075_config-0] Notify connected event to listeners.
16:07:01.291 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [13b6fb2e-395e-4473-ab9f-907385b01075_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:07:01.292 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [13b6fb2e-395e-4473-ab9f-907385b01075_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1955226954
16:07:01.410 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:07:04.584 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
16:07:04.693 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
16:07:04.707 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
16:07:04.896 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 779a9458-e319-4551-b3eb-b315edf2084e_config-0
16:07:04.896 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [779a9458-e319-4551-b3eb-b315edf2084e_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:07:04.896 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [779a9458-e319-4551-b3eb-b315edf2084e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1901648626
16:07:04.896 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [779a9458-e319-4551-b3eb-b315edf2084e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/284268103
16:07:04.897 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [779a9458-e319-4551-b3eb-b315edf2084e_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:07:04.897 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [779a9458-e319-4551-b3eb-b315edf2084e_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:07:04.897 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [779a9458-e319-4551-b3eb-b315edf2084e_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:07:05.026 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [779a9458-e319-4551-b3eb-b315edf2084e_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718784425123_192.168.110.235_62542
16:07:05.027 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [779a9458-e319-4551-b3eb-b315edf2084e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:07:05.027 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [779a9458-e319-4551-b3eb-b315edf2084e_config-0] Notify connected event to listeners.
16:07:05.028 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [779a9458-e319-4551-b3eb-b315edf2084e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1955226954
16:07:05.159 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
16:07:05.404 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
16:07:05.628 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of caae03d5-39d8-425a-8c80-d841da63949e
16:07:05.628 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [caae03d5-39d8-425a-8c80-d841da63949e] RpcClient init label, labels = {module=naming, source=sdk}
16:07:05.630 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [caae03d5-39d8-425a-8c80-d841da63949e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:07:05.631 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [caae03d5-39d8-425a-8c80-d841da63949e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:07:05.631 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [caae03d5-39d8-425a-8c80-d841da63949e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:07:05.632 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [caae03d5-39d8-425a-8c80-d841da63949e] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:07:05.760 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [caae03d5-39d8-425a-8c80-d841da63949e] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718784425866_192.168.110.235_62545
16:07:05.761 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [caae03d5-39d8-425a-8c80-d841da63949e] Notify connected event to listeners.
16:07:05.760 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [caae03d5-39d8-425a-8c80-d841da63949e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:07:05.761 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [caae03d5-39d8-425a-8c80-d841da63949e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1955226954
16:07:05.801 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
16:07:06.046 [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'} >
16:07:06.312 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [caae03d5-39d8-425a-8c80-d841da63949e] Receive server push request, request = NotifySubscriberRequest, requestId = 616
16:07:06.321 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [caae03d5-39d8-425a-8c80-d841da63949e] Ack server push request, request = NotifySubscriberRequest, requestId = 616
16:07:06.612 [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: 0xc4d13265, L:/192.168.110.235:62547 - R:/192.168.110.188:8091]
16:07:06.620 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 91 ms, version:1.7.0,role:TMROLE,channel:[id: 0xc4d13265, L:/192.168.110.235:62547 - R:/192.168.110.188:8091]
16:07:06.621 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
16:07:06.673 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
16:07:06.674 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
16:07:06.688 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
16:07:06.688 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
16:07:06.688 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
16:07:07.751 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
16:07:07.752 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:07:07.752 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:07:07.917 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:07:08.509 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:07:08.510 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:07:08.511 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:07:11.475 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:07:11.850 [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
16:07:11.937 [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
16:07:13.259 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:07:16.343 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 02ca548d-918b-45c2-8343-ee988d15cb4a
16:07:16.345 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [02ca548d-918b-45c2-8343-ee988d15cb4a] RpcClient init label, labels = {module=naming, source=sdk}
16:07:16.345 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [02ca548d-918b-45c2-8343-ee988d15cb4a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:07:16.345 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [02ca548d-918b-45c2-8343-ee988d15cb4a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:07:16.345 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [02ca548d-918b-45c2-8343-ee988d15cb4a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:07:16.346 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [02ca548d-918b-45c2-8343-ee988d15cb4a] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:07:16.457 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [02ca548d-918b-45c2-8343-ee988d15cb4a] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718784436571_192.168.110.235_62653
16:07:16.457 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [02ca548d-918b-45c2-8343-ee988d15cb4a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:07:16.457 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [02ca548d-918b-45c2-8343-ee988d15cb4a] Notify connected event to listeners.
16:07:16.457 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [02ca548d-918b-45c2-8343-ee988d15cb4a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1955226954
16:07:16.478 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
16:07:16.509 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
16:07:16.998 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [02ca548d-918b-45c2-8343-ee988d15cb4a] Receive server push request, request = NotifySubscriberRequest, requestId = 618
16:07:17.001 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [02ca548d-918b-45c2-8343-ee988d15cb4a] Ack server push request, request = NotifySubscriberRequest, requestId = 618
16:07:17.644 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 20.587 seconds (JVM running for 22.756)
16:07:17.662 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
16:07:17.676 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
16:07:17.683 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
16:07:18.669 [RMI TCP Connection(5)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:08:06.690 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
16:08:06.692 [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'} >
16:08:06.704 [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: 0x9276f41c, L:/192.168.110.235:62690 - R:/192.168.110.188:8091]
16:08:06.704 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 7 ms, version:1.7.0,role:RMROLE,channel:[id: 0x9276f41c, L:/192.168.110.235:62690 - R:/192.168.110.188:8091]
16:18:25.926 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:18:26.988 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ef76841b-8b99-4201-b464-9080db018b40_config-0
16:18:27.079 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 55 ms to scan 1 urls, producing 3 keys and 6 values 
16:18:27.125 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
16:18:27.141 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values 
16:18:27.169 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 14 urls, producing 0 keys and 0 values 
16:18:27.183 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
16:18:27.200 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values 
16:18:27.217 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values 
16:18:27.246 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 26 ms to scan 14 urls, producing 0 keys and 0 values 
16:18:27.248 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef76841b-8b99-4201-b464-9080db018b40_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:18:27.249 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef76841b-8b99-4201-b464-9080db018b40_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/426052262
16:18:27.249 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef76841b-8b99-4201-b464-9080db018b40_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1021656938
16:18:27.250 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef76841b-8b99-4201-b464-9080db018b40_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:18:27.251 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef76841b-8b99-4201-b464-9080db018b40_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:18:27.263 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef76841b-8b99-4201-b464-9080db018b40_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:18:29.395 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef76841b-8b99-4201-b464-9080db018b40_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718785109339_192.168.110.235_63340
16:18:29.398 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef76841b-8b99-4201-b464-9080db018b40_config-0] Notify connected event to listeners.
16:18:29.401 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef76841b-8b99-4201-b464-9080db018b40_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:18:29.404 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [ef76841b-8b99-4201-b464-9080db018b40_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1879000767
16:18:29.796 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:18:34.523 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
16:18:34.624 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
16:18:34.639 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
16:18:34.848 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of f8206dae-b6ad-4e16-8428-3d9521162a02_config-0
16:18:34.849 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f8206dae-b6ad-4e16-8428-3d9521162a02_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:18:34.849 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f8206dae-b6ad-4e16-8428-3d9521162a02_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/426052262
16:18:34.849 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f8206dae-b6ad-4e16-8428-3d9521162a02_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1021656938
16:18:34.849 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f8206dae-b6ad-4e16-8428-3d9521162a02_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:18:34.850 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f8206dae-b6ad-4e16-8428-3d9521162a02_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:18:34.850 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f8206dae-b6ad-4e16-8428-3d9521162a02_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:18:34.965 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f8206dae-b6ad-4e16-8428-3d9521162a02_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718785115081_192.168.110.235_63352
16:18:34.965 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f8206dae-b6ad-4e16-8428-3d9521162a02_config-0] Notify connected event to listeners.
16:18:34.965 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f8206dae-b6ad-4e16-8428-3d9521162a02_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:18:34.966 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [f8206dae-b6ad-4e16-8428-3d9521162a02_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1879000767
16:18:35.110 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
16:18:35.375 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
16:18:35.607 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 643fcb7d-1bed-4825-afa3-a927bb0d7cdd
16:18:35.607 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [643fcb7d-1bed-4825-afa3-a927bb0d7cdd] RpcClient init label, labels = {module=naming, source=sdk}
16:18:35.609 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [643fcb7d-1bed-4825-afa3-a927bb0d7cdd] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:18:35.610 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [643fcb7d-1bed-4825-afa3-a927bb0d7cdd] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:18:35.611 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [643fcb7d-1bed-4825-afa3-a927bb0d7cdd] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:18:35.612 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [643fcb7d-1bed-4825-afa3-a927bb0d7cdd] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:18:36.823 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [643fcb7d-1bed-4825-afa3-a927bb0d7cdd] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718785116930_192.168.110.235_63355
16:18:36.823 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [643fcb7d-1bed-4825-afa3-a927bb0d7cdd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:18:36.823 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [643fcb7d-1bed-4825-afa3-a927bb0d7cdd] Notify connected event to listeners.
16:18:36.823 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [643fcb7d-1bed-4825-afa3-a927bb0d7cdd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1879000767
16:18:36.890 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
16:18:37.144 [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'} >
16:18:37.384 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [643fcb7d-1bed-4825-afa3-a927bb0d7cdd] Receive server push request, request = NotifySubscriberRequest, requestId = 694
16:18:37.392 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [643fcb7d-1bed-4825-afa3-a927bb0d7cdd] Ack server push request, request = NotifySubscriberRequest, requestId = 694
16:18:37.773 [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: 0x24a3d9c0, L:/192.168.110.235:63358 - R:/192.168.110.188:8091]
16:18:37.780 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 97 ms, version:1.7.0,role:TMROLE,channel:[id: 0x24a3d9c0, L:/192.168.110.235:63358 - R:/192.168.110.188:8091]
16:18:37.781 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
16:18:37.834 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
16:18:37.835 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
16:18:37.848 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
16:18:37.849 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
16:18:37.849 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
16:18:39.065 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
16:18:39.066 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:18:39.066 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:18:39.236 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:18:39.967 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:18:39.969 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:18:39.969 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:18:43.438 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:18:43.847 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
16:18:43.935 [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
16:18:45.482 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:18:49.017 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 018688e2-43f8-4fa3-849f-be24812ac0f4
16:18:49.018 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [018688e2-43f8-4fa3-849f-be24812ac0f4] RpcClient init label, labels = {module=naming, source=sdk}
16:18:49.018 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [018688e2-43f8-4fa3-849f-be24812ac0f4] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:18:49.019 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [018688e2-43f8-4fa3-849f-be24812ac0f4] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:18:49.019 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [018688e2-43f8-4fa3-849f-be24812ac0f4] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:18:49.019 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [018688e2-43f8-4fa3-849f-be24812ac0f4] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:18:49.130 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [018688e2-43f8-4fa3-849f-be24812ac0f4] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718785129245_192.168.110.235_63505
16:18:49.130 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [018688e2-43f8-4fa3-849f-be24812ac0f4] Notify connected event to listeners.
16:18:49.130 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [018688e2-43f8-4fa3-849f-be24812ac0f4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:18:49.131 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [018688e2-43f8-4fa3-849f-be24812ac0f4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1879000767
16:18:49.152 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
16:18:49.187 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
16:18:49.700 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [018688e2-43f8-4fa3-849f-be24812ac0f4] Receive server push request, request = NotifySubscriberRequest, requestId = 697
16:18:49.703 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [018688e2-43f8-4fa3-849f-be24812ac0f4] Ack server push request, request = NotifySubscriberRequest, requestId = 697
16:18:50.473 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 25.683 seconds (JVM running for 27.766)
16:18:50.493 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
16:18:50.506 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
16:18:50.515 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
16:18:51.272 [RMI TCP Connection(4)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:19:37.855 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
16:19:37.857 [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'} >
16:19:37.873 [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: 0x565ae637, L:/192.168.110.235:63704 - R:/192.168.110.188:8091]
16:19:37.873 [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: 0x565ae637, L:/192.168.110.235:63704 - R:/192.168.110.188:8091]
16:32:15.195 [SpringContextShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
16:32:15.203 [SpringContextShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
16:32:15.559 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
16:32:15.559 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2e3aa778[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
16:32:15.559 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718785129245_192.168.110.235_63505
16:32:15.564 [SpringContextShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3da6b25c[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 171]
16:32:15.750 [SpringContextShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
16:32:15.753 [SpringContextShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
16:32:15.764 [SpringContextShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
16:32:15.765 [SpringContextShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
16:32:15.767 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x24a3d9c0, L:/192.168.110.235:63358 ! R:/192.168.110.188:8091]
16:32:15.767 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x24a3d9c0, L:/192.168.110.235:63358 ! R:/192.168.110.188:8091]
16:32:15.767 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x24a3d9c0, L:/192.168.110.235:63358 ! R:/192.168.110.188:8091]
16:32:15.769 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x24a3d9c0, L:/192.168.110.235:63358 ! R:/192.168.110.188:8091]
16:32:15.769 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x565ae637, L:/192.168.110.235:63704 ! R:/192.168.110.188:8091]
16:32:15.769 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x24a3d9c0, L:/192.168.110.235:63358 ! R:/192.168.110.188:8091]) will closed
16:32:15.769 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x565ae637, L:/192.168.110.235:63704 ! R:/192.168.110.188:8091]
16:32:15.769 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x24a3d9c0, L:/192.168.110.235:63358 ! R:/192.168.110.188:8091]) will closed
16:32:15.769 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x565ae637, L:/192.168.110.235:63704 ! R:/192.168.110.188:8091]
16:32:15.769 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x565ae637, L:/192.168.110.235:63704 ! R:/192.168.110.188:8091]
16:32:15.770 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x565ae637, L:/192.168.110.235:63704 ! R:/192.168.110.188:8091]) will closed
16:32:15.770 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x565ae637, L:/192.168.110.235:63704 ! R:/192.168.110.188:8091]) will closed
16:32:23.386 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:32:24.406 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 359eba89-0816-42ee-ab69-2610c12b679f_config-0
16:32:24.495 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 54 ms to scan 1 urls, producing 3 keys and 6 values 
16:32:24.541 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
16:32:24.557 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values 
16:32:24.583 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 14 urls, producing 0 keys and 0 values 
16:32:24.602 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 5 values 
16:32:24.621 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values 
16:32:24.644 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 2 keys and 8 values 
16:32:24.674 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 14 urls, producing 0 keys and 0 values 
16:32:24.676 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:32:24.677 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1920098017
16:32:24.677 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1088818894
16:32:24.679 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:32:24.680 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:32:24.693 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:32:26.447 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718785946440_192.168.110.235_64353
16:32:26.450 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Notify connected event to listeners.
16:32:26.452 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:32:26.454 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/122513206
16:32:26.584 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:32:29.751 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
16:32:29.839 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
16:32:29.851 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
16:32:30.028 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 5c345bce-40b3-421b-87ba-1aea07094796_config-0
16:32:30.028 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:32:30.028 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1920098017
16:32:30.028 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1088818894
16:32:30.028 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:32:30.029 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:32:30.029 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:32:30.145 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718785950257_192.168.110.235_64355
16:32:30.146 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:32:30.146 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Notify connected event to listeners.
16:32:30.146 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/122513206
16:32:30.266 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
16:32:30.474 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
16:32:30.671 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8227063f-5567-48eb-85e0-8f4e34293357
16:32:30.671 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] RpcClient init label, labels = {module=naming, source=sdk}
16:32:30.673 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:32:30.674 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:32:30.674 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:32:30.675 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:32:30.804 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718785950904_192.168.110.235_64358
16:32:30.804 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] Notify connected event to listeners.
16:32:30.804 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:32:30.805 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/122513206
16:32:30.846 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
16:32:31.073 [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'} >
16:32:31.341 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] Receive server push request, request = NotifySubscriberRequest, requestId = 800
16:32:31.351 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] Ack server push request, request = NotifySubscriberRequest, requestId = 800
16:32:31.631 [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: 0x9781e753, L:/192.168.110.235:64359 - R:/192.168.110.188:8091]
16:32:31.639 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 90 ms, version:1.7.0,role:TMROLE,channel:[id: 0x9781e753, L:/192.168.110.235:64359 - R:/192.168.110.188:8091]
16:32:31.640 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
16:32:31.685 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
16:32:31.686 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
16:32:31.700 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
16:32:31.700 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
16:32:31.701 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
16:32:32.765 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
16:32:32.766 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:32:32.766 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:32:32.919 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:32:33.513 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:32:33.514 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:32:33.515 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:32:36.459 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:32:36.817 [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
16:32:36.883 [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
16:32:38.171 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:32:41.275 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of d1c028bf-c4a7-4e74-b279-88f8dfecb874
16:32:41.276 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] RpcClient init label, labels = {module=naming, source=sdk}
16:32:41.276 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:32:41.276 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:32:41.277 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:32:41.277 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:32:41.398 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718785961504_192.168.110.235_64459
16:32:41.398 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Notify connected event to listeners.
16:32:41.398 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:32:41.398 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/122513206
16:32:41.418 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
16:32:41.449 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
16:32:41.977 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Receive server push request, request = NotifySubscriberRequest, requestId = 804
16:32:41.981 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Ack server push request, request = NotifySubscriberRequest, requestId = 804
16:32:42.613 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 20.288 seconds (JVM running for 22.432)
16:32:42.630 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
16:32:42.643 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
16:32:42.651 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
16:32:43.896 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:33:31.715 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
16:33:31.717 [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'} >
16:33:31.725 [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: 0x9f248a40, L:/192.168.110.235:64512 - R:/192.168.110.188:8091]
16:33:31.725 [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: 0x9f248a40, L:/192.168.110.235:64512 - R:/192.168.110.188:8091]
16:33:57.247 [nacos-grpc-client-executor-24] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Receive server push request, request = NotifySubscriberRequest, requestId = 805
16:33:57.248 [nacos-grpc-client-executor-24] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Ack server push request, request = NotifySubscriberRequest, requestId = 805
16:42:24.097 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Server healthy check fail, currentConnection = 1718785946440_192.168.110.235_64353
16:42:24.097 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:42:24.118 [nacos-grpc-client-executor-126] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Receive server push request, request = NotifySubscriberRequest, requestId = 809
16:42:24.126 [nacos-grpc-client-executor-126] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Ack server push request, request = NotifySubscriberRequest, requestId = 809
16:42:24.216 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718786544326_192.168.110.235_64871
16:42:24.216 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718785946440_192.168.110.235_64353
16:42:24.216 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718785946440_192.168.110.235_64353
16:42:24.232 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Notify disconnected event to listeners
16:42:24.241 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Notify connected event to listeners.
16:42:26.834 [nacos-grpc-client-executor-127] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Receive server push request, request = NotifySubscriberRequest, requestId = 829
16:42:26.844 [nacos-grpc-client-executor-127] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Ack server push request, request = NotifySubscriberRequest, requestId = 829
16:42:40.514 [nacos-grpc-client-executor-132] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Receive server push request, request = NotifySubscriberRequest, requestId = 838
16:42:40.514 [nacos-grpc-client-executor-132] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Ack server push request, request = NotifySubscriberRequest, requestId = 838
16:42:40.620 [nacos-grpc-client-executor-133] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Receive server push request, request = NotifySubscriberRequest, requestId = 839
16:42:40.620 [nacos-grpc-client-executor-133] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Ack server push request, request = NotifySubscriberRequest, requestId = 839
16:45:37.630 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Server healthy check fail, currentConnection = 1718786544326_192.168.110.235_64871
16:45:37.631 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:45:42.430 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] Server healthy check fail, currentConnection = 1718785950904_192.168.110.235_64358
16:45:42.430 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:45:42.555 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] Success to connect a server [192.168.110.235:8848], connectionId = 1718786742659_192.168.110.235_64972
16:45:42.555 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718785950904_192.168.110.235_64358
16:45:42.555 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718785950904_192.168.110.235_64358
16:45:42.555 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] Notify disconnected event to listeners
16:45:42.568 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] Notify connected event to listeners.
16:45:43.761 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.188', server main port = 8858}, error = unknown
16:45:44.038 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Server healthy check fail, currentConnection = 1718785950257_192.168.110.235_64355
16:45:44.038 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:45:44.099 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718786744205_192.168.110.235_64979
16:45:44.099 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718786544326_192.168.110.235_64871
16:45:44.099 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718786544326_192.168.110.235_64871
16:45:44.100 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Notify disconnected event to listeners
16:45:44.105 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Notify connected event to listeners.
16:45:44.159 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718786744268_192.168.110.235_64981
16:45:44.159 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718785950257_192.168.110.235_64355
16:45:44.159 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718785950257_192.168.110.235_64355
16:45:44.160 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Notify disconnected event to listeners
16:45:44.161 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Notify connected event to listeners.
16:45:44.746 [nacos-grpc-client-executor-180] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Receive server push request, request = NotifySubscriberRequest, requestId = 843
16:45:44.758 [nacos-grpc-client-executor-180] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Ack server push request, request = NotifySubscriberRequest, requestId = 843
16:45:44.961 [nacos-grpc-client-executor-169] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] Receive server push request, request = NotifySubscriberRequest, requestId = 844
16:45:44.961 [nacos-grpc-client-executor-169] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8227063f-5567-48eb-85e0-8f4e34293357] Ack server push request, request = NotifySubscriberRequest, requestId = 844
16:45:45.398 [nacos-grpc-client-executor-181] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Receive server push request, request = NotifySubscriberRequest, requestId = 851
16:45:45.406 [nacos-grpc-client-executor-181] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Ack server push request, request = NotifySubscriberRequest, requestId = 851
16:46:17.163 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Server healthy check fail, currentConnection = 1718786744205_192.168.110.235_64979
16:46:17.163 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:46:17.224 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Server healthy check fail, currentConnection = 1718786744268_192.168.110.235_64981
16:46:17.224 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:46:17.347 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718786777453_192.168.110.235_65022
16:46:17.347 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718786744268_192.168.110.235_64981
16:46:17.347 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718786744268_192.168.110.235_64981
16:46:17.348 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Notify disconnected event to listeners
16:46:17.354 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Notify connected event to listeners.
16:46:17.905 [nacos-grpc-client-executor-187] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Receive server push request, request = NotifySubscriberRequest, requestId = 858
16:46:17.916 [nacos-grpc-client-executor-187] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Ack server push request, request = NotifySubscriberRequest, requestId = 858
16:46:18.278 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718786778396_192.168.110.235_65020
16:46:18.279 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718786744205_192.168.110.235_64979
16:46:18.279 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718786744205_192.168.110.235_64979
16:46:18.279 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Notify disconnected event to listeners
16:46:18.285 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [359eba89-0816-42ee-ab69-2610c12b679f_config-0] Notify connected event to listeners.
16:46:18.446 [nacos-grpc-client-executor-188] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Receive server push request, request = NotifySubscriberRequest, requestId = 864
16:46:18.454 [nacos-grpc-client-executor-188] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Ack server push request, request = NotifySubscriberRequest, requestId = 864
16:46:25.375 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Server healthy check fail, currentConnection = 1718786777453_192.168.110.235_65022
16:46:25.375 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
16:46:25.499 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718786785603_192.168.110.235_65028
16:46:25.499 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718786777453_192.168.110.235_65022
16:46:25.499 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718786777453_192.168.110.235_65022
16:46:25.500 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Notify disconnected event to listeners
16:46:25.506 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c345bce-40b3-421b-87ba-1aea07094796_config-0] Notify connected event to listeners.
16:50:28.757 [nacos-grpc-client-executor-252] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Receive server push request, request = NotifySubscriberRequest, requestId = 870
16:50:28.769 [nacos-grpc-client-executor-252] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Ack server push request, request = NotifySubscriberRequest, requestId = 870
16:51:35.456 [nacos-grpc-client-executor-267] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Receive server push request, request = NotifySubscriberRequest, requestId = 885
16:51:35.466 [nacos-grpc-client-executor-267] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [d1c028bf-c4a7-4e74-b279-88f8dfecb874] Ack server push request, request = NotifySubscriberRequest, requestId = 885
16:54:37.350 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:54:38.620 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 9bc18909-bd64-4f68-adf4-4087c58e6dd9_config-0
16:54:38.745 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 77 ms to scan 1 urls, producing 3 keys and 6 values 
16:54:38.809 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 4 keys and 9 values 
16:54:38.830 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values 
16:54:38.866 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 30 ms to scan 14 urls, producing 0 keys and 0 values 
16:54:38.886 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 1 keys and 5 values 
16:54:38.908 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values 
16:54:38.928 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 2 keys and 8 values 
16:54:38.984 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 53 ms to scan 14 urls, producing 0 keys and 0 values 
16:54:38.986 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bc18909-bd64-4f68-adf4-4087c58e6dd9_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:54:38.988 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bc18909-bd64-4f68-adf4-4087c58e6dd9_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/47719432
16:54:38.989 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bc18909-bd64-4f68-adf4-4087c58e6dd9_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1055300312
16:54:38.991 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bc18909-bd64-4f68-adf4-4087c58e6dd9_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:54:38.992 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bc18909-bd64-4f68-adf4-4087c58e6dd9_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:54:39.009 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bc18909-bd64-4f68-adf4-4087c58e6dd9_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:54:41.080 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bc18909-bd64-4f68-adf4-4087c58e6dd9_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718787281068_192.168.110.235_65425
16:54:41.082 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bc18909-bd64-4f68-adf4-4087c58e6dd9_config-0] Notify connected event to listeners.
16:54:41.083 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bc18909-bd64-4f68-adf4-4087c58e6dd9_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:54:41.084 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [9bc18909-bd64-4f68-adf4-4087c58e6dd9_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/406183058
16:54:41.241 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:54:44.413 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
16:54:44.509 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
16:54:44.523 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
16:54:44.694 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 10d8d424-4f12-4767-be89-9c4b85034256_config-0
16:54:44.694 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10d8d424-4f12-4767-be89-9c4b85034256_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:54:44.694 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10d8d424-4f12-4767-be89-9c4b85034256_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/47719432
16:54:44.694 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10d8d424-4f12-4767-be89-9c4b85034256_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1055300312
16:54:44.694 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10d8d424-4f12-4767-be89-9c4b85034256_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:54:44.695 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10d8d424-4f12-4767-be89-9c4b85034256_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:54:44.695 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10d8d424-4f12-4767-be89-9c4b85034256_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:54:44.814 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10d8d424-4f12-4767-be89-9c4b85034256_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718787284926_192.168.110.235_65427
16:54:44.815 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10d8d424-4f12-4767-be89-9c4b85034256_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:54:44.815 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10d8d424-4f12-4767-be89-9c4b85034256_config-0] Notify connected event to listeners.
16:54:44.816 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [10d8d424-4f12-4767-be89-9c4b85034256_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/406183058
16:54:44.943 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
16:54:45.164 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
16:54:45.357 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 937d19a0-d017-4487-a8ec-01be9a72138b
16:54:45.357 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [937d19a0-d017-4487-a8ec-01be9a72138b] RpcClient init label, labels = {module=naming, source=sdk}
16:54:45.359 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [937d19a0-d017-4487-a8ec-01be9a72138b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:54:45.359 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [937d19a0-d017-4487-a8ec-01be9a72138b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:54:45.360 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [937d19a0-d017-4487-a8ec-01be9a72138b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:54:45.360 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [937d19a0-d017-4487-a8ec-01be9a72138b] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:54:45.485 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [937d19a0-d017-4487-a8ec-01be9a72138b] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718787285594_192.168.110.235_65430
16:54:45.485 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [937d19a0-d017-4487-a8ec-01be9a72138b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:54:45.485 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [937d19a0-d017-4487-a8ec-01be9a72138b] Notify connected event to listeners.
16:54:45.485 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [937d19a0-d017-4487-a8ec-01be9a72138b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/406183058
16:54:45.521 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
16:54:45.744 [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'} >
16:54:46.275 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [937d19a0-d017-4487-a8ec-01be9a72138b] Receive server push request, request = NotifySubscriberRequest, requestId = 889
16:54:46.286 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [937d19a0-d017-4487-a8ec-01be9a72138b] Ack server push request, request = NotifySubscriberRequest, requestId = 889
16:54:46.754 [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: 0x5ceae8cd, L:/192.168.110.235:65431 - R:/192.168.110.188:8091]
16:54:46.761 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 97 ms, version:1.7.0,role:TMROLE,channel:[id: 0x5ceae8cd, L:/192.168.110.235:65431 - R:/192.168.110.188:8091]
16:54:46.762 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
16:54:46.806 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
16:54:46.806 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
16:54:46.818 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
16:54:46.818 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
16:54:46.819 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
16:54:47.919 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
16:54:47.920 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:54:47.920 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:54:48.081 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:54:49.517 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:54:49.522 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:54:49.523 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:54:53.440 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:54:53.813 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
16:54:53.880 [redisson-netty-2-18] INFO  o.r.c.p.MasterConnectionPool - [lambda$createConnection$0,162] - 24 connections initialized for 192.168.110.188/192.168.110.188:6379
16:54:56.847 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:55:05.455 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b5753cd6-3fb0-44f3-bd84-274d2ee8caf9
16:55:05.456 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b5753cd6-3fb0-44f3-bd84-274d2ee8caf9] RpcClient init label, labels = {module=naming, source=sdk}
16:55:05.456 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b5753cd6-3fb0-44f3-bd84-274d2ee8caf9] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:55:05.456 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b5753cd6-3fb0-44f3-bd84-274d2ee8caf9] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:55:05.457 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b5753cd6-3fb0-44f3-bd84-274d2ee8caf9] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:55:05.457 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b5753cd6-3fb0-44f3-bd84-274d2ee8caf9] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:55:05.570 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b5753cd6-3fb0-44f3-bd84-274d2ee8caf9] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718787305688_192.168.110.235_49159
16:55:05.570 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b5753cd6-3fb0-44f3-bd84-274d2ee8caf9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:55:05.570 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b5753cd6-3fb0-44f3-bd84-274d2ee8caf9] Notify connected event to listeners.
16:55:05.571 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b5753cd6-3fb0-44f3-bd84-274d2ee8caf9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/406183058
16:55:05.632 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
16:55:05.665 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
16:55:06.163 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b5753cd6-3fb0-44f3-bd84-274d2ee8caf9] Receive server push request, request = NotifySubscriberRequest, requestId = 891
16:55:06.191 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b5753cd6-3fb0-44f3-bd84-274d2ee8caf9] Ack server push request, request = NotifySubscriberRequest, requestId = 891
16:55:09.843 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 33.705 seconds (JVM running for 35.81)
16:55:09.869 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
16:55:09.891 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
16:55:09.899 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
16:55:10.429 [RMI TCP Connection(15)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:55:28.663 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
16:55:29.778 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 5e660a4b-ba02-481a-9cca-dc3d4da84f2a_config-0
16:55:29.868 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 54 ms to scan 1 urls, producing 3 keys and 6 values 
16:55:29.926 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 4 keys and 9 values 
16:55:29.942 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values 
16:55:29.972 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 26 ms to scan 14 urls, producing 0 keys and 0 values 
16:55:29.987 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values 
16:55:30.005 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values 
16:55:30.024 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values 
16:55:30.055 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 28 ms to scan 14 urls, producing 0 keys and 0 values 
16:55:30.056 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5e660a4b-ba02-481a-9cca-dc3d4da84f2a_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:55:30.057 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5e660a4b-ba02-481a-9cca-dc3d4da84f2a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1507293264
16:55:30.057 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5e660a4b-ba02-481a-9cca-dc3d4da84f2a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1408043496
16:55:30.058 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5e660a4b-ba02-481a-9cca-dc3d4da84f2a_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:55:30.059 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5e660a4b-ba02-481a-9cca-dc3d4da84f2a_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:55:30.073 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5e660a4b-ba02-481a-9cca-dc3d4da84f2a_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:55:31.989 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5e660a4b-ba02-481a-9cca-dc3d4da84f2a_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718787331980_192.168.110.235_49235
16:55:31.990 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5e660a4b-ba02-481a-9cca-dc3d4da84f2a_config-0] Notify connected event to listeners.
16:55:31.990 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5e660a4b-ba02-481a-9cca-dc3d4da84f2a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:55:31.991 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5e660a4b-ba02-481a-9cca-dc3d4da84f2a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1116462450
16:55:32.135 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
16:55:35.296 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
16:55:35.383 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
16:55:35.394 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
16:55:35.562 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8f685d09-2c77-47a0-8c57-2e2129b44edf_config-0
16:55:35.563 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f685d09-2c77-47a0-8c57-2e2129b44edf_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
16:55:35.563 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f685d09-2c77-47a0-8c57-2e2129b44edf_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1507293264
16:55:35.563 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f685d09-2c77-47a0-8c57-2e2129b44edf_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1408043496
16:55:35.563 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f685d09-2c77-47a0-8c57-2e2129b44edf_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
16:55:35.563 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f685d09-2c77-47a0-8c57-2e2129b44edf_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
16:55:35.563 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f685d09-2c77-47a0-8c57-2e2129b44edf_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:55:35.677 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f685d09-2c77-47a0-8c57-2e2129b44edf_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718787335797_192.168.110.235_49238
16:55:35.679 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f685d09-2c77-47a0-8c57-2e2129b44edf_config-0] Notify connected event to listeners.
16:55:35.678 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f685d09-2c77-47a0-8c57-2e2129b44edf_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:55:35.679 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f685d09-2c77-47a0-8c57-2e2129b44edf_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1116462450
16:55:35.803 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
16:55:36.019 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
16:55:36.206 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b6ddd391-f71e-4ead-89db-5ee46501c6c3
16:55:36.207 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6ddd391-f71e-4ead-89db-5ee46501c6c3] RpcClient init label, labels = {module=naming, source=sdk}
16:55:36.209 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6ddd391-f71e-4ead-89db-5ee46501c6c3] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:55:36.209 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6ddd391-f71e-4ead-89db-5ee46501c6c3] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:55:36.209 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6ddd391-f71e-4ead-89db-5ee46501c6c3] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:55:36.210 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6ddd391-f71e-4ead-89db-5ee46501c6c3] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:55:36.337 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6ddd391-f71e-4ead-89db-5ee46501c6c3] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718787336443_192.168.110.235_49241
16:55:36.337 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6ddd391-f71e-4ead-89db-5ee46501c6c3] Notify connected event to listeners.
16:55:36.337 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6ddd391-f71e-4ead-89db-5ee46501c6c3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:55:36.338 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6ddd391-f71e-4ead-89db-5ee46501c6c3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1116462450
16:55:36.378 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
16:55:36.597 [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'} >
16:55:36.954 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6ddd391-f71e-4ead-89db-5ee46501c6c3] Receive server push request, request = NotifySubscriberRequest, requestId = 897
16:55:36.964 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6ddd391-f71e-4ead-89db-5ee46501c6c3] Ack server push request, request = NotifySubscriberRequest, requestId = 897
16:55:37.176 [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: 0x012d8632, L:/192.168.110.235:49242 - R:/192.168.110.188:8091]
16:55:37.186 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 95 ms, version:1.7.0,role:TMROLE,channel:[id: 0x012d8632, L:/192.168.110.235:49242 - R:/192.168.110.188:8091]
16:55:37.187 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
16:55:37.232 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
16:55:37.232 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
16:55:37.257 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
16:55:37.258 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
16:55:37.258 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
16:55:38.328 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
16:55:38.329 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:55:38.329 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
16:55:38.484 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:55:39.061 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
16:55:39.062 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
16:55:39.063 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:55:42.041 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
16:55:42.396 [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
16:55:42.464 [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
16:55:43.773 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:55:46.834 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 684694cd-1a59-46a8-ba4c-69b7fcda94d2
16:55:46.835 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] RpcClient init label, labels = {module=naming, source=sdk}
16:55:46.835 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:55:46.835 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:55:46.836 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:55:46.836 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
16:55:46.948 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718787347067_192.168.110.235_49341
16:55:46.949 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:55:46.949 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Notify connected event to listeners.
16:55:46.949 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1116462450
16:55:46.978 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
16:55:47.011 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
16:55:47.482 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Receive server push request, request = NotifySubscriberRequest, requestId = 901
16:55:47.485 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Ack server push request, request = NotifySubscriberRequest, requestId = 901
16:55:48.130 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 20.688 seconds (JVM running for 22.976)
16:55:48.146 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
16:55:48.159 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
16:55:48.167 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
16:55:48.622 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:56:15.965 [nacos-grpc-client-executor-14] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Receive server push request, request = NotifySubscriberRequest, requestId = 902
16:56:15.965 [nacos-grpc-client-executor-14] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Ack server push request, request = NotifySubscriberRequest, requestId = 902
16:56:16.178 [nacos-grpc-client-executor-15] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Receive server push request, request = NotifySubscriberRequest, requestId = 903
16:56:16.178 [nacos-grpc-client-executor-15] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Ack server push request, request = NotifySubscriberRequest, requestId = 903
16:56:37.259 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
16:56:37.262 [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'} >
16:56:37.273 [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: 0x96a57078, L:/192.168.110.235:49417 - R:/192.168.110.188:8091]
16:56:37.274 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 7 ms, version:1.7.0,role:RMROLE,channel:[id: 0x96a57078, L:/192.168.110.235:49417 - R:/192.168.110.188:8091]
16:57:54.423 [nacos-grpc-client-executor-39] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Receive server push request, request = NotifySubscriberRequest, requestId = 904
16:57:54.423 [nacos-grpc-client-executor-39] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Ack server push request, request = NotifySubscriberRequest, requestId = 904
17:00:17.067 [nacos-grpc-client-executor-72] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Receive server push request, request = NotifySubscriberRequest, requestId = 907
17:00:17.078 [nacos-grpc-client-executor-72] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Ack server push request, request = NotifySubscriberRequest, requestId = 907
17:01:49.057 [nacos-grpc-client-executor-92] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Receive server push request, request = NotifySubscriberRequest, requestId = 914
17:01:49.076 [nacos-grpc-client-executor-92] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Ack server push request, request = NotifySubscriberRequest, requestId = 914
17:02:15.890 [nacos-grpc-client-executor-98] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Receive server push request, request = NotifySubscriberRequest, requestId = 919
17:02:15.908 [nacos-grpc-client-executor-98] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Ack server push request, request = NotifySubscriberRequest, requestId = 919
17:03:36.923 [nacos-grpc-client-executor-115] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Receive server push request, request = NotifySubscriberRequest, requestId = 926
17:03:36.941 [nacos-grpc-client-executor-115] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Ack server push request, request = NotifySubscriberRequest, requestId = 926
17:26:45.800 [nacos-grpc-client-executor-408] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Receive server push request, request = NotifySubscriberRequest, requestId = 935
17:26:45.809 [nacos-grpc-client-executor-408] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Ack server push request, request = NotifySubscriberRequest, requestId = 935
17:27:27.758 [nacos-grpc-client-executor-418] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Receive server push request, request = NotifySubscriberRequest, requestId = 942
17:27:27.766 [nacos-grpc-client-executor-418] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Ack server push request, request = NotifySubscriberRequest, requestId = 942
17:29:16.198 [nacos-grpc-client-executor-440] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Receive server push request, request = NotifySubscriberRequest, requestId = 947
17:29:16.209 [nacos-grpc-client-executor-440] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Ack server push request, request = NotifySubscriberRequest, requestId = 947
17:29:39.948 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5e660a4b-ba02-481a-9cca-dc3d4da84f2a_config-0] Server healthy check fail, currentConnection = 1718787331980_192.168.110.235_49235
17:29:39.949 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5e660a4b-ba02-481a-9cca-dc3d4da84f2a_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:29:39.991 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f685d09-2c77-47a0-8c57-2e2129b44edf_config-0] Server healthy check fail, currentConnection = 1718787335797_192.168.110.235_49238
17:29:39.991 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f685d09-2c77-47a0-8c57-2e2129b44edf_config-0] Try to reconnect to a new server, server is  not appointed, will choose a random server.
17:29:40.068 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5e660a4b-ba02-481a-9cca-dc3d4da84f2a_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718789380188_192.168.110.235_50831
17:29:40.068 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5e660a4b-ba02-481a-9cca-dc3d4da84f2a_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718787331980_192.168.110.235_49235
17:29:40.069 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718787331980_192.168.110.235_49235
17:29:40.077 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5e660a4b-ba02-481a-9cca-dc3d4da84f2a_config-0] Notify disconnected event to listeners
17:29:40.085 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [5e660a4b-ba02-481a-9cca-dc3d4da84f2a_config-0] Notify connected event to listeners.
17:29:40.115 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f685d09-2c77-47a0-8c57-2e2129b44edf_config-0] Success to connect a server [192.168.110.235:8848], connectionId = 1718789380228_192.168.110.235_50832
17:29:40.115 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f685d09-2c77-47a0-8c57-2e2129b44edf_config-0] Abandon prev connection, server is 192.168.110.235:8848, connectionId is 1718787335797_192.168.110.235_49238
17:29:40.115 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718787335797_192.168.110.235_49238
17:29:40.116 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f685d09-2c77-47a0-8c57-2e2129b44edf_config-0] Notify disconnected event to listeners
17:29:40.117 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [8f685d09-2c77-47a0-8c57-2e2129b44edf_config-0] Notify connected event to listeners.
17:30:19.468 [nacos-grpc-client-executor-455] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Receive server push request, request = NotifySubscriberRequest, requestId = 954
17:30:19.478 [nacos-grpc-client-executor-455] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [684694cd-1a59-46a8-ba4c-69b7fcda94d2] Ack server push request, request = NotifySubscriberRequest, requestId = 954
17:34:30.247 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
17:34:31.858 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of eb242582-336c-440b-a618-043e5402f978_config-0
17:34:31.947 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 52 ms to scan 1 urls, producing 3 keys and 6 values 
17:34:32.009 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 4 keys and 9 values 
17:34:32.026 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values 
17:34:32.058 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 28 ms to scan 14 urls, producing 0 keys and 0 values 
17:34:32.082 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 1 keys and 5 values 
17:34:32.103 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values 
17:34:32.125 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 2 keys and 8 values 
17:34:32.163 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 33 ms to scan 14 urls, producing 0 keys and 0 values 
17:34:32.166 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb242582-336c-440b-a618-043e5402f978_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:34:32.167 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb242582-336c-440b-a618-043e5402f978_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/40177529
17:34:32.168 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb242582-336c-440b-a618-043e5402f978_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1979455890
17:34:32.169 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb242582-336c-440b-a618-043e5402f978_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:34:32.169 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb242582-336c-440b-a618-043e5402f978_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:34:32.182 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb242582-336c-440b-a618-043e5402f978_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:34:34.105 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb242582-336c-440b-a618-043e5402f978_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718789674113_192.168.110.235_51079
17:34:34.107 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb242582-336c-440b-a618-043e5402f978_config-0] Notify connected event to listeners.
17:34:34.109 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb242582-336c-440b-a618-043e5402f978_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:34:34.112 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [eb242582-336c-440b-a618-043e5402f978_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/543028700
17:34:34.250 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
17:34:37.902 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
17:34:37.986 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
17:34:37.997 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
17:34:38.167 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 883fa0e6-f5b5-46b3-87ad-be07dfb1a020_config-0
17:34:38.167 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [883fa0e6-f5b5-46b3-87ad-be07dfb1a020_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:34:38.167 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [883fa0e6-f5b5-46b3-87ad-be07dfb1a020_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/40177529
17:34:38.167 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [883fa0e6-f5b5-46b3-87ad-be07dfb1a020_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1979455890
17:34:38.167 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [883fa0e6-f5b5-46b3-87ad-be07dfb1a020_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:34:38.167 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [883fa0e6-f5b5-46b3-87ad-be07dfb1a020_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:34:38.168 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [883fa0e6-f5b5-46b3-87ad-be07dfb1a020_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:34:38.286 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [883fa0e6-f5b5-46b3-87ad-be07dfb1a020_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718789678405_192.168.110.235_51082
17:34:38.287 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [883fa0e6-f5b5-46b3-87ad-be07dfb1a020_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:34:38.287 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [883fa0e6-f5b5-46b3-87ad-be07dfb1a020_config-0] Notify connected event to listeners.
17:34:38.288 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [883fa0e6-f5b5-46b3-87ad-be07dfb1a020_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/543028700
17:34:38.419 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
17:34:38.659 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
17:34:38.845 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 955a3783-12fd-433e-bd9d-3702fd028903
17:34:38.846 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [955a3783-12fd-433e-bd9d-3702fd028903] RpcClient init label, labels = {module=naming, source=sdk}
17:34:38.848 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [955a3783-12fd-433e-bd9d-3702fd028903] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:34:38.849 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [955a3783-12fd-433e-bd9d-3702fd028903] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:34:38.850 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [955a3783-12fd-433e-bd9d-3702fd028903] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:34:38.850 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [955a3783-12fd-433e-bd9d-3702fd028903] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:34:38.971 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [955a3783-12fd-433e-bd9d-3702fd028903] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718789679087_192.168.110.235_51085
17:34:38.972 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [955a3783-12fd-433e-bd9d-3702fd028903] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:34:38.972 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [955a3783-12fd-433e-bd9d-3702fd028903] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/543028700
17:34:38.990 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [955a3783-12fd-433e-bd9d-3702fd028903] Notify connected event to listeners.
17:34:39.044 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:34:39.265 [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:34:39.531 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [955a3783-12fd-433e-bd9d-3702fd028903] Receive server push request, request = NotifySubscriberRequest, requestId = 960
17:34:39.539 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [955a3783-12fd-433e-bd9d-3702fd028903] Ack server push request, request = NotifySubscriberRequest, requestId = 960
17:34:39.892 [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: 0x3c8d9555, L:/192.168.110.235:51086 - R:/192.168.110.188:8091]
17:34:39.899 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 85 ms, version:1.7.0,role:TMROLE,channel:[id: 0x3c8d9555, L:/192.168.110.235:51086 - R:/192.168.110.188:8091]
17:34:39.901 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
17:34:39.943 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
17:34:39.944 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
17:34:39.957 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
17:34:39.957 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
17:34:39.957 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
17:34:41.123 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
17:34:41.123 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
17:34:41.123 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
17:34:41.312 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
17:34:42.032 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
17:34:42.033 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
17:34:42.034 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
17:34:44.406 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
17:34:44.410 [main] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
17:34:44.417 [main] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
17:34:44.418 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
17:34:44.424 [main] INFO  o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
17:46:32.664 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
17:46:33.688 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 97860d91-7ab8-463d-9c52-57537fa355be_config-0
17:46:33.782 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 53 ms to scan 1 urls, producing 3 keys and 6 values 
17:46:33.827 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values 
17:46:33.844 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values 
17:46:33.875 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 26 ms to scan 14 urls, producing 0 keys and 0 values 
17:46:33.888 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 5 values 
17:46:33.905 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values 
17:46:33.929 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 2 keys and 8 values 
17:46:33.961 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 28 ms to scan 14 urls, producing 0 keys and 0 values 
17:46:33.963 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [97860d91-7ab8-463d-9c52-57537fa355be_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:46:33.964 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [97860d91-7ab8-463d-9c52-57537fa355be_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/47719432
17:46:33.964 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [97860d91-7ab8-463d-9c52-57537fa355be_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1055300312
17:46:33.965 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [97860d91-7ab8-463d-9c52-57537fa355be_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:46:33.967 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [97860d91-7ab8-463d-9c52-57537fa355be_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:46:33.982 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [97860d91-7ab8-463d-9c52-57537fa355be_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:46:35.744 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [97860d91-7ab8-463d-9c52-57537fa355be_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718790395737_192.168.110.235_51579
17:46:35.745 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [97860d91-7ab8-463d-9c52-57537fa355be_config-0] Notify connected event to listeners.
17:46:35.745 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [97860d91-7ab8-463d-9c52-57537fa355be_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:46:35.746 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [97860d91-7ab8-463d-9c52-57537fa355be_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1705634364
17:46:35.867 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
17:46:39.093 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
17:46:39.185 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
17:46:39.201 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
17:46:39.368 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a8c0b3b0-07e2-41c1-a863-cce18a041933_config-0
17:46:39.368 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c0b3b0-07e2-41c1-a863-cce18a041933_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:46:39.368 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c0b3b0-07e2-41c1-a863-cce18a041933_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/47719432
17:46:39.369 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c0b3b0-07e2-41c1-a863-cce18a041933_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1055300312
17:46:39.369 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c0b3b0-07e2-41c1-a863-cce18a041933_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:46:39.369 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c0b3b0-07e2-41c1-a863-cce18a041933_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:46:39.369 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c0b3b0-07e2-41c1-a863-cce18a041933_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:46:39.484 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c0b3b0-07e2-41c1-a863-cce18a041933_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718790399608_192.168.110.235_51582
17:46:39.484 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c0b3b0-07e2-41c1-a863-cce18a041933_config-0] Notify connected event to listeners.
17:46:39.484 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c0b3b0-07e2-41c1-a863-cce18a041933_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:46:39.485 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [a8c0b3b0-07e2-41c1-a863-cce18a041933_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1705634364
17:46:39.613 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
17:46:39.855 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
17:46:40.035 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b6e3b1b4-7573-4eb0-ac56-b56b6f348c92
17:46:40.035 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6e3b1b4-7573-4eb0-ac56-b56b6f348c92] RpcClient init label, labels = {module=naming, source=sdk}
17:46:40.038 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6e3b1b4-7573-4eb0-ac56-b56b6f348c92] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:46:40.038 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6e3b1b4-7573-4eb0-ac56-b56b6f348c92] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:46:40.039 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6e3b1b4-7573-4eb0-ac56-b56b6f348c92] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:46:40.040 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6e3b1b4-7573-4eb0-ac56-b56b6f348c92] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:46:40.166 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6e3b1b4-7573-4eb0-ac56-b56b6f348c92] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718790400280_192.168.110.235_51587
17:46:40.167 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6e3b1b4-7573-4eb0-ac56-b56b6f348c92] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:46:40.167 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6e3b1b4-7573-4eb0-ac56-b56b6f348c92] Notify connected event to listeners.
17:46:40.167 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6e3b1b4-7573-4eb0-ac56-b56b6f348c92] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1705634364
17:46:40.211 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:46:40.439 [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:46:40.700 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6e3b1b4-7573-4eb0-ac56-b56b6f348c92] Receive server push request, request = NotifySubscriberRequest, requestId = 971
17:46:40.707 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b6e3b1b4-7573-4eb0-ac56-b56b6f348c92] Ack server push request, request = NotifySubscriberRequest, requestId = 971
17:46:41.039 [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: 0xf10a7773, L:/192.168.110.235:51588 - R:/192.168.110.188:8091]
17:46:41.046 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 88 ms, version:1.7.0,role:TMROLE,channel:[id: 0xf10a7773, L:/192.168.110.235:51588 - R:/192.168.110.188:8091]
17:46:41.047 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
17:46:41.093 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
17:46:41.094 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
17:46:41.105 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
17:46:41.105 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
17:46:41.106 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
17:46:42.173 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
17:46:42.174 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
17:46:42.174 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
17:46:42.336 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
17:46:42.938 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
17:46:42.939 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
17:46:42.939 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
17:46:44.832 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
17:46:44.835 [main] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
17:46:44.842 [main] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
17:46:44.842 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
17:46:44.849 [main] INFO  o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
17:52:08.663 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
17:52:09.679 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 1bfe65ef-4136-4106-a375-ff3105c04dce_config-0
17:52:09.768 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 54 ms to scan 1 urls, producing 3 keys and 6 values 
17:52:09.811 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values 
17:52:09.828 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 3 keys and 10 values 
17:52:09.856 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 14 urls, producing 0 keys and 0 values 
17:52:09.870 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
17:52:09.888 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values 
17:52:09.907 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values 
17:52:09.939 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 27 ms to scan 14 urls, producing 0 keys and 0 values 
17:52:09.941 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1bfe65ef-4136-4106-a375-ff3105c04dce_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:52:09.943 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1bfe65ef-4136-4106-a375-ff3105c04dce_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1298483237
17:52:09.943 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1bfe65ef-4136-4106-a375-ff3105c04dce_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1006398046
17:52:09.944 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1bfe65ef-4136-4106-a375-ff3105c04dce_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:52:09.946 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1bfe65ef-4136-4106-a375-ff3105c04dce_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:52:09.964 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1bfe65ef-4136-4106-a375-ff3105c04dce_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:52:11.680 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1bfe65ef-4136-4106-a375-ff3105c04dce_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718790731699_192.168.110.235_51807
17:52:11.684 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1bfe65ef-4136-4106-a375-ff3105c04dce_config-0] Notify connected event to listeners.
17:52:11.686 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1bfe65ef-4136-4106-a375-ff3105c04dce_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:52:11.689 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [1bfe65ef-4136-4106-a375-ff3105c04dce_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/352185757
17:52:11.817 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
17:52:14.997 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
17:52:15.081 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
17:52:15.091 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
17:52:15.253 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0b346ed5-adfb-4415-a155-3beb8b246eba_config-0
17:52:15.254 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0b346ed5-adfb-4415-a155-3beb8b246eba_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
17:52:15.254 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0b346ed5-adfb-4415-a155-3beb8b246eba_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1298483237
17:52:15.254 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0b346ed5-adfb-4415-a155-3beb8b246eba_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1006398046
17:52:15.255 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0b346ed5-adfb-4415-a155-3beb8b246eba_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
17:52:15.255 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0b346ed5-adfb-4415-a155-3beb8b246eba_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
17:52:15.256 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0b346ed5-adfb-4415-a155-3beb8b246eba_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:52:15.379 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0b346ed5-adfb-4415-a155-3beb8b246eba_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718790735496_192.168.110.235_51810
17:52:15.379 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0b346ed5-adfb-4415-a155-3beb8b246eba_config-0] Notify connected event to listeners.
17:52:15.379 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0b346ed5-adfb-4415-a155-3beb8b246eba_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:52:15.379 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [0b346ed5-adfb-4415-a155-3beb8b246eba_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/352185757
17:52:15.501 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
17:52:15.711 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
17:52:15.896 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c41fc399-7bbc-4695-b388-a9a407ad1b65
17:52:15.896 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c41fc399-7bbc-4695-b388-a9a407ad1b65] RpcClient init label, labels = {module=naming, source=sdk}
17:52:15.899 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c41fc399-7bbc-4695-b388-a9a407ad1b65] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:52:15.900 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c41fc399-7bbc-4695-b388-a9a407ad1b65] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:52:15.900 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c41fc399-7bbc-4695-b388-a9a407ad1b65] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:52:15.900 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c41fc399-7bbc-4695-b388-a9a407ad1b65] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:52:16.023 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c41fc399-7bbc-4695-b388-a9a407ad1b65] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718790736140_192.168.110.235_51813
17:52:16.023 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c41fc399-7bbc-4695-b388-a9a407ad1b65] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:52:16.023 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c41fc399-7bbc-4695-b388-a9a407ad1b65] Notify connected event to listeners.
17:52:16.024 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c41fc399-7bbc-4695-b388-a9a407ad1b65] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/352185757
17:52:16.062 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:52:16.289 [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:52:16.642 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c41fc399-7bbc-4695-b388-a9a407ad1b65] Receive server push request, request = NotifySubscriberRequest, requestId = 972
17:52:16.650 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c41fc399-7bbc-4695-b388-a9a407ad1b65] Ack server push request, request = NotifySubscriberRequest, requestId = 972
17:52:17.090 [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: 0x9388630c, L:/192.168.110.235:51814 - R:/192.168.110.188:8091]
17:52:17.099 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 302 ms, version:1.7.0,role:TMROLE,channel:[id: 0x9388630c, L:/192.168.110.235:51814 - R:/192.168.110.188:8091]
17:52:17.100 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
17:52:17.145 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
17:52:17.146 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
17:52:17.158 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
17:52:17.158 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
17:52:17.158 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
17:52:18.206 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
17:52:18.206 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
17:52:18.206 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
17:52:18.365 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
17:52:18.955 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
17:52:18.958 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
17:52:18.958 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
17:52:22.551 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
17:52:22.916 [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:52:22.986 [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:52:24.304 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
17:52:27.168 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b524b42b-bb29-4ee7-a018-4e6f4159a5a1
17:52:27.169 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] RpcClient init label, labels = {module=naming, source=sdk}
17:52:27.169 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:52:27.169 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:52:27.169 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:52:27.170 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
17:52:27.282 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718790747409_192.168.110.235_51914
17:52:27.283 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:52:27.284 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] Notify connected event to listeners.
17:52:27.284 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/352185757
17:52:27.308 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
17:52:27.339 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
17:52:27.891 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] Receive server push request, request = NotifySubscriberRequest, requestId = 975
17:52:27.896 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] Ack server push request, request = NotifySubscriberRequest, requestId = 975
17:52:28.499 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 20.912 seconds (JVM running for 22.894)
17:52:28.517 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
17:52:28.527 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
17:52:28.536 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
17:52:29.376 [RMI TCP Connection(3)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
17:53:17.169 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
17:53:17.171 [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:53:17.180 [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: 0x51a5b602, L:/192.168.110.235:51961 - R:/192.168.110.188:8091]
17:53:17.180 [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: 0x51a5b602, L:/192.168.110.235:51961 - R:/192.168.110.188:8091]
17:54:35.450 [nacos-grpc-client-executor-35] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] Receive server push request, request = NotifySubscriberRequest, requestId = 977
17:54:35.451 [nacos-grpc-client-executor-35] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] Ack server push request, request = NotifySubscriberRequest, requestId = 977
17:54:35.556 [nacos-grpc-client-executor-36] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] Receive server push request, request = NotifySubscriberRequest, requestId = 978
17:54:35.557 [nacos-grpc-client-executor-36] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] Ack server push request, request = NotifySubscriberRequest, requestId = 978
18:04:59.309 [nacos-grpc-client-executor-173] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] Receive server push request, request = NotifySubscriberRequest, requestId = 981
18:04:59.324 [nacos-grpc-client-executor-173] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] Ack server push request, request = NotifySubscriberRequest, requestId = 981
18:05:53.375 [nacos-grpc-client-executor-185] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] Receive server push request, request = NotifySubscriberRequest, requestId = 988
18:05:53.390 [nacos-grpc-client-executor-185] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b524b42b-bb29-4ee7-a018-4e6f4159a5a1] Ack server push request, request = NotifySubscriberRequest, requestId = 988
18:21:15.929 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
18:21:16.946 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c3404334-5698-4d90-b801-87771bd11295_config-0
18:21:17.029 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 50 ms to scan 1 urls, producing 3 keys and 6 values 
18:21:17.078 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values 
18:21:17.099 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 3 keys and 10 values 
18:21:17.135 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 31 ms to scan 14 urls, producing 0 keys and 0 values 
18:21:17.158 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 1 keys and 5 values 
18:21:17.194 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 32 ms to scan 1 urls, producing 1 keys and 7 values 
18:21:17.212 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values 
18:21:17.241 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 26 ms to scan 14 urls, producing 0 keys and 0 values 
18:21:17.244 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3404334-5698-4d90-b801-87771bd11295_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
18:21:17.245 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3404334-5698-4d90-b801-87771bd11295_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/60187547
18:21:17.245 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3404334-5698-4d90-b801-87771bd11295_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/723689932
18:21:17.248 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3404334-5698-4d90-b801-87771bd11295_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
18:21:17.249 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3404334-5698-4d90-b801-87771bd11295_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
18:21:17.260 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3404334-5698-4d90-b801-87771bd11295_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
18:21:19.099 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3404334-5698-4d90-b801-87771bd11295_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718792478913_192.168.110.235_52556
18:21:19.103 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3404334-5698-4d90-b801-87771bd11295_config-0] Notify connected event to listeners.
18:21:19.105 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3404334-5698-4d90-b801-87771bd11295_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:21:19.108 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3404334-5698-4d90-b801-87771bd11295_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/191351920
18:21:19.231 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
18:21:22.452 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
18:21:22.538 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
18:21:22.550 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
18:21:22.722 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 96ae1642-72cf-4cb1-b94f-5e76f06b7733_config-0
18:21:22.722 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [96ae1642-72cf-4cb1-b94f-5e76f06b7733_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
18:21:22.722 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [96ae1642-72cf-4cb1-b94f-5e76f06b7733_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/60187547
18:21:22.723 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [96ae1642-72cf-4cb1-b94f-5e76f06b7733_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/723689932
18:21:22.723 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [96ae1642-72cf-4cb1-b94f-5e76f06b7733_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
18:21:22.723 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [96ae1642-72cf-4cb1-b94f-5e76f06b7733_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
18:21:22.723 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [96ae1642-72cf-4cb1-b94f-5e76f06b7733_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
18:21:22.848 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [96ae1642-72cf-4cb1-b94f-5e76f06b7733_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718792482851_192.168.110.235_52558
18:21:22.848 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [96ae1642-72cf-4cb1-b94f-5e76f06b7733_config-0] Notify connected event to listeners.
18:21:22.848 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [96ae1642-72cf-4cb1-b94f-5e76f06b7733_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:21:22.849 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [96ae1642-72cf-4cb1-b94f-5e76f06b7733_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/191351920
18:21:22.967 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
18:21:23.189 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
18:21:23.375 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c31153f8-4ff1-462e-8e03-45bcb13f2cee
18:21:23.375 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c31153f8-4ff1-462e-8e03-45bcb13f2cee] RpcClient init label, labels = {module=naming, source=sdk}
18:21:23.377 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c31153f8-4ff1-462e-8e03-45bcb13f2cee] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
18:21:23.377 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c31153f8-4ff1-462e-8e03-45bcb13f2cee] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
18:21:23.378 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c31153f8-4ff1-462e-8e03-45bcb13f2cee] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
18:21:23.378 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c31153f8-4ff1-462e-8e03-45bcb13f2cee] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
18:21:23.502 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c31153f8-4ff1-462e-8e03-45bcb13f2cee] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718792483505_192.168.110.235_52561
18:21:23.503 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c31153f8-4ff1-462e-8e03-45bcb13f2cee] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:21:23.503 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c31153f8-4ff1-462e-8e03-45bcb13f2cee] Notify connected event to listeners.
18:21:23.503 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c31153f8-4ff1-462e-8e03-45bcb13f2cee] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/191351920
18:21:23.544 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
18:21:23.777 [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'} >
18:21:24.127 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c31153f8-4ff1-462e-8e03-45bcb13f2cee] Receive server push request, request = NotifySubscriberRequest, requestId = 994
18:21:24.135 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c31153f8-4ff1-462e-8e03-45bcb13f2cee] Ack server push request, request = NotifySubscriberRequest, requestId = 994
18:21:24.341 [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: 0xa9315266, L:/192.168.110.235:52562 - R:/192.168.110.188:8091]
18:21:24.348 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 89 ms, version:1.7.0,role:TMROLE,channel:[id: 0xa9315266, L:/192.168.110.235:52562 - R:/192.168.110.188:8091]
18:21:24.350 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
18:21:24.394 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
18:21:24.395 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
18:21:24.406 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
18:21:24.406 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
18:21:24.407 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
18:21:25.472 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
18:21:25.472 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
18:21:25.472 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
18:21:25.629 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
18:21:26.256 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
18:21:26.258 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
18:21:26.258 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
18:21:29.949 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
18:21:30.315 [redisson-netty-2-6] INFO  o.r.c.p.MasterPubSubConnectionPool - [lambda$createConnection$0,162] - 1 connections initialized for 192.168.110.188/192.168.110.188:6379
18:21:30.382 [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
18:21:31.713 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
18:21:34.643 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 16c11f58-b459-4048-aeef-050c3f26b9d2
18:21:34.644 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [16c11f58-b459-4048-aeef-050c3f26b9d2] RpcClient init label, labels = {module=naming, source=sdk}
18:21:34.645 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [16c11f58-b459-4048-aeef-050c3f26b9d2] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
18:21:34.645 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [16c11f58-b459-4048-aeef-050c3f26b9d2] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
18:21:34.645 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [16c11f58-b459-4048-aeef-050c3f26b9d2] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
18:21:34.645 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [16c11f58-b459-4048-aeef-050c3f26b9d2] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
18:21:34.757 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [16c11f58-b459-4048-aeef-050c3f26b9d2] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718792494769_192.168.110.235_52664
18:21:34.757 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [16c11f58-b459-4048-aeef-050c3f26b9d2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:21:34.757 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [16c11f58-b459-4048-aeef-050c3f26b9d2] Notify connected event to listeners.
18:21:34.757 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [16c11f58-b459-4048-aeef-050c3f26b9d2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/191351920
18:21:34.775 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
18:21:34.806 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
18:21:35.323 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [16c11f58-b459-4048-aeef-050c3f26b9d2] Receive server push request, request = NotifySubscriberRequest, requestId = 997
18:21:35.326 [nacos-grpc-client-executor-5] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [16c11f58-b459-4048-aeef-050c3f26b9d2] Ack server push request, request = NotifySubscriberRequest, requestId = 997
18:21:36.111 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 21.264 seconds (JVM running for 23.405)
18:21:36.132 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
18:21:36.145 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
18:21:36.153 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
18:21:36.852 [RMI TCP Connection(6)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
18:21:45.047 [nacos-grpc-client-executor-9] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [16c11f58-b459-4048-aeef-050c3f26b9d2] Receive server push request, request = NotifySubscriberRequest, requestId = 999
18:21:45.047 [nacos-grpc-client-executor-9] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [16c11f58-b459-4048-aeef-050c3f26b9d2] Ack server push request, request = NotifySubscriberRequest, requestId = 999
18:22:27.333 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
18:22:28.365 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 304b41bc-f680-4c29-abf2-6052602094c9_config-0
18:22:28.456 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 57 ms to scan 1 urls, producing 3 keys and 6 values 
18:22:28.503 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values 
18:22:28.522 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values 
18:22:28.554 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 28 ms to scan 14 urls, producing 0 keys and 0 values 
18:22:28.570 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 5 values 
18:22:28.592 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 7 values 
18:22:28.610 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values 
18:22:28.639 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 14 urls, producing 0 keys and 0 values 
18:22:28.640 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [304b41bc-f680-4c29-abf2-6052602094c9_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
18:22:28.641 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [304b41bc-f680-4c29-abf2-6052602094c9_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/102709691
18:22:28.642 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [304b41bc-f680-4c29-abf2-6052602094c9_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/614335089
18:22:28.642 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [304b41bc-f680-4c29-abf2-6052602094c9_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
18:22:28.642 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [304b41bc-f680-4c29-abf2-6052602094c9_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
18:22:28.656 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [304b41bc-f680-4c29-abf2-6052602094c9_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
18:22:30.394 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [304b41bc-f680-4c29-abf2-6052602094c9_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718792550280_192.168.110.235_52740
18:22:30.395 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [304b41bc-f680-4c29-abf2-6052602094c9_config-0] Notify connected event to listeners.
18:22:30.395 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [304b41bc-f680-4c29-abf2-6052602094c9_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:22:30.396 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [304b41bc-f680-4c29-abf2-6052602094c9_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1775046789
18:22:30.523 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
18:22:33.703 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
18:22:33.788 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
18:22:33.800 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
18:22:33.966 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b97861d9-653b-4ee3-811d-fd0bcf76765a_config-0
18:22:33.967 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b97861d9-653b-4ee3-811d-fd0bcf76765a_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
18:22:33.967 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b97861d9-653b-4ee3-811d-fd0bcf76765a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/102709691
18:22:33.967 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b97861d9-653b-4ee3-811d-fd0bcf76765a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/614335089
18:22:33.967 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b97861d9-653b-4ee3-811d-fd0bcf76765a_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
18:22:33.967 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b97861d9-653b-4ee3-811d-fd0bcf76765a_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
18:22:33.968 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b97861d9-653b-4ee3-811d-fd0bcf76765a_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
18:22:34.094 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b97861d9-653b-4ee3-811d-fd0bcf76765a_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718792554090_192.168.110.235_52742
18:22:34.094 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b97861d9-653b-4ee3-811d-fd0bcf76765a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:22:34.095 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b97861d9-653b-4ee3-811d-fd0bcf76765a_config-0] Notify connected event to listeners.
18:22:34.095 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [b97861d9-653b-4ee3-811d-fd0bcf76765a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1775046789
18:22:34.219 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
18:22:34.449 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
18:22:34.631 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 205d5d8d-12fa-45ee-82c5-5684b12573cf
18:22:34.631 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [205d5d8d-12fa-45ee-82c5-5684b12573cf] RpcClient init label, labels = {module=naming, source=sdk}
18:22:34.633 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [205d5d8d-12fa-45ee-82c5-5684b12573cf] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
18:22:34.633 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [205d5d8d-12fa-45ee-82c5-5684b12573cf] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
18:22:34.634 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [205d5d8d-12fa-45ee-82c5-5684b12573cf] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
18:22:34.634 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [205d5d8d-12fa-45ee-82c5-5684b12573cf] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
18:22:34.750 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [205d5d8d-12fa-45ee-82c5-5684b12573cf] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718792554756_192.168.110.235_52745
18:22:34.750 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [205d5d8d-12fa-45ee-82c5-5684b12573cf] Notify connected event to listeners.
18:22:34.750 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [205d5d8d-12fa-45ee-82c5-5684b12573cf] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:22:34.751 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [205d5d8d-12fa-45ee-82c5-5684b12573cf] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1775046789
18:22:34.790 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
18:22:35.017 [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'} >
18:22:35.371 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [205d5d8d-12fa-45ee-82c5-5684b12573cf] Receive server push request, request = NotifySubscriberRequest, requestId = 1003
18:22:35.381 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [205d5d8d-12fa-45ee-82c5-5684b12573cf] Ack server push request, request = NotifySubscriberRequest, requestId = 1003
18:22:36.073 [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: 0x7e91e5d3, L:/192.168.110.235:52746 - R:/192.168.110.188:8091]
18:22:36.080 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 572 ms, version:1.7.0,role:TMROLE,channel:[id: 0x7e91e5d3, L:/192.168.110.235:52746 - R:/192.168.110.188:8091]
18:22:36.081 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
18:22:36.124 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
18:22:36.124 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
18:22:36.139 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
18:22:36.139 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
18:22:36.139 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
18:22:37.197 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
18:22:37.197 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
18:22:37.197 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
18:22:37.365 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
18:22:38.239 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
18:22:38.240 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
18:22:38.240 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
18:22:41.844 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
18:22:42.215 [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
18:22:42.286 [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
18:22:43.614 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
18:22:46.501 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 88ef20d8-a7f4-4923-8926-fcbc630cbba3
18:22:46.503 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ef20d8-a7f4-4923-8926-fcbc630cbba3] RpcClient init label, labels = {module=naming, source=sdk}
18:22:46.503 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ef20d8-a7f4-4923-8926-fcbc630cbba3] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
18:22:46.503 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ef20d8-a7f4-4923-8926-fcbc630cbba3] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
18:22:46.503 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ef20d8-a7f4-4923-8926-fcbc630cbba3] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
18:22:46.504 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ef20d8-a7f4-4923-8926-fcbc630cbba3] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
18:22:46.635 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ef20d8-a7f4-4923-8926-fcbc630cbba3] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718792566624_192.168.110.235_52849
18:22:46.636 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ef20d8-a7f4-4923-8926-fcbc630cbba3] Notify connected event to listeners.
18:22:46.635 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ef20d8-a7f4-4923-8926-fcbc630cbba3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:22:46.636 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ef20d8-a7f4-4923-8926-fcbc630cbba3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1775046789
18:22:46.655 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
18:22:46.692 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
18:22:47.250 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ef20d8-a7f4-4923-8926-fcbc630cbba3] Receive server push request, request = NotifySubscriberRequest, requestId = 1005
18:22:47.253 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ef20d8-a7f4-4923-8926-fcbc630cbba3] Ack server push request, request = NotifySubscriberRequest, requestId = 1005
18:22:47.856 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 21.633 seconds (JVM running for 23.735)
18:22:47.874 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
18:22:47.886 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
18:22:47.893 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
18:22:48.263 [RMI TCP Connection(1)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
18:22:56.777 [nacos-grpc-client-executor-10] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ef20d8-a7f4-4923-8926-fcbc630cbba3] Receive server push request, request = NotifySubscriberRequest, requestId = 1008
18:22:56.777 [nacos-grpc-client-executor-10] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [88ef20d8-a7f4-4923-8926-fcbc630cbba3] Ack server push request, request = NotifySubscriberRequest, requestId = 1008
18:23:36.130 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
18:23:37.166 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 28674155-7260-4586-86ec-b3576f0476a6_config-0
18:23:37.254 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 55 ms to scan 1 urls, producing 3 keys and 6 values 
18:23:37.302 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values 
18:23:37.320 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values 
18:23:37.348 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 14 urls, producing 0 keys and 0 values 
18:23:37.362 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
18:23:37.386 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 1 keys and 7 values 
18:23:37.405 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values 
18:23:37.435 [main] INFO  o.r.Reflections - [scan,232] - Reflections took 27 ms to scan 14 urls, producing 0 keys and 0 values 
18:23:37.437 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [28674155-7260-4586-86ec-b3576f0476a6_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
18:23:37.437 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [28674155-7260-4586-86ec-b3576f0476a6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1066561773
18:23:37.438 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [28674155-7260-4586-86ec-b3576f0476a6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/975372289
18:23:37.438 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [28674155-7260-4586-86ec-b3576f0476a6_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
18:23:37.439 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [28674155-7260-4586-86ec-b3576f0476a6_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
18:23:37.453 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [28674155-7260-4586-86ec-b3576f0476a6_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
18:23:39.195 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [28674155-7260-4586-86ec-b3576f0476a6_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718792619081_192.168.110.235_52930
18:23:39.196 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [28674155-7260-4586-86ec-b3576f0476a6_config-0] Notify connected event to listeners.
18:23:39.197 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [28674155-7260-4586-86ec-b3576f0476a6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:23:39.198 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [28674155-7260-4586-86ec-b3576f0476a6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1720067573
18:23:39.322 [main] INFO  c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
18:23:42.500 [main] INFO  i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata
18:23:42.599 [main] INFO  i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration
18:23:42.613 [main] INFO  i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password.
18:23:42.785 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7c10d16a-2381-45fb-8d68-ec2584a138fd_config-0
18:23:42.786 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c10d16a-2381-45fb-8d68-ec2584a138fd_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
18:23:42.786 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c10d16a-2381-45fb-8d68-ec2584a138fd_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1066561773
18:23:42.787 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c10d16a-2381-45fb-8d68-ec2584a138fd_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/975372289
18:23:42.787 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c10d16a-2381-45fb-8d68-ec2584a138fd_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
18:23:42.787 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c10d16a-2381-45fb-8d68-ec2584a138fd_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
18:23:42.788 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c10d16a-2381-45fb-8d68-ec2584a138fd_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
18:23:42.913 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c10d16a-2381-45fb-8d68-ec2584a138fd_config-0] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718792622906_192.168.110.235_52933
18:23:42.914 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c10d16a-2381-45fb-8d68-ec2584a138fd_config-0] Notify connected event to listeners.
18:23:42.914 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c10d16a-2381-45fb-8d68-ec2584a138fd_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:23:42.914 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c10d16a-2381-45fb-8d68-ec2584a138fd_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1720067573
18:23:43.040 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... 
18:23:43.262 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
18:23:43.454 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 57e8dc3a-645b-49ac-87c4-1b1e058ccb0a
18:23:43.454 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57e8dc3a-645b-49ac-87c4-1b1e058ccb0a] RpcClient init label, labels = {module=naming, source=sdk}
18:23:43.456 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57e8dc3a-645b-49ac-87c4-1b1e058ccb0a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
18:23:43.457 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57e8dc3a-645b-49ac-87c4-1b1e058ccb0a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
18:23:43.457 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57e8dc3a-645b-49ac-87c4-1b1e058ccb0a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
18:23:43.458 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57e8dc3a-645b-49ac-87c4-1b1e058ccb0a] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
18:23:43.587 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57e8dc3a-645b-49ac-87c4-1b1e058ccb0a] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718792623577_192.168.110.235_52936
18:23:43.587 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57e8dc3a-645b-49ac-87c4-1b1e058ccb0a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:23:43.587 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57e8dc3a-645b-49ac-87c4-1b1e058ccb0a] Notify connected event to listeners.
18:23:43.587 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57e8dc3a-645b-49ac-87c4-1b1e058ccb0a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1720067573
18:23:43.628 [main] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
18:23:43.848 [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'} >
18:23:44.159 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57e8dc3a-645b-49ac-87c4-1b1e058ccb0a] Receive server push request, request = NotifySubscriberRequest, requestId = 1012
18:23:44.166 [nacos-grpc-client-executor-4] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [57e8dc3a-645b-49ac-87c4-1b1e058ccb0a] Ack server push request, request = NotifySubscriberRequest, requestId = 1012
18:23:44.520 [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: 0x8aa8c6f9, L:/192.168.110.235:52937 - R:/192.168.110.188:8091]
18:23:44.527 [main] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 189 ms, version:1.7.0,role:TMROLE,channel:[id: 0x8aa8c6f9, L:/192.168.110.235:52937 - R:/192.168.110.188:8091]
18:23:44.528 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
18:23:44.576 [main] INFO  i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000
18:23:44.577 [main] INFO  i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ...
18:23:44.589 [main] INFO  i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started
18:23:44.589 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[ruoyi-order-group]
18:23:44.590 [main] INFO  i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. 
18:23:45.664 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9206"]
18:23:45.664 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
18:23:45.664 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70]
18:23:45.819 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
18:23:46.831 [main] INFO  c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
18:23:46.833 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
18:23:46.834 [main] INFO  c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
18:23:50.453 [main] INFO  org.redisson.Version - [logVersion,41] - Redisson 3.19.3
18:23:50.844 [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
18:23:50.913 [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
18:23:52.225 [main] INFO  c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
18:23:55.209 [main] INFO  c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c0ebf571-907f-4c01-8172-b38ac71f8778
18:23:55.210 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0ebf571-907f-4c01-8172-b38ac71f8778] RpcClient init label, labels = {module=naming, source=sdk}
18:23:55.211 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0ebf571-907f-4c01-8172-b38ac71f8778] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
18:23:55.211 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0ebf571-907f-4c01-8172-b38ac71f8778] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
18:23:55.211 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0ebf571-907f-4c01-8172-b38ac71f8778] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
18:23:55.212 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0ebf571-907f-4c01-8172-b38ac71f8778] Try to connect to server on start up, server: {serverIp = '192.168.110.188', server main port = 8858}
18:23:55.333 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0ebf571-907f-4c01-8172-b38ac71f8778] Success to connect to server [192.168.110.235:8848] on start up, connectionId = 1718792635327_192.168.110.235_53038
18:23:55.333 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0ebf571-907f-4c01-8172-b38ac71f8778] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:23:55.333 [com.alibaba.nacos.client.remote.worker] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0ebf571-907f-4c01-8172-b38ac71f8778] Notify connected event to listeners.
18:23:55.333 [main] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0ebf571-907f-4c01-8172-b38ac71f8778] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1720067573
18:23:55.353 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9206"]
18:23:55.385 [main] INFO  c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.235:9206 register finished
18:23:55.938 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0ebf571-907f-4c01-8172-b38ac71f8778] Receive server push request, request = NotifySubscriberRequest, requestId = 1016
18:23:55.941 [nacos-grpc-client-executor-6] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0ebf571-907f-4c01-8172-b38ac71f8778] Ack server push request, request = NotifySubscriberRequest, requestId = 1016
18:23:56.534 [main] INFO  c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 21.477 seconds (JVM running for 23.609)
18:23:56.551 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP
18:23:56.564 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP
18:23:56.570 [main] INFO  c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP
18:23:57.137 [RMI TCP Connection(2)-192.168.110.235] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
18:24:02.672 [nacos-grpc-client-executor-11] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0ebf571-907f-4c01-8172-b38ac71f8778] Receive server push request, request = NotifySubscriberRequest, requestId = 1017
18:24:02.672 [nacos-grpc-client-executor-11] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0ebf571-907f-4c01-8172-b38ac71f8778] Ack server push request, request = NotifySubscriberRequest, requestId = 1017
18:24:02.886 [nacos-grpc-client-executor-12] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0ebf571-907f-4c01-8172-b38ac71f8778] Receive server push request, request = NotifySubscriberRequest, requestId = 1018
18:24:02.886 [nacos-grpc-client-executor-12] INFO  c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0ebf571-907f-4c01-8172-b38ac71f8778] Ack server push request, request = NotifySubscriberRequest, requestId = 1018
18:24:44.601 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.188:8091
18:24:44.603 [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'} >
18:24:44.613 [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: 0x22656522, L:/192.168.110.235:53078 - R:/192.168.110.188:8091]
18:24:44.614 [timeoutChecker_2_1] INFO  i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 7 ms, version:1.7.0,role:RMROLE,channel:[id: 0x22656522, L:/192.168.110.235:53078 - R:/192.168.110.188:8091]
18:25:05.698 [SpringContextShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
18:25:05.719 [SpringContextShutdownHook] INFO  c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
18:25:06.074 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
18:25:06.074 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@75b31240[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
18:25:06.074 [SpringContextShutdownHook] INFO  c.a.n.c.r.client - [closeConnection,591] - Close current connection 1718792635327_192.168.110.235_53038
18:25:06.076 [nacos-grpc-client-executor-30] INFO  c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1718792635327_192.168.110.235_53038]Ignore complete event,isRunning:false,isAbandon=false
18:25:06.079 [SpringContextShutdownHook] INFO  c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@720327a9[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 31]
18:25:06.300 [SpringContextShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
18:25:06.303 [SpringContextShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
18:25:06.316 [SpringContextShutdownHook] INFO  c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
18:25:06.316 [SpringContextShutdownHook] INFO  c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
18:25:06.319 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x8aa8c6f9, L:/192.168.110.235:52937 ! R:/192.168.110.188:8091]
18:25:06.319 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x8aa8c6f9, L:/192.168.110.235:52937 ! R:/192.168.110.188:8091]
18:25:06.320 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x8aa8c6f9, L:/192.168.110.235:52937 ! R:/192.168.110.188:8091]
18:25:06.320 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x8aa8c6f9, L:/192.168.110.235:52937 ! R:/192.168.110.188:8091]
18:25:06.321 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8aa8c6f9, L:/192.168.110.235:52937 ! R:/192.168.110.188:8091]) will closed
18:25:06.321 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x22656522, L:/192.168.110.235:53078 ! R:/192.168.110.188:8091]
18:25:06.321 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x22656522, L:/192.168.110.235:53078 ! R:/192.168.110.188:8091]
18:25:06.321 [NettyClientSelector_TMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x8aa8c6f9, L:/192.168.110.235:52937 ! R:/192.168.110.188:8091]) will closed
18:25:06.321 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x22656522, L:/192.168.110.235:53078 ! R:/192.168.110.188:8091]
18:25:06.322 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x22656522, L:/192.168.110.235:53078 ! R:/192.168.110.188:8091]
18:25:06.322 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x22656522, L:/192.168.110.235:53078 ! R:/192.168.110.188:8091]) will closed
18:25:06.322 [NettyClientSelector_RMROLE_1_1] INFO  i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x22656522, L:/192.168.110.235:53078 ! R:/192.168.110.188:8091]) will closed