车辆电子围栏后台rail

张毅大神 2024-09-24 10:03:05 +08:00
parent 4fb40c0d3e
commit a05de8343f
90 changed files with 405625 additions and 23448 deletions

View File

@ -21,6 +21,7 @@
<module name="cloud-modules-gen" />
<module name="cloud-common-rabbit" />
<module name="cloud-common-seata" />
<module name="cloud-modules-rail" />
<module name="cloud-common-log" />
<module name="cloud-modules-file" />
</profile>

View File

@ -0,0 +1,13 @@
node_modules/
dist/
vendor/
cache/
.*/
*.min.*
*.test.*
*.spec.*
*.bundle.*
*.bundle-min.*
*.*.js
*.*.ts
*.log

View File

@ -35,6 +35,8 @@
<file url="file://$PROJECT_DIR$/cloud-server/cloud-modules/cloud-modules-file/src/main/resources" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/cloud-server/cloud-modules/cloud-modules-gen/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/cloud-server/cloud-modules/cloud-modules-gen/src/main/resources" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/cloud-server/cloud-modules/cloud-modules-rail/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/cloud-server/cloud-modules/cloud-modules-rail/src/main/resources" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/cloud-server/cloud-modules/cloud-modules-system/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/cloud-server/cloud-modules/cloud-modules-system/src/main/resources" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/cloud-server/cloud-modules/src/main/java" charset="UTF-8" />

View File

@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="SpringJavaInjectionPointsAutowiringInspection" enabled="false" level="ERROR" enabled_by_default="false" />
</profile>
</component>

View File

@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>cloud-modules</artifactId>
<groupId>com.muyu</groupId>
<version>3.6.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>cloud-modules-rail</artifactId>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<dependencies>
<!-- SpringCloud Alibaba Nacos -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
<!-- SpringCloud Alibaba Nacos Config -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
<!-- SpringCloud Alibaba Sentinel -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
<!-- SpringBoot Actuator -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- Mysql Connector -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
</dependency>
<!-- MuYu Common DataSource -->
<dependency>
<groupId>com.muyu</groupId>
<artifactId>cloud-common-datasource</artifactId>
</dependency>
<!-- MuYu Common DataScope -->
<dependency>
<groupId>com.muyu</groupId>
<artifactId>cloud-common-datascope</artifactId>
</dependency>
<dependency>
<groupId>com.muyu</groupId>
<artifactId>cloud-common-core</artifactId>
</dependency>
<!-- 接口模块 -->
<dependency>
<groupId>com.muyu</groupId>
<artifactId>cloud-common-api-doc</artifactId>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,4 @@
package com.zhangyi.rail;
public class CloudRailApplication {
}

View File

@ -0,0 +1,4 @@
package com.zhangyi.rail.controller;
public class RailController {
}

View File

@ -0,0 +1,38 @@
package com.zhangyi.rail.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.muyu.common.core.annotation.Excel;
import lombok.*;
import lombok.experimental.SuperBuilder;
@Data
@Setter
@Getter
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("sys_corpuscle_fence")
public class SysFenceRail {
private static final long seriaversionUID =1L;
/** 自增主键 */
@TableId(type = IdType.AUTO)
private Long id;
/** 围栏编码 */
@Excel(name="围栏编码")
private String fenceCode;
/**围栏名称**/
@Excel(name = "围栏名称")
private String fenceName;
/**围栏类型**/
@Excel(name = "围栏类型")
private Long fenceType;
}

View File

@ -13,6 +13,7 @@
<module>cloud-modules-gen</module>
<module>cloud-modules-file</module>
<module>cloud-modules-car</module>
<module>cloud-modules-rail</module>
</modules>
<artifactId>cloud-modules</artifactId>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,261 @@
00:42:11.847 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
00:42:12.067 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:15.090 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcee4f38-4feb-4074-937b-cbaacdada8c6_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:42:15.305 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:18.323 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcee4f38-4feb-4074-937b-cbaacdada8c6_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:42:18.640 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:18.751 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"]
00:42:18.757 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
00:42:18.758 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
00:42:19.023 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
00:42:21.657 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcee4f38-4feb-4074-937b-cbaacdada8c6_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:42:22.076 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:22.745 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
00:42:25.150 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcee4f38-4feb-4074-937b-cbaacdada8c6_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:42:25.791 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:28.826 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcee4f38-4feb-4074-937b-cbaacdada8c6_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:42:29.434 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:32.456 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcee4f38-4feb-4074-937b-cbaacdada8c6_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:42:33.161 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:33.557 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"]
00:42:34.302 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
00:42:34.305 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
00:42:34.308 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
00:42:34.336 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
00:42:34.350 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
00:42:34.352 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
00:42:36.177 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcee4f38-4feb-4074-937b-cbaacdada8c6_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:42:36.988 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:37.371 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 723563ca-0a69-49e3-874d-4c4f14816c93
00:42:37.378 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->723563ca-0a69-49e3-874d-4c4f14816c93
00:42:37.379 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [723563ca-0a69-49e3-874d-4c4f14816c93] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
00:42:37.379 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [723563ca-0a69-49e3-874d-4c4f14816c93] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
00:42:37.381 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [723563ca-0a69-49e3-874d-4c4f14816c93] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
00:42:37.382 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [723563ca-0a69-49e3-874d-4c4f14816c93] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848}
00:42:37.383 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:40.002 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcee4f38-4feb-4074-937b-cbaacdada8c6_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:42:40.406 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [723563ca-0a69-49e3-874d-4c4f14816c93] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848}
00:42:40.407 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:40.909 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:43.416 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [723563ca-0a69-49e3-874d-4c4f14816c93] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848}
00:42:43.417 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:43.925 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcee4f38-4feb-4074-937b-cbaacdada8c6_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:42:44.936 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:46.440 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [723563ca-0a69-49e3-874d-4c4f14816c93] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848}
00:42:46.441 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:47.946 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcee4f38-4feb-4074-937b-cbaacdada8c6_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:42:49.054 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:49.463 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [723563ca-0a69-49e3-874d-4c4f14816c93] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
00:42:49.465 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [723563ca-0a69-49e3-874d-4c4f14816c93] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$572/0x000001f8cd3fba10
00:42:49.465 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [723563ca-0a69-49e3-874d-4c4f14816c93] Try to reconnect to a new server, server is not appointed, will choose a random server.
00:42:49.466 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:49.468 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='192.168.61.217', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
00:42:50.002 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Stopping ProtocolHandler ["http-nio-9500"]
00:42:50.092 [main] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
00:42:50.093 [main] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
00:42:50.093 [main] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
00:42:50.094 [main] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
00:42:50.095 [main] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
00:42:50.095 [main] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
00:42:50.096 [main] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
00:42:50.096 [main] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
00:42:50.097 [main] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
00:42:50.097 [main] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
00:42:50.098 [main] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
00:42:50.099 [main] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->723563ca-0a69-49e3-874d-4c4f14816c93
00:42:50.099 [main] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@175c4ae5[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 4]
00:42:50.100 [main] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
00:42:50.101 [main] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@21bf1b1f[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
00:42:50.102 [main] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@2b33e616[Running, pool size = 12, active threads = 0, queued tasks = 0, completed tasks = 14]
00:42:50.103 [main] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->723563ca-0a69-49e3-874d-4c4f14816c93
00:42:50.103 [main] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
00:42:50.105 [main] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
00:42:50.106 [main] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
00:42:50.146 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
00:42:50.225 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [723563ca-0a69-49e3-874d-4c4f14816c93] Client is shutdown, stop reconnect to server
20:04:35.885 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
20:04:39.399 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"]
20:04:39.402 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:04:39.402 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
20:04:39.507 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:04:41.426 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:04:45.600 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"]
20:04:45.776 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
20:04:45.777 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
20:04:45.777 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
20:04:45.784 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
20:04:45.788 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
20:04:45.789 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
20:04:46.174 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 1bef58cb-6f78-4c7d-865e-1f245b34934d
20:04:46.179 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->1bef58cb-6f78-4c7d-865e-1f245b34934d
20:04:46.180 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
20:04:46.181 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
20:04:46.182 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
20:04:46.183 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
20:04:46.184 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:04:46.478 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1726661091726_220.196.194.142_41229
20:04:46.478 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:04:46.478 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Notify connected event to listeners.
20:04:46.478 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000270cd442588
20:04:46.479 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
20:04:46.480 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-auth with instance Instance{instanceId='null', ip='192.168.61.217', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
20:04:46.579 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 192.168.61.217:9500 register finished
20:04:46.779 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 15.659 seconds (process running for 16.518)
20:04:46.793 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
20:04:46.794 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
20:04:46.795 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP
20:04:46.809 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
20:04:46.809 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
20:04:46.811 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP
20:04:46.812 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
20:04:46.812 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
20:04:46.813 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth+DEFAULT_GROUP
20:04:46.813 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
20:04:46.815 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
20:04:58.185 [http-nio-9500-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
20:53:33.595 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
20:53:33.597 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
20:53:33.865 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"192.168.61.217","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
20:53:33.867 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"192.168.61.217","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
20:53:34.306 [nacos-grpc-client-executor-110.42.213.184-611] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Receive server push request, request = NotifySubscriberRequest, requestId = 2801
20:53:34.307 [nacos-grpc-client-executor-110.42.213.184-611] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Ack server push request, request = NotifySubscriberRequest, requestId = 2801
21:29:46.303 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Server check success, currentServer is 110.42.213.184:8848
21:34:17.648 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Server healthy check fail, currentConnection = 1726661091726_220.196.194.142_41229
21:34:17.648 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Try to reconnect to a new server, server is not appointed, will choose a random server.
21:34:17.650 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:34:19.234 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Success to connect a server [110.42.213.184:8848], connectionId = 1726666464452_220.196.194.142_40939
21:34:19.234 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726661091726_220.196.194.142_41229
21:34:19.235 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726661091726_220.196.194.142_41229
21:34:19.242 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Notify disconnected event to listeners
21:34:19.244 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Notify connected event to listeners.
21:34:19.244 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
21:34:21.832 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
21:34:21.930 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
21:34:22.859 [nacos-grpc-client-executor-110.42.213.184-1102] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Receive server push request, request = NotifySubscriberRequest, requestId = 2807
21:34:22.860 [nacos-grpc-client-executor-110.42.213.184-1102] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Ack server push request, request = NotifySubscriberRequest, requestId = 2807
21:49:31.727 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Server check success, currentServer is 110.42.213.184:8848
21:45:45.452 [nacos-grpc-client-executor-110.42.213.184-1648] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Receive server push request, request = ClientDetectionRequest, requestId = 2829
21:45:45.452 [nacos-grpc-client-executor-110.42.213.184-1648] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Ack server push request, request = ClientDetectionRequest, requestId = 2829
22:07:30.287 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Server healthy check fail, currentConnection = 1726661080046_220.196.194.142_40692
22:07:30.288 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:07:30.290 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:07:30.630 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Server healthy check fail, currentConnection = 1726666464452_220.196.194.142_40939
22:07:30.630 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:07:30.631 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:07:31.345 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726670449450_220.196.194.142_41187
22:07:31.345 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726661080046_220.196.194.142_40692
22:07:31.345 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726661080046_220.196.194.142_40692
22:07:31.347 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Success to connect a server [110.42.213.184:8848], connectionId = 1726670449450_220.196.194.142_41960
22:07:31.347 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726666464452_220.196.194.142_40939
22:07:31.347 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726666464452_220.196.194.142_40939
22:07:31.349 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Notify disconnected event to listeners
22:07:31.349 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Notify disconnected event to listeners
22:07:31.349 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] DisConnected,clear listen context...
22:07:31.350 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Notify connected event to listeners.
22:07:31.350 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:07:31.350 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Notify connected event to listeners.
22:07:31.350 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Connected,notify listen context...
22:07:34.271 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
22:07:34.932 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
22:07:35.670 [nacos-grpc-client-executor-110.42.213.184-1877] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Receive server push request, request = NotifySubscriberRequest, requestId = 2838
22:07:35.671 [nacos-grpc-client-executor-110.42.213.184-1877] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Ack server push request, request = NotifySubscriberRequest, requestId = 2838
22:08:38.450 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Server check success, currentServer is 110.42.213.184:8848
22:15:52.803 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
22:15:52.802 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
22:15:52.822 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:15:52.823 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:52.835 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:15:52.836 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:52.934 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
22:15:52.934 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
22:15:53.045 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.052 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.059 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.064 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.271 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.271 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.278 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.278 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.581 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.581 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.587 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.588 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.999 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.999 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:54.008 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:54.008 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:54.512 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:54.512 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:54.519 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:54.520 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:55.133 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:55.133 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:55.140 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:55.140 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:55.850 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:55.850 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:57.055 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:57.055 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:57.856 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:57.858 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:58.563 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:58.579 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:59.474 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:59.491 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:59.711 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:59.726 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:16:00.712 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:16:00.734 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:16:01.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Success to connect a server [110.42.213.184:8848], connectionId = 1726670960068_117.143.60.138_50424
22:16:01.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726670449450_220.196.194.142_41960
22:16:01.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726670449450_220.196.194.142_41960
22:16:01.871 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Notify disconnected event to listeners
22:16:01.871 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Notify connected event to listeners.
22:16:01.871 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:16:01.885 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726670960076_117.143.60.138_50426
22:16:01.885 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726670449450_220.196.194.142_41187
22:16:01.885 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726670449450_220.196.194.142_41187
22:16:01.885 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Notify disconnected event to listeners
22:16:01.886 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] DisConnected,clear listen context...
22:16:01.886 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Notify connected event to listeners.
22:16:01.886 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [a3bd35f9-3ce5-41c9-b080-8659b781b735_config-0] Connected,notify listen context...
22:16:02.013 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
22:16:02.013 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
22:16:02.037 [lettuce-nioEventLoop-4-10] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
22:16:02.039 [lettuce-nioEventLoop-4-9] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
22:16:03.281 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
22:16:03.291 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
22:16:03.543 [nacos-grpc-client-executor-110.42.213.184-2010] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Receive server push request, request = NotifySubscriberRequest, requestId = 2844
22:16:03.544 [nacos-grpc-client-executor-110.42.213.184-2010] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Ack server push request, request = NotifySubscriberRequest, requestId = 2844
22:16:13.861 [nacos-grpc-client-executor-110.42.213.184-2012] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Receive server push request, request = NotifySubscriberRequest, requestId = 2904
22:16:13.863 [nacos-grpc-client-executor-110.42.213.184-2012] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1bef58cb-6f78-4c7d-865e-1f245b34934d] Ack server push request, request = NotifySubscriberRequest, requestId = 2904

View File

@ -0,0 +1,112 @@
14:45:20.332 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
14:45:23.322 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"]
14:45:23.324 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
14:45:23.325 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
14:45:23.411 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
14:45:25.265 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
14:45:29.593 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"]
14:45:29.773 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
14:45:29.774 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
14:45:29.774 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
14:45:29.781 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
14:45:29.786 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
14:45:29.786 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
14:45:29.945 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 30e80cae-af9d-4eca-b351-d1d1bbda54f5
14:45:29.948 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->30e80cae-af9d-4eca-b351-d1d1bbda54f5
14:45:29.948 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [30e80cae-af9d-4eca-b351-d1d1bbda54f5] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
14:45:29.948 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [30e80cae-af9d-4eca-b351-d1d1bbda54f5] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
14:45:29.948 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [30e80cae-af9d-4eca-b351-d1d1bbda54f5] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
14:45:29.950 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [30e80cae-af9d-4eca-b351-d1d1bbda54f5] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
14:45:29.951 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:45:30.183 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [30e80cae-af9d-4eca-b351-d1d1bbda54f5] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1726728330474_117.143.60.138_63060
14:45:30.184 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [30e80cae-af9d-4eca-b351-d1d1bbda54f5] Notify connected event to listeners.
14:45:30.185 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
14:45:30.186 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [30e80cae-af9d-4eca-b351-d1d1bbda54f5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:45:30.187 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [30e80cae-af9d-4eca-b351-d1d1bbda54f5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000279ba4316b0
14:45:30.189 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
14:45:30.239 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.107:9500 register finished
14:45:30.420 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 13.242 seconds (process running for 13.892)
14:45:30.430 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
14:45:30.430 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
14:45:30.431 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP
14:45:30.442 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
14:45:30.442 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
14:45:30.443 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP
14:45:30.444 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
14:45:30.444 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
14:45:30.444 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth+DEFAULT_GROUP
14:45:30.445 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
14:45:30.445 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
14:45:59.211 [http-nio-9500-exec-2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
19:06:32.192 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
19:06:32.194 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
19:06:32.454 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
19:06:32.456 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
19:06:32.456 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
19:06:32.457 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
19:06:32.457 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
19:06:32.457 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
19:06:32.457 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
19:06:32.457 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
19:06:32.457 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
19:06:32.458 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
19:06:32.458 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
19:06:32.458 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
19:06:32.458 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->30e80cae-af9d-4eca-b351-d1d1bbda54f5
19:06:32.458 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@6d19c1ee[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 5206]
19:06:32.459 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
19:06:32.459 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3b6fd110[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
19:06:32.459 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726728330474_117.143.60.138_63060
19:06:32.466 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@481b0e5b[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 3108]
19:06:32.467 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->30e80cae-af9d-4eca-b351-d1d1bbda54f5
19:06:32.468 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
19:06:32.468 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
19:06:32.468 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
19:27:01.745 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
19:27:04.313 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"]
19:27:04.317 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
19:27:04.318 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
19:27:04.430 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
19:27:06.395 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
19:27:09.417 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"]
19:27:09.572 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
19:27:09.573 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
19:27:09.574 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
19:27:09.580 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
19:27:09.583 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
19:27:09.584 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
19:27:10.353 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 908e353b-dfec-41b8-b65b-8d24b2d8496a
19:27:10.355 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->908e353b-dfec-41b8-b65b-8d24b2d8496a
19:27:10.355 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
19:27:10.355 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
19:27:10.356 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
19:27:10.357 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
19:27:10.358 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:27:10.554 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1726745231185_117.143.60.138_57949
19:27:10.554 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Notify connected event to listeners.
19:27:10.554 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
19:27:10.555 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000219b44418a8
19:27:10.555 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
19:27:10.557 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
19:27:10.591 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.107:9500 register finished
19:27:10.784 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 13.99 seconds (process running for 14.88)
19:27:10.796 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
19:27:10.796 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
19:27:10.797 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP
19:27:10.807 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
19:27:10.807 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
19:27:10.808 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP
19:27:10.808 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
19:27:10.808 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
19:27:10.810 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth+DEFAULT_GROUP
19:27:10.810 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
19:27:10.811 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
19:27:34.155 [http-nio-9500-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:36:42.396 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
09:36:45.910 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"]
09:36:45.912 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:36:45.912 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
09:36:46.022 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:36:47.665 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:36:50.040 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"]
09:36:50.065 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]

View File

@ -0,0 +1,210 @@
09:40:31.136 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
09:40:31.143 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
09:40:31.201 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
09:40:31.204 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
09:40:32.001 [nacos-grpc-client-executor-110.42.213.184-10013] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Receive server push request, request = NotifySubscriberRequest, requestId = 2959
09:40:32.004 [nacos-grpc-client-executor-110.42.213.184-10013] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Ack server push request, request = NotifySubscriberRequest, requestId = 2959
09:40:56.617 [http-nio-9500-exec-4] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 203 ms
19:32:26.955 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:32:26.992 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:32:27.214 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:32:27.240 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:27.305 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Server healthy check fail, currentConnection = 1726745221500_117.143.60.138_57930
19:32:27.306 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:32:27.307 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:27.387 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
19:32:27.387 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
19:32:27.428 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:27.439 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:27.497 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:27.504 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:27.652 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:27.657 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:27.714 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:27.718 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:27.961 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:27.968 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:28.023 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:28.028 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:28.381 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:28.389 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:28.443 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:28.449 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:28.895 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:28.901 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:28.955 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:28.962 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:29.519 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:29.565 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:30.505 [lettuce-nioEventLoop-4-7] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
19:32:30.638 [lettuce-nioEventLoop-4-8] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
19:32:31.122 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Success to connect a server [110.42.213.184:8848], connectionId = 1726831951775_58.247.23.179_26234
19:32:31.122 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726745231185_117.143.60.138_57949
19:32:31.122 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726745231185_117.143.60.138_57949
19:32:31.123 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Notify disconnected event to listeners
19:32:31.124 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Notify connected event to listeners.
19:32:31.125 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
19:32:31.137 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726831951776_58.247.23.179_26236
19:32:31.137 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726745221500_117.143.60.138_57930
19:32:31.138 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726745221500_117.143.60.138_57930
19:32:31.140 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Notify disconnected event to listeners
19:32:31.139 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:32:31.140 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] DisConnected,clear listen context...
19:32:31.140 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:31.141 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Notify connected event to listeners.
19:32:31.141 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Connected,notify listen context...
19:32:31.930 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726831952391_58.247.23.179_26239
19:32:31.930 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726831951776_58.247.23.179_26236
19:32:31.930 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726831951776_58.247.23.179_26236
19:32:31.933 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Notify disconnected event to listeners
19:32:31.933 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] DisConnected,clear listen context...
19:32:31.934 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Notify connected event to listeners.
19:32:31.934 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Connected,notify listen context...
19:32:32.165 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
19:32:32.663 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
19:32:33.343 [nacos-grpc-client-executor-110.42.213.184-16974] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Receive server push request, request = NotifySubscriberRequest, requestId = 3059
19:32:33.345 [nacos-grpc-client-executor-110.42.213.184-16974] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Ack server push request, request = NotifySubscriberRequest, requestId = 3059
19:32:50.268 [nacos-grpc-client-executor-110.42.213.184-16977] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Receive server push request, request = NotifySubscriberRequest, requestId = 3140
19:32:50.268 [nacos-grpc-client-executor-110.42.213.184-16977] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Ack server push request, request = NotifySubscriberRequest, requestId = 3140
19:43:24.965 [lettuce-nioEventLoop-4-8] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:43:24.966 [lettuce-nioEventLoop-4-7] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:43:24.982 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:43:24.983 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:43:25.014 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Server healthy check fail, currentConnection = 1726831952391_58.247.23.179_26239
19:43:25.016 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:43:25.018 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:43:25.043 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
19:43:25.043 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
19:43:25.130 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:43:25.148 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:43:25.192 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:43:25.314 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:43:25.350 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:43:25.520 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:43:26.851 [lettuce-nioEventLoop-4-14] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
19:43:26.851 [lettuce-nioEventLoop-4-13] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
19:43:28.370 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:43:28.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726832609364_117.143.60.138_61421
19:43:28.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726831952391_58.247.23.179_26239
19:43:28.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726831952391_58.247.23.179_26239
19:43:28.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:43:28.538 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Notify disconnected event to listeners
19:43:28.540 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:43:28.540 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] DisConnected,clear listen context...
19:43:28.540 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Notify connected event to listeners.
19:43:28.540 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Connected,notify listen context...
19:43:28.680 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:43:28.770 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726832609561_117.143.60.138_51129
19:43:28.770 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726832609364_117.143.60.138_61421
19:43:28.770 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726832609364_117.143.60.138_61421
19:43:28.770 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Notify disconnected event to listeners
19:43:28.772 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] DisConnected,clear listen context...
19:43:28.772 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Notify connected event to listeners.
19:43:28.772 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Connected,notify listen context...
19:43:28.944 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Success to connect a server [110.42.213.184:8848], connectionId = 1726832609758_117.143.60.138_51135
19:43:28.944 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726831951775_58.247.23.179_26234
19:43:28.944 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726831951775_58.247.23.179_26234
19:43:28.944 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Notify disconnected event to listeners
19:43:28.945 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Notify connected event to listeners.
19:43:28.945 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
19:43:31.543 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
19:43:31.601 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
19:43:32.123 [nacos-grpc-client-executor-110.42.213.184-17112] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Receive server push request, request = NotifySubscriberRequest, requestId = 3178
19:43:32.123 [nacos-grpc-client-executor-110.42.213.184-17112] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Ack server push request, request = NotifySubscriberRequest, requestId = 3178
19:43:42.335 [nacos-grpc-client-executor-110.42.213.184-17115] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Receive server push request, request = NotifySubscriberRequest, requestId = 3227
19:43:42.335 [nacos-grpc-client-executor-110.42.213.184-17115] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Ack server push request, request = NotifySubscriberRequest, requestId = 3227
21:53:35.130 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Server healthy check fail, currentConnection = 1726832609561_117.143.60.138_51129
21:53:35.137 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
21:53:35.143 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:53:35.308 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726840417730_117.143.60.138_55736
21:53:35.309 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726832609561_117.143.60.138_51129
21:53:35.309 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726832609561_117.143.60.138_51129
21:53:35.310 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
21:53:35.310 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Notify disconnected event to listeners
21:53:35.311 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:53:35.311 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] DisConnected,clear listen context...
21:53:35.312 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Notify connected event to listeners.
21:53:35.312 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Connected,notify listen context...
21:53:35.463 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726840417892_117.143.60.138_55744
21:53:35.463 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726840417730_117.143.60.138_55736
21:53:35.463 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726840417730_117.143.60.138_55736
21:53:35.465 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Notify disconnected event to listeners
21:53:35.465 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] DisConnected,clear listen context...
21:53:35.466 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Notify connected event to listeners.
21:53:35.466 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Connected,notify listen context...
21:53:35.588 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
21:53:35.620 [lettuce-nioEventLoop-4-15] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
21:53:36.766 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Try to reconnect to a new server, server is not appointed, will choose a random server.
21:53:36.767 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:53:37.004 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Success to connect a server [110.42.213.184:8848], connectionId = 1726840419366_117.143.60.138_55884
21:53:37.005 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726832609758_117.143.60.138_51135
21:53:37.005 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726832609758_117.143.60.138_51135
21:53:37.005 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Notify disconnected event to listeners
21:53:37.006 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Notify connected event to listeners.
21:53:37.006 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
21:53:39.385 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
21:53:39.401 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
21:53:39.872 [nacos-grpc-client-executor-110.42.213.184-18520] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Receive server push request, request = NotifySubscriberRequest, requestId = 3277
21:53:39.873 [nacos-grpc-client-executor-110.42.213.184-18520] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Ack server push request, request = NotifySubscriberRequest, requestId = 3277
21:53:42.289 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
21:53:42.331 [lettuce-nioEventLoop-4-16] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379

View File

@ -0,0 +1,141 @@
13:31:53.776 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
13:31:54.005 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
19:13:02.676 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:13:02.678 [lettuce-nioEventLoop-4-16] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:13:02.909 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:13:02.909 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:13:02.915 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:02.915 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:03.012 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
19:13:03.031 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
19:13:03.375 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:03.679 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:03.903 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:03.917 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:03.990 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:04.222 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:04.485 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:04.519 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:04.826 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:04.941 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:05.061 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:05.062 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:05.386 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:05.409 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:05.573 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:05.613 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:05.821 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:05.833 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:06.226 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:06.235 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:06.334 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:06.344 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:06.937 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:06.945 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:06.946 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:06.955 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:07.656 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:07.663 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:07.747 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:07.753 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:08.137 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
19:13:08.139 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
19:13:08.464 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:08.469 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:08.655 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:08.659 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:09.370 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:09.375 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:09.661 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:09.664 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:10.389 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:10.394 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:10.773 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:10.776 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:11.495 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:11.503 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:11.995 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:12.018 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:12.712 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:12.720 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:13.334 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:13.343 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:14.027 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:14.754 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:17.049 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:17.764 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:18.452 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:19.269 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:20.545 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
19:13:20.545 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
19:13:21.465 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:22.280 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:22.969 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:23.887 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:25.985 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:26.890 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 16 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:27.593 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:28.603 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:30.604 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:31.617 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Fail to connect server, after trying 17 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:32.315 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:32.585 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:33.446 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:33.634 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Success to connect a server [110.42.213.184:8848], connectionId = 1726917214644_117.143.60.138_61174
19:13:33.634 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726840419366_117.143.60.138_55884
19:13:33.634 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726840419366_117.143.60.138_55884
19:13:33.636 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Notify disconnected event to listeners
19:13:33.637 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Notify connected event to listeners.
19:13:33.637 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
19:13:34.399 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:34.494 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
19:13:34.529 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
19:13:34.571 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726917215580_117.143.60.138_61223
19:13:34.571 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726840417892_117.143.60.138_55744
19:13:34.571 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726840417892_117.143.60.138_55744
19:13:34.571 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Notify disconnected event to listeners
19:13:34.571 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] DisConnected,clear listen context...
19:13:34.572 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Notify connected event to listeners.
19:13:34.572 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [52e7ca59-3db7-4991-9ae6-544b27c63158_config-0] Connected,notify listen context...
19:13:35.067 [nacos-grpc-client-executor-110.42.213.184-29540] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Receive server push request, request = NotifySubscriberRequest, requestId = 3303
19:13:35.082 [nacos-grpc-client-executor-110.42.213.184-29540] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:13:35.083 [nacos-grpc-client-executor-110.42.213.184-29540] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> []
19:13:35.086 [nacos-grpc-client-executor-110.42.213.184-29540] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Ack server push request, request = NotifySubscriberRequest, requestId = 3303
19:13:36.499 [nacos-grpc-client-executor-110.42.213.184-29541] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Receive server push request, request = NotifySubscriberRequest, requestId = 3311
19:13:36.517 [nacos-grpc-client-executor-110.42.213.184-29541] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:13:36.518 [nacos-grpc-client-executor-110.42.213.184-29541] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:13:36.521 [nacos-grpc-client-executor-110.42.213.184-29541] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [908e353b-dfec-41b8-b65b-8d24b2d8496a] Ack server push request, request = NotifySubscriberRequest, requestId = 3311
19:13:47.039 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
19:13:47.039 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
19:13:47.146 [lettuce-nioEventLoop-4-14] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
19:13:47.147 [lettuce-nioEventLoop-4-15] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379

View File

@ -0,0 +1,408 @@
15:43:39.167 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
15:43:42.271 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"]
15:43:42.275 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:43:42.276 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
15:43:42.383 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:43:44.773 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:43:48.396 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"]
15:43:48.546 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
15:43:48.548 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
15:43:48.548 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
15:43:48.556 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
15:43:48.562 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
15:43:48.562 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
15:43:48.748 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 89bc1f9c-9b27-4e25-8ac6-c0eecb34b04a
15:43:48.751 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->89bc1f9c-9b27-4e25-8ac6-c0eecb34b04a
15:43:48.751 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89bc1f9c-9b27-4e25-8ac6-c0eecb34b04a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
15:43:48.751 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89bc1f9c-9b27-4e25-8ac6-c0eecb34b04a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
15:43:48.752 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89bc1f9c-9b27-4e25-8ac6-c0eecb34b04a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
15:43:48.752 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89bc1f9c-9b27-4e25-8ac6-c0eecb34b04a] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
15:43:48.753 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
15:43:49.069 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89bc1f9c-9b27-4e25-8ac6-c0eecb34b04a] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1726991031947_117.143.60.138_61624
15:43:49.069 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89bc1f9c-9b27-4e25-8ac6-c0eecb34b04a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:43:49.069 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89bc1f9c-9b27-4e25-8ac6-c0eecb34b04a] Notify connected event to listeners.
15:43:49.070 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89bc1f9c-9b27-4e25-8ac6-c0eecb34b04a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001e53942fde0
15:43:49.070 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
15:43:49.071 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
15:43:49.094 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.107:9500 register finished
15:43:49.258 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 13.767 seconds (process running for 14.385)
15:43:49.266 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
15:43:49.266 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
15:43:49.267 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP
15:43:49.273 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
15:43:49.274 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
15:43:49.275 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP
15:43:49.275 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
15:43:49.275 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
15:43:49.276 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth+DEFAULT_GROUP
15:43:49.276 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
15:43:49.276 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
15:44:18.570 [http-nio-9500-exec-2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
15:55:00.055 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
15:55:00.056 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
15:55:00.096 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
15:55:00.098 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
15:55:00.098 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
15:55:00.098 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
15:55:00.099 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
15:55:00.099 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
15:55:00.099 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
15:55:00.099 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
15:55:00.099 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
15:55:00.100 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
15:55:00.100 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
15:55:00.100 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
15:55:00.100 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->89bc1f9c-9b27-4e25-8ac6-c0eecb34b04a
15:55:00.100 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@409c47d0[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 223]
15:55:00.101 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
15:55:00.101 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7c9ca8c0[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
15:55:00.101 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726991031947_117.143.60.138_61624
15:55:00.106 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4ef3b99a[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 159]
15:55:00.106 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->89bc1f9c-9b27-4e25-8ac6-c0eecb34b04a
15:55:00.107 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
15:55:00.107 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
15:55:00.107 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
15:56:35.390 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
15:56:38.103 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"]
15:56:38.104 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:56:38.105 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
15:56:38.197 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:56:39.524 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:56:42.970 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"]
15:56:43.124 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
15:56:43.125 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
15:56:43.126 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
15:56:43.132 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
15:56:43.136 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
15:56:43.136 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
15:56:43.346 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 8a8355e6-5c78-465f-98a8-3c5833d04f8d
15:56:43.348 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->8a8355e6-5c78-465f-98a8-3c5833d04f8d
15:56:43.349 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a8355e6-5c78-465f-98a8-3c5833d04f8d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
15:56:43.349 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a8355e6-5c78-465f-98a8-3c5833d04f8d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
15:56:43.349 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a8355e6-5c78-465f-98a8-3c5833d04f8d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
15:56:43.350 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a8355e6-5c78-465f-98a8-3c5833d04f8d] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
15:56:43.351 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
15:56:43.731 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a8355e6-5c78-465f-98a8-3c5833d04f8d] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1726991806629_58.247.23.179_30470
15:56:43.731 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a8355e6-5c78-465f-98a8-3c5833d04f8d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:56:43.731 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a8355e6-5c78-465f-98a8-3c5833d04f8d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001ff55431470
15:56:43.731 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a8355e6-5c78-465f-98a8-3c5833d04f8d] Notify connected event to listeners.
15:56:43.731 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
15:56:43.732 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-auth with instance Instance{instanceId='null', ip='192.168.54.217', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
15:56:43.832 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 192.168.54.217:9500 register finished
15:56:43.997 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 12.659 seconds (process running for 13.287)
15:56:44.007 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
15:56:44.007 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
15:56:44.008 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP
15:56:44.016 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
15:56:44.017 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
15:56:44.018 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP
15:56:44.018 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
15:56:44.018 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
15:56:44.019 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth+DEFAULT_GROUP
15:56:44.019 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
15:56:44.019 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
15:57:04.014 [http-nio-9500-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:08:53.343 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
16:08:53.344 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-auth with instance: Instance{instanceId='null', ip='192.168.54.217', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
16:08:53.416 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
16:08:53.418 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
16:08:53.418 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
16:08:53.419 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
16:08:53.419 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
16:08:53.419 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
16:08:53.419 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
16:08:53.419 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
16:08:53.419 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
16:08:53.419 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
16:08:53.419 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
16:08:53.420 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
16:08:53.420 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->8a8355e6-5c78-465f-98a8-3c5833d04f8d
16:08:53.420 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@4eca55ce[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 242]
16:08:53.420 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
16:08:53.420 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@9a43f43[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
16:08:53.420 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726991806629_58.247.23.179_30470
16:08:53.423 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@354e5108[Running, pool size = 4, active threads = 1, queued tasks = 0, completed tasks = 166]
16:08:53.423 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->8a8355e6-5c78-465f-98a8-3c5833d04f8d
16:08:53.423 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
16:08:53.423 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
16:08:53.424 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a8355e6-5c78-465f-98a8-3c5833d04f8d] Server healthy check fail, currentConnection = 1726991806629_58.247.23.179_30470
16:08:53.424 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
16:35:25.108 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
16:35:27.879 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"]
16:35:27.882 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:35:27.883 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
16:35:27.980 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:35:29.367 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:35:32.676 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"]
16:35:32.816 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
16:35:32.818 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
16:35:32.818 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
16:35:32.823 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
16:35:32.828 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
16:35:32.828 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
16:35:33.194 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 1510f475-8782-4554-aef5-1ee35579ef97
16:35:33.196 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->1510f475-8782-4554-aef5-1ee35579ef97
16:35:33.197 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:35:33.197 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:35:33.197 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:35:33.198 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
16:35:33.199 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:35:34.822 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1726994137040_58.247.23.179_30701
16:35:34.822 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Notify connected event to listeners.
16:35:34.822 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:35:34.822 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
16:35:34.823 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001a909432588
16:35:34.824 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-auth with instance Instance{instanceId='null', ip='192.168.54.217', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
16:35:34.926 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 192.168.54.217:9500 register finished
16:35:35.090 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 14.141 seconds (process running for 14.885)
16:35:35.099 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
16:35:35.100 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
16:35:35.100 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP
16:35:35.112 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
16:35:35.112 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
16:35:35.114 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP
16:35:35.115 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
16:35:35.116 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
16:35:35.117 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth+DEFAULT_GROUP
16:35:35.117 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
16:35:35.118 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
16:36:00.339 [http-nio-9500-exec-2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:41:22.640 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Server healthy check fail, currentConnection = 1726994126605_58.247.23.179_60984
16:41:22.640 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:41:22.641 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:25.753 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:26.002 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Server healthy check fail, currentConnection = 1726994137040_58.247.23.179_30701
16:41:26.002 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:41:26.002 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:28.768 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:28.968 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:29.124 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:31.985 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:32.141 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:32.295 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:32.343 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:35.304 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:35.351 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:35.662 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:35.670 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:35.707 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:35.712 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:36.082 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:36.110 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:36.154 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
16:41:36.225 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:36.613 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:39.229 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:39.631 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:39.830 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:40.233 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:42.841 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:43.246 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:43.556 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:43.959 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:46.243 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
16:41:46.559 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:46.964 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:47.369 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:47.772 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:50.374 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:50.778 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:51.275 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:51.681 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:54.278 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:54.697 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:55.290 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:55.709 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:56.336 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
16:41:58.295 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:58.716 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:59.403 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:59.821 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:02.412 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:02.832 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:03.625 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:04.034 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:06.444 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
16:42:06.632 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:07.051 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:07.932 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:08.238 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:08.362 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:08.372 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:09.651 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:09.656 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:09.776 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:09.780 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:11.164 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:11.168 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:11.289 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:11.293 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:12.743 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
16:42:12.774 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:12.779 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:12.898 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:12.902 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Fail to connect server, after trying 16 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:14.487 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:14.491 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:14.611 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:14.615 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Fail to connect server, after trying 17 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:16.293 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:16.419 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:16.434 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726994539543_117.143.60.138_54603
16:42:16.434 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726994126605_58.247.23.179_60984
16:42:16.434 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726994126605_58.247.23.179_60984
16:42:16.434 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Notify disconnected event to listeners
16:42:16.434 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] DisConnected,clear listen context...
16:42:16.434 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Notify connected event to listeners.
16:42:16.434 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Connected,notify listen context...
16:42:16.561 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Success to connect a server [110.42.213.184:8848], connectionId = 1726994539668_117.143.60.138_54608
16:42:16.561 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726994137040_58.247.23.179_30701
16:42:16.561 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726994137040_58.247.23.179_30701
16:42:16.562 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Notify disconnected event to listeners
16:42:16.563 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Notify connected event to listeners.
16:42:16.563 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
16:42:16.788 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1510f475-8782-4554-aef5-1ee35579ef97] Server check success, currentServer is 110.42.213.184:8848
16:42:16.965 [lettuce-nioEventLoop-4-14] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
16:42:19.102 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
19:40:45.250 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Server healthy check fail, currentConnection = 1726994539543_117.143.60.138_54603
19:40:45.250 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:40:45.251 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:40:48.365 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:40:51.370 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:40:51.585 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:40:53.559 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727005251878_117.143.60.138_52503
19:40:53.559 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726994539543_117.143.60.138_54603
19:40:53.559 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726994539543_117.143.60.138_54603
19:40:53.559 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Notify disconnected event to listeners
19:40:53.560 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] DisConnected,clear listen context...
19:40:53.560 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Notify connected event to listeners.
19:40:53.560 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Connected,notify listen context...
20:02:58.076 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e91dcac-a7b7-4546-9c68-5a6dd645e110_config-0] Server check success, currentServer is 110.42.213.184:8848
22:26:48.687 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:26:52.297 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"]
22:26:52.299 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:26:52.299 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:26:52.432 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:26:54.160 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:26:57.857 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"]
22:26:57.997 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:26:57.999 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:26:58.000 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:26:58.005 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:26:58.010 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
22:26:58.010 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
22:26:58.118 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of a3652117-d350-446e-b5f1-c8b67ba0755f
22:26:58.121 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->a3652117-d350-446e-b5f1-c8b67ba0755f
22:26:58.122 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3652117-d350-446e-b5f1-c8b67ba0755f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:26:58.122 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3652117-d350-446e-b5f1-c8b67ba0755f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:26:58.124 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3652117-d350-446e-b5f1-c8b67ba0755f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:26:58.125 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3652117-d350-446e-b5f1-c8b67ba0755f] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
22:26:58.126 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:58.289 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3652117-d350-446e-b5f1-c8b67ba0755f] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727015218249_117.143.60.138_60348
22:26:58.289 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3652117-d350-446e-b5f1-c8b67ba0755f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:26:58.289 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3652117-d350-446e-b5f1-c8b67ba0755f] Notify connected event to listeners.
22:26:58.291 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a3652117-d350-446e-b5f1-c8b67ba0755f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000025f32433c18
22:26:58.291 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:26:58.292 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
22:26:58.314 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.107:9500 register finished
22:26:58.466 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 13.171 seconds (process running for 13.942)
22:26:58.477 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:26:58.478 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:26:58.478 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP
22:26:58.486 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
22:26:58.487 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
22:26:58.488 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP
22:26:58.488 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
22:26:58.488 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
22:26:58.489 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth+DEFAULT_GROUP
22:26:58.489 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
22:26:58.489 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
22:27:20.463 [http-nio-9500-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
22:30:21.115 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:30:21.115 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
22:30:21.132 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
22:30:21.133 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
22:30:21.133 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
22:30:21.133 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
22:30:21.133 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
22:30:21.133 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
22:30:21.133 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
22:30:21.133 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
22:30:21.134 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
22:30:21.134 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
22:30:21.134 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
22:30:21.134 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
22:30:21.134 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->a3652117-d350-446e-b5f1-c8b67ba0755f
22:30:21.134 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@74a0b336[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 67]
22:30:21.135 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
22:30:21.135 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@4826ef66[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:30:21.135 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727015218249_117.143.60.138_60348
22:30:21.138 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@59285eda[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 56]
22:30:21.139 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->a3652117-d350-446e-b5f1-c8b67ba0755f
22:30:21.139 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
22:30:21.139 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
22:30:21.139 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
22:30:37.976 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:30:41.041 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"]
22:30:41.043 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:30:41.043 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:30:41.123 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:30:42.820 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:30:46.200 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"]
22:30:46.362 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:30:46.363 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:30:46.363 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:30:46.370 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:30:46.374 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
22:30:46.375 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
22:30:46.541 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 44ea1d23-6be2-4823-8875-9921cc4f43d3
22:30:46.543 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->44ea1d23-6be2-4823-8875-9921cc4f43d3
22:30:46.544 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [44ea1d23-6be2-4823-8875-9921cc4f43d3] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:30:46.544 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [44ea1d23-6be2-4823-8875-9921cc4f43d3] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:30:46.544 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [44ea1d23-6be2-4823-8875-9921cc4f43d3] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:30:46.545 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [44ea1d23-6be2-4823-8875-9921cc4f43d3] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
22:30:46.546 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:30:46.689 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [44ea1d23-6be2-4823-8875-9921cc4f43d3] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727015446672_117.143.60.138_60739
22:30:46.689 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [44ea1d23-6be2-4823-8875-9921cc4f43d3] Notify connected event to listeners.
22:30:46.689 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [44ea1d23-6be2-4823-8875-9921cc4f43d3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:30:46.689 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:30:46.690 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [44ea1d23-6be2-4823-8875-9921cc4f43d3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000002e7c14318a8
22:30:46.692 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
22:30:46.713 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.107:9500 register finished
22:30:46.857 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 12.408 seconds (process running for 12.986)
22:30:46.864 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:30:46.865 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:30:46.865 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP
22:30:46.872 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
22:30:46.873 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
22:30:46.874 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP
22:30:46.875 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
22:30:46.875 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
22:30:46.876 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth+DEFAULT_GROUP
22:30:46.876 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
22:30:46.877 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
22:30:59.062 [http-nio-9500-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
22:49:07.567 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:49:07.568 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
22:49:07.616 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
22:49:07.617 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
22:49:07.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
22:49:07.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
22:49:07.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
22:49:07.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
22:49:07.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
22:49:07.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
22:49:07.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
22:49:07.619 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
22:49:07.619 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
22:49:07.619 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
22:49:07.619 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->44ea1d23-6be2-4823-8875-9921cc4f43d3
22:49:07.619 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@3aadf602[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 366]
22:49:07.620 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
22:49:07.620 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3dd59604[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:49:07.620 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727015446672_117.143.60.138_60739
22:49:07.625 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7d26d82e[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 234]
22:49:07.625 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->44ea1d23-6be2-4823-8875-9921cc4f43d3
22:49:07.625 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
22:49:07.626 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
22:49:07.626 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop

View File

@ -0,0 +1,774 @@
08:14:47.194 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
08:14:50.357 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"]
08:14:50.359 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
08:14:50.360 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
08:14:50.452 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
08:14:52.521 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
08:14:56.457 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"]
08:14:56.606 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
08:14:56.607 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
08:14:56.608 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
08:14:56.614 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
08:14:56.619 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
08:14:56.619 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
08:14:56.822 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f118d4ab-90df-4f15-b0f3-3be12e9e47b0
08:14:56.825 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->f118d4ab-90df-4f15-b0f3-3be12e9e47b0
08:14:56.826 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
08:14:56.826 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
08:14:56.826 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
08:14:56.828 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
08:14:56.829 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:14:56.971 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727050497268_117.143.60.138_63975
08:14:56.971 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
08:14:56.971 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:14:56.972 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
08:14:56.972 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001d424431eb8
08:14:56.973 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
08:14:56.993 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.107:9500 register finished
08:14:57.158 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 13.497 seconds (process running for 14.205)
08:14:57.175 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
08:14:57.176 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
08:14:57.177 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP
08:14:57.197 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
08:14:57.199 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
08:14:57.200 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP
08:14:57.201 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
08:14:57.201 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
08:14:57.202 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth+DEFAULT_GROUP
08:14:57.202 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
08:14:57.203 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
08:15:18.347 [http-nio-9500-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
08:59:00.621 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server healthy check fail, currentConnection = 1727050486867_117.143.60.138_63960
08:59:00.622 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
08:59:00.622 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:03.745 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:06.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053145133_117.143.60.138_57779
08:59:06.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050486867_117.143.60.138_63960
08:59:06.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050486867_117.143.60.138_63960
08:59:06.069 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify disconnected event to listeners
08:59:06.069 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] DisConnected,clear listen context...
08:59:06.069 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify connected event to listeners.
08:59:06.070 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Connected,notify listen context...
08:59:12.606 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server check success, currentServer is 110.42.213.184:8848
08:59:21.547 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server check success, currentServer is 110.42.213.184:8848
08:59:38.614 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server healthy check fail, currentConnection = 1727050497268_117.143.60.138_63975
08:59:38.614 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
08:59:38.614 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:41.730 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:44.746 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:44.948 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:47.957 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:48.270 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:51.280 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:51.689 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:54.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:55.218 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:58.220 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:58.830 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:00.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053200464_117.143.60.138_57892
09:00:00.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050497268_117.143.60.138_63975
09:00:00.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050497268_117.143.60.138_63975
09:00:00.364 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:00:00.365 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:00:00.365 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:00:00.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server check success, currentServer is 110.42.213.184:8848
09:00:01.045 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:00:01.555 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server check success, currentServer is 110.42.213.184:8848
09:00:34.198 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server healthy check fail, currentConnection = 1727053200464_117.143.60.138_57892
09:00:34.198 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:00:34.198 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:37.310 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:40.314 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:40.517 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:43.519 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:43.828 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:46.842 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:47.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:50.251 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:50.765 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:53.773 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:54.382 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:54.505 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server healthy check fail, currentConnection = 1727053145133_117.143.60.138_57779
09:00:54.505 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:00:54.505 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:55.670 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053255705_117.143.60.138_58044
09:00:55.670 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053145133_117.143.60.138_57779
09:00:55.670 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053145133_117.143.60.138_57779
09:00:55.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify disconnected event to listeners
09:00:55.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] DisConnected,clear listen context...
09:00:55.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify connected event to listeners.
09:00:55.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Connected,notify listen context...
09:00:57.396 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:58.098 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:01.108 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:01.917 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:03.993 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053264096_117.143.60.138_58081
09:01:03.993 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053200464_117.143.60.138_57892
09:01:03.993 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053200464_117.143.60.138_57892
09:01:03.993 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:01:03.993 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:01:03.993 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:01:04.771 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:02:02.953 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server healthy check fail, currentConnection = 1727053264096_117.143.60.138_58081
09:02:02.953 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:02:02.953 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:06.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:09.077 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:02:09.278 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:10.903 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053331089_117.143.60.138_58405
09:02:10.903 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053264096_117.143.60.138_58081
09:02:10.903 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053264096_117.143.60.138_58081
09:02:10.903 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:02:10.904 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:02:10.904 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:02:11.622 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:02:17.637 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:02:20.647 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:02:23.257 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:02:23.257 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:23.662 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:02:24.926 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053344576_117.143.60.138_58458
09:02:24.926 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053331089_117.143.60.138_58405
09:02:24.926 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053331089_117.143.60.138_58405
09:02:24.926 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:02:24.927 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:02:24.927 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:02:25.888 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server check success, currentServer is 110.42.213.184:8848
09:02:26.674 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:02:59.519 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server healthy check fail, currentConnection = 1727053255705_117.143.60.138_58044
09:02:59.519 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:02:59.519 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:02.623 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:04.408 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053384268_117.143.60.138_51263
09:03:04.408 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053255705_117.143.60.138_58044
09:03:04.408 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053255705_117.143.60.138_58044
09:03:04.408 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify disconnected event to listeners
09:03:04.408 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] DisConnected,clear listen context...
09:03:04.408 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify connected event to listeners.
09:03:04.408 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Connected,notify listen context...
09:03:37.353 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server healthy check fail, currentConnection = 1727053344576_117.143.60.138_58458
09:03:37.353 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:03:37.353 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:39.316 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053419054_117.143.60.138_51359
09:03:39.316 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053344576_117.143.60.138_58458
09:03:39.316 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053344576_117.143.60.138_58458
09:03:39.316 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:03:39.317 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:03:39.317 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:03:39.363 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:03:40.410 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server check success, currentServer is 110.42.213.184:8848
09:03:40.412 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:03:40.413 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:43.532 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:43.815 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:03:46.546 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:46.748 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:46.827 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:03:48.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053427395_117.143.60.138_51376
09:03:48.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053419054_117.143.60.138_51359
09:03:48.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053419054_117.143.60.138_51359
09:03:48.286 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:03:48.287 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:03:48.287 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:03:49.842 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:03:55.870 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:03:58.884 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:04:01.899 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:04:04.905 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:04:05.314 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:04:05.314 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:04:07.907 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:04:08.049 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053446004_117.143.60.138_51435
09:04:08.049 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053427395_117.143.60.138_51376
09:04:08.049 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053427395_117.143.60.138_51376
09:04:08.049 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:04:08.049 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:04:08.049 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:04:10.910 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:04:15.524 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server check success, currentServer is 110.42.213.184:8848
09:04:16.931 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:04:52.483 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server healthy check fail, currentConnection = 1727053384268_117.143.60.138_51263
09:04:52.483 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:04:52.483 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:04:55.603 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:04:58.616 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:04:58.817 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:01.819 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:05:02.121 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:03.383 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053502768_117.143.60.138_51601
09:05:03.383 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053384268_117.143.60.138_51263
09:05:03.383 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053384268_117.143.60.138_51263
09:05:03.383 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify disconnected event to listeners
09:05:03.383 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] DisConnected,clear listen context...
09:05:03.383 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify connected event to listeners.
09:05:03.383 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Connected,notify listen context...
09:05:04.272 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:05:04.272 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:07.380 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:10.399 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:05:10.601 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:13.606 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:05:13.920 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:16.922 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:05:17.336 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:19.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053519662_117.143.60.138_50540
09:05:19.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053502768_117.143.60.138_51601
09:05:19.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053502768_117.143.60.138_51601
09:05:19.538 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify disconnected event to listeners
09:05:19.538 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] DisConnected,clear listen context...
09:05:19.538 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify connected event to listeners.
09:05:19.538 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Connected,notify listen context...
09:05:26.176 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server check success, currentServer is 110.42.213.184:8848
09:05:38.778 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server healthy check fail, currentConnection = 1727053446004_117.143.60.138_51435
09:05:38.778 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:05:38.778 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:41.903 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:43.480 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053543488_117.143.60.138_50019
09:05:43.480 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053446004_117.143.60.138_51435
09:05:43.480 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053446004_117.143.60.138_51435
09:05:43.480 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:05:43.480 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:05:43.480 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:05:44.371 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:05:46.767 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server check success, currentServer is 110.42.213.184:8848
09:06:48.211 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server healthy check fail, currentConnection = 1727053543488_117.143.60.138_50019
09:06:48.211 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:06:48.211 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:06:49.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053608877_117.143.60.138_64204
09:06:49.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053543488_117.143.60.138_50019
09:06:49.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053543488_117.143.60.138_50019
09:06:49.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:06:49.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:06:49.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:06:49.933 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:06:52.163 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:06:52.164 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:06:55.175 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:06:58.182 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:06:58.182 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:06:59.863 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053618875_117.143.60.138_64211
09:06:59.864 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053608877_117.143.60.138_64204
09:06:59.865 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053608877_117.143.60.138_64204
09:06:59.868 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:06:59.868 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:06:59.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:07:01.189 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:08:28.919 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
09:08:28.919 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
09:08:29.147 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
09:08:29.159 [boundedElastic-2] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
09:08:29.160 [boundedElastic-2] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
09:08:29.690 [nacos-grpc-client-executor-110.42.213.184-790] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Receive server push request, request = NotifySubscriberRequest, requestId = 3623
09:08:29.692 [nacos-grpc-client-executor-110.42.213.184-790] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Ack server push request, request = NotifySubscriberRequest, requestId = 3623
09:10:11.191 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
09:10:11.191 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
09:10:11.349 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->f118d4ab-90df-4f15-b0f3-3be12e9e47b0
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@382c9b1[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1095]
09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2982b53e[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053618875_117.143.60.138_64211
09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@785faa33[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 811]
09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->f118d4ab-90df-4f15-b0f3-3be12e9e47b0
09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
09:10:28.921 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
09:10:32.457 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"]
09:10:32.459 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:10:32.459 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
09:10:32.563 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:10:34.213 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:10:37.143 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"]
09:10:37.285 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
09:10:37.286 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
09:10:37.286 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
09:10:37.293 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
09:10:37.299 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:10:37.299 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:10:39.172 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of b34d68e3-407a-4a29-958b-0a1a83b50230
09:10:39.174 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->b34d68e3-407a-4a29-958b-0a1a83b50230
09:10:39.176 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:10:39.177 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:10:39.177 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:10:39.179 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
09:10:39.179 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:10:41.515 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727053840882_117.143.60.138_55808
09:10:41.515 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:10:41.515 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Notify connected event to listeners.
09:10:41.515 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001a093432588
09:10:41.515 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:10:41.516 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
09:10:42.188 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:10:42.659 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.107:9500 register finished
09:10:42.794 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 20.227 seconds (process running for 20.833)
09:10:42.801 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
09:10:42.801 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
09:10:42.803 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP
09:10:42.810 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
09:10:42.810 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
09:10:42.811 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP
09:10:42.811 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
09:10:42.811 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
09:10:42.812 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth+DEFAULT_GROUP
09:10:42.812 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
09:10:42.812 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
09:10:46.200 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server check success, currentServer is 110.42.213.184:8848
09:11:00.252 [http-nio-9500-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:30:50.634 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
09:30:50.635 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
09:30:50.690 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
09:30:50.691 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
09:30:51.311 [nacos-grpc-client-executor-110.42.213.184-269] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Receive server push request, request = NotifySubscriberRequest, requestId = 3671
09:30:51.311 [nacos-grpc-client-executor-110.42.213.184-269] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Ack server push request, request = NotifySubscriberRequest, requestId = 3671
09:49:46.089 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server check success, currentServer is 110.42.213.184:8848
09:56:59.956 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server healthy check fail, currentConnection = 1727053826662_117.143.60.138_55786
09:56:59.956 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:56:59.956 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:57:03.077 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:57:05.138 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056623812_117.143.60.138_55331
09:57:05.138 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053826662_117.143.60.138_55786
09:57:05.138 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053826662_117.143.60.138_55786
09:57:05.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify disconnected event to listeners
09:57:05.139 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b3a11627-58c6-4588-837d-760232986779_config-0] DisConnected,clear listen context...
09:57:05.139 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify connected event to listeners.
09:57:05.139 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b3a11627-58c6-4588-837d-760232986779_config-0] Connected,notify listen context...
09:57:10.468 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:57:10.468 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:57:11.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Success to connect a server [110.42.213.184:8848], connectionId = 1727056631310_117.143.60.138_55350
09:57:11.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053840882_117.143.60.138_55808
09:57:11.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053840882_117.143.60.138_55808
09:57:11.139 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Notify disconnected event to listeners
09:57:11.140 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Notify connected event to listeners.
09:57:11.140 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:57:11.247 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:57:11.485 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
09:57:13.436 [nacos-grpc-client-executor-110.42.213.184-588] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Receive server push request, request = NotifySubscriberRequest, requestId = 3695
09:57:13.437 [nacos-grpc-client-executor-110.42.213.184-588] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Ack server push request, request = NotifySubscriberRequest, requestId = 3695
09:58:02.795 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server healthy check fail, currentConnection = 1727056623812_117.143.60.138_55331
09:58:02.795 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:58:02.795 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:58:03.441 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056683563_117.143.60.138_55432
09:58:03.441 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056623812_117.143.60.138_55331
09:58:03.441 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056623812_117.143.60.138_55331
09:58:03.441 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify disconnected event to listeners
09:58:03.442 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b3a11627-58c6-4588-837d-760232986779_config-0] DisConnected,clear listen context...
09:58:03.442 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify connected event to listeners.
09:58:03.442 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b3a11627-58c6-4588-837d-760232986779_config-0] Connected,notify listen context...
09:58:08.759 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Server check success, currentServer is 110.42.213.184:8848
09:59:11.932 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server healthy check fail, currentConnection = 1727056683563_117.143.60.138_55432
09:59:11.932 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:59:11.932 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:59:12.672 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056752751_117.143.60.138_55537
09:59:12.672 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056683563_117.143.60.138_55432
09:59:12.672 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056683563_117.143.60.138_55432
09:59:12.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify disconnected event to listeners
09:59:12.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b3a11627-58c6-4588-837d-760232986779_config-0] DisConnected,clear listen context...
09:59:12.673 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify connected event to listeners.
09:59:12.673 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b3a11627-58c6-4588-837d-760232986779_config-0] Connected,notify listen context...
09:59:48.592 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Server check success, currentServer is 110.42.213.184:8848
10:01:38.448 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server healthy check fail, currentConnection = 1727056752751_117.143.60.138_55537
10:01:38.448 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
10:01:38.448 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
10:01:40.861 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056899186_117.143.60.138_55926
10:01:40.862 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056752751_117.143.60.138_55537
10:01:40.862 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056752751_117.143.60.138_55537
10:01:40.862 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify disconnected event to listeners
10:01:40.862 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b3a11627-58c6-4588-837d-760232986779_config-0] DisConnected,clear listen context...
10:01:40.862 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify connected event to listeners.
10:01:40.862 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b3a11627-58c6-4588-837d-760232986779_config-0] Connected,notify listen context...
10:03:24.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server healthy check fail, currentConnection = 1727056899186_117.143.60.138_55926
10:03:24.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
10:03:24.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
10:03:26.115 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727057005276_117.143.60.138_56190
10:03:26.115 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056899186_117.143.60.138_55926
10:03:26.115 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056899186_117.143.60.138_55926
10:03:26.115 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify disconnected event to listeners
10:03:26.115 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b3a11627-58c6-4588-837d-760232986779_config-0] DisConnected,clear listen context...
10:03:26.115 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify connected event to listeners.
10:03:26.115 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b3a11627-58c6-4588-837d-760232986779_config-0] Connected,notify listen context...
10:37:30.065 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
10:37:30.067 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
10:37:30.134 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
10:37:30.136 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
10:37:30.137 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
10:37:30.137 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
10:37:30.138 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
10:37:30.138 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
10:37:30.138 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
10:37:30.138 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
10:37:30.138 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
10:37:30.139 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
10:37:30.139 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
10:37:30.139 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
10:37:30.139 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->b34d68e3-407a-4a29-958b-0a1a83b50230
10:37:30.139 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@611c81c2[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1731]
10:37:30.140 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
10:37:30.140 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@575072a6[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
10:37:30.140 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056631310_117.143.60.138_55350
10:37:30.141 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@19d1c4f2[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 1062]
10:37:30.141 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->b34d68e3-407a-4a29-958b-0a1a83b50230
10:37:30.141 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
10:37:30.141 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
10:37:30.142 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
11:05:17.098 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
11:05:20.421 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"]
11:05:20.423 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
11:05:20.424 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
11:05:20.500 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
11:05:22.041 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
11:05:25.850 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"]
11:05:26.031 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
11:05:26.031 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
11:05:26.032 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
11:05:26.039 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
11:05:26.044 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
11:05:26.044 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
11:05:26.198 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 2307465d-cf46-4512-a47c-2446e808935c
11:05:26.201 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->2307465d-cf46-4512-a47c-2446e808935c
11:05:26.201 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
11:05:26.202 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
11:05:26.202 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
11:05:26.203 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
11:05:26.204 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
11:05:26.472 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727060726887_58.247.23.179_62227
11:05:26.472 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:05:26.473 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Notify connected event to listeners.
11:05:26.473 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001b481431470
11:05:26.473 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
11:05:26.475 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-auth with instance Instance{instanceId='null', ip='192.168.54.217', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
11:05:26.524 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 192.168.54.217:9500 register finished
11:05:26.697 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 14.226 seconds (process running for 14.853)
11:05:26.718 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
11:05:26.719 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
11:05:26.720 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP
11:05:26.738 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
11:05:26.739 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
11:05:26.741 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP
11:05:26.742 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
11:05:26.743 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
11:05:26.745 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth+DEFAULT_GROUP
11:05:26.745 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
11:05:26.746 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
11:05:57.506 [http-nio-9500-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
11:08:14.615 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
11:08:14.616 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
11:08:14.683 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"192.168.54.217","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
11:08:14.685 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"192.168.54.217","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
11:08:15.203 [nacos-grpc-client-executor-110.42.213.184-52] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Receive server push request, request = NotifySubscriberRequest, requestId = 3750
11:08:15.204 [nacos-grpc-client-executor-110.42.213.184-52] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Ack server push request, request = NotifySubscriberRequest, requestId = 3750
12:15:13.718 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Server check success, currentServer is 110.42.213.184:8848
12:40:09.883 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Server healthy check fail, currentConnection = 1727060726887_58.247.23.179_62227
12:40:09.883 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Try to reconnect to a new server, server is not appointed, will choose a random server.
12:40:09.884 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:13.005 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:16.015 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:40:16.217 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:19.230 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:40:19.539 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:19.555 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Server healthy check fail, currentConnection = 1727060716052_58.247.23.179_62225
12:40:19.555 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
12:40:19.556 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:22.553 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:40:22.678 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:22.957 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:24.440 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Success to connect a server [110.42.213.184:8848], connectionId = 1727066424949_58.247.23.179_62495
12:40:24.440 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727060726887_58.247.23.179_62227
12:40:24.440 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727060726887_58.247.23.179_62227
12:40:24.441 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Notify disconnected event to listeners
12:40:24.443 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Notify connected event to listeners.
12:40:24.444 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
12:40:24.486 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727066423802_58.247.23.179_32706
12:40:24.486 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727060716052_58.247.23.179_62225
12:40:24.486 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727060716052_58.247.23.179_62225
12:40:24.487 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Notify disconnected event to listeners
12:40:24.487 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] DisConnected,clear listen context...
12:40:24.487 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Notify connected event to listeners.
12:40:24.487 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Connected,notify listen context...
12:40:24.899 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Server check success, currentServer is 110.42.213.184:8848
12:40:27.417 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
12:40:27.460 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
12:40:27.582 [nacos-grpc-client-executor-110.42.213.184-1170] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Receive server push request, request = NotifySubscriberRequest, requestId = 3784
12:40:27.583 [nacos-grpc-client-executor-110.42.213.184-1170] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Ack server push request, request = NotifySubscriberRequest, requestId = 3784
12:50:47.762 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Server healthy check fail, currentConnection = 1727066423802_58.247.23.179_32706
12:50:47.762 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
12:50:47.763 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:49.277 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Server healthy check fail, currentConnection = 1727066424949_58.247.23.179_62495
12:50:49.277 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Try to reconnect to a new server, server is not appointed, will choose a random server.
12:50:49.278 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:50.881 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:52.396 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:52.416 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:52.629 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:52.633 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:52.942 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:52.946 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:53.349 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:53.353 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:53.859 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:53.864 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:53.890 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:54.093 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:54.097 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:54.399 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:54.403 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:54.471 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:54.477 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:54.813 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:54.817 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:55.177 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:55.182 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:55.331 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:55.335 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:55.936 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:55.940 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:55.983 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:55.986 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:56.653 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:56.656 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:56.901 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:56.904 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:57.465 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:57.469 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:57.917 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:57.920 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:58.370 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:58.373 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:58.841 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
12:50:58.928 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
12:50:58.938 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
12:50:59.029 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:59.037 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:59.374 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:59.378 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:00.246 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:00.250 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:00.480 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:00.484 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:01.556 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:01.695 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:04.563 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:04.696 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:04.998 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
12:51:04.998 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
12:51:05.974 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:06.005 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:06.211 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:06.240 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:07.649 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:07.726 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:07.889 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:07.969 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:09.399 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:09.570 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:09.637 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:09.809 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Fail to connect server, after trying 16 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:11.252 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:11.408 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727067071997_117.143.60.138_52865
12:51:11.408 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727066423802_58.247.23.179_32706
12:51:11.408 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727066423802_58.247.23.179_32706
12:51:11.408 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Notify disconnected event to listeners
12:51:11.408 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] DisConnected,clear listen context...
12:51:11.408 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Notify connected event to listeners.
12:51:11.408 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Connected,notify listen context...
12:51:11.518 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:11.556 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Server check success, currentServer is 110.42.213.184:8848
12:51:11.674 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Success to connect a server [110.42.213.184:8848], connectionId = 1727067072269_117.143.60.138_52874
12:51:11.674 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727066424949_58.247.23.179_62495
12:51:11.674 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727066424949_58.247.23.179_62495
12:51:11.674 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Notify disconnected event to listeners
12:51:11.674 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Notify connected event to listeners.
12:51:11.674 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
12:51:11.756 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Server check success, currentServer is 110.42.213.184:8848
12:51:14.290 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
12:51:14.304 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
12:51:14.787 [nacos-grpc-client-executor-110.42.213.184-1342] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Receive server push request, request = NotifySubscriberRequest, requestId = 3821
12:51:14.788 [nacos-grpc-client-executor-110.42.213.184-1342] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Ack server push request, request = NotifySubscriberRequest, requestId = 3821
12:51:17.904 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
12:51:17.904 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
12:51:17.926 [lettuce-nioEventLoop-4-14] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
12:51:17.926 [lettuce-nioEventLoop-4-13] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
14:25:23.833 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Server healthy check fail, currentConnection = 1727067072269_117.143.60.138_52874
14:25:23.834 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Try to reconnect to a new server, server is not appointed, will choose a random server.
14:25:23.834 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:25:24.739 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Success to connect a server [110.42.213.184:8848], connectionId = 1727072724854_117.143.60.138_63541
14:25:24.739 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727067072269_117.143.60.138_52874
14:25:24.739 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727067072269_117.143.60.138_52874
14:25:24.739 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Notify disconnected event to listeners
14:25:24.739 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Notify connected event to listeners.
14:25:24.739 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
14:25:26.958 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
14:25:27.497 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
14:25:29.465 [nacos-grpc-client-executor-110.42.213.184-2421] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Receive server push request, request = NotifySubscriberRequest, requestId = 3844
14:25:29.465 [nacos-grpc-client-executor-110.42.213.184-2421] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Ack server push request, request = NotifySubscriberRequest, requestId = 3844
14:31:25.261 [nacos-grpc-client-executor-110.42.213.184-2487] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Receive server push request, request = NotifySubscriberRequest, requestId = 3864
14:31:25.263 [nacos-grpc-client-executor-110.42.213.184-2487] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Ack server push request, request = NotifySubscriberRequest, requestId = 3864
14:31:45.201 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Server healthy check fail, currentConnection = 1727067071997_117.143.60.138_52865
14:31:45.201 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
14:31:45.201 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:31:48.322 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:31:48.947 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727073109470_117.143.60.138_65432
14:31:48.947 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727067071997_117.143.60.138_52865
14:31:48.947 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727067071997_117.143.60.138_52865
14:31:48.947 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Notify disconnected event to listeners
14:31:48.948 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] DisConnected,clear listen context...
14:31:48.948 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Notify connected event to listeners.
14:31:48.948 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Connected,notify listen context...
14:33:10.603 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Server healthy check fail, currentConnection = 1727072724854_117.143.60.138_63541
14:33:10.603 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Try to reconnect to a new server, server is not appointed, will choose a random server.
14:33:10.603 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:33:13.717 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:33:14.945 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Success to connect a server [110.42.213.184:8848], connectionId = 1727073194841_117.143.60.138_65517
14:33:14.945 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727072724854_117.143.60.138_63541
14:33:14.945 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727072724854_117.143.60.138_63541
14:33:14.945 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Notify disconnected event to listeners
14:33:14.945 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Notify connected event to listeners.
14:33:14.945 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
14:33:16.894 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
14:33:17.607 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
14:33:21.013 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Server check success, currentServer is 110.42.213.184:8848
14:33:21.594 [nacos-grpc-client-executor-110.42.213.184-2520] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Receive server push request, request = NotifySubscriberRequest, requestId = 3901
14:33:21.594 [nacos-grpc-client-executor-110.42.213.184-2520] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Ack server push request, request = NotifySubscriberRequest, requestId = 3901
14:33:23.613 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
14:34:04.964 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Server healthy check fail, currentConnection = 1727073194841_117.143.60.138_65517
14:34:04.964 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Try to reconnect to a new server, server is not appointed, will choose a random server.
14:34:04.964 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:34:05.965 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Success to connect a server [110.42.213.184:8848], connectionId = 1727073246042_117.143.60.138_49182
14:34:05.965 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727073194841_117.143.60.138_65517
14:34:05.965 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727073194841_117.143.60.138_65517
14:34:05.965 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Notify disconnected event to listeners
14:34:05.965 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Notify connected event to listeners.
14:34:05.965 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
14:34:08.850 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
14:34:09.482 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
14:34:10.257 [nacos-grpc-client-executor-110.42.213.184-2539] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Receive server push request, request = NotifySubscriberRequest, requestId = 3931
14:34:10.260 [nacos-grpc-client-executor-110.42.213.184-2539] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Ack server push request, request = NotifySubscriberRequest, requestId = 3931
14:34:27.550 [nacos-grpc-client-executor-110.42.213.184-2543] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Receive server push request, request = NotifySubscriberRequest, requestId = 3933
14:34:27.550 [nacos-grpc-client-executor-110.42.213.184-2543] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Ack server push request, request = NotifySubscriberRequest, requestId = 3933
16:22:04.743 [nacos-grpc-client-executor-110.42.213.184-3750] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Receive server push request, request = NotifySubscriberRequest, requestId = 3946
16:22:04.763 [nacos-grpc-client-executor-110.42.213.184-3750] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"192.168.54.217","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
16:22:04.763 [nacos-grpc-client-executor-110.42.213.184-3750] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> []
16:22:04.765 [nacos-grpc-client-executor-110.42.213.184-3750] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Ack server push request, request = NotifySubscriberRequest, requestId = 3946
16:22:06.778 [nacos-grpc-client-executor-110.42.213.184-3751] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Receive server push request, request = NotifySubscriberRequest, requestId = 3950
16:22:06.779 [nacos-grpc-client-executor-110.42.213.184-3751] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"192.168.54.217","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
16:22:06.779 [nacos-grpc-client-executor-110.42.213.184-3751] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"192.168.54.217","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
16:22:06.780 [nacos-grpc-client-executor-110.42.213.184-3751] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Ack server push request, request = NotifySubscriberRequest, requestId = 3950
16:23:10.177 [nacos-grpc-client-executor-110.42.213.184-3763] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Receive server push request, request = NotifySubscriberRequest, requestId = 3980
16:23:10.177 [nacos-grpc-client-executor-110.42.213.184-3763] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Ack server push request, request = NotifySubscriberRequest, requestId = 3980
17:17:50.997 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Server healthy check fail, currentConnection = 1727073109470_117.143.60.138_65432
17:17:50.999 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
17:17:50.999 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
17:17:54.116 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
17:17:57.078 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727083077785_117.143.60.138_65338
17:17:57.078 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727073109470_117.143.60.138_65432
17:17:57.078 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727073109470_117.143.60.138_65432
17:17:57.078 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Notify disconnected event to listeners
17:17:57.078 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] DisConnected,clear listen context...
17:17:57.078 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Notify connected event to listeners.
17:17:57.078 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Connected,notify listen context...
17:18:04.683 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [923e62c1-df30-40b1-b7fd-742605c39f2b_config-0] Server check success, currentServer is 110.42.213.184:8848
17:19:24.332 [nacos-grpc-client-executor-110.42.213.184-4384] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Receive server push request, request = NotifySubscriberRequest, requestId = 4006
17:19:24.334 [nacos-grpc-client-executor-110.42.213.184-4384] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Ack server push request, request = NotifySubscriberRequest, requestId = 4006
17:19:33.483 [nacos-grpc-client-executor-110.42.213.184-4386] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Receive server push request, request = NotifySubscriberRequest, requestId = 4009
17:19:33.485 [nacos-grpc-client-executor-110.42.213.184-4386] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Ack server push request, request = NotifySubscriberRequest, requestId = 4009
19:21:49.877 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
19:21:49.879 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-auth with instance: Instance{instanceId='null', ip='192.168.54.217', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
19:21:49.952 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
19:21:49.953 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
19:21:49.954 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
19:21:49.954 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
19:21:49.954 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
19:21:49.954 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
19:21:49.954 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
19:21:49.954 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
19:21:49.955 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
19:21:49.955 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
19:21:49.955 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
19:21:49.955 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
19:21:49.955 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->2307465d-cf46-4512-a47c-2446e808935c
19:21:49.956 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@b91ba44[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 9897]
19:21:49.956 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
19:21:49.957 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5eb83815[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
19:21:49.957 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727073246042_117.143.60.138_49182
19:21:49.960 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6a0dc71f[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 5784]
19:21:49.960 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->2307465d-cf46-4512-a47c-2446e808935c
19:21:49.961 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
19:21:49.962 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
19:21:49.962 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2307465d-cf46-4512-a47c-2446e808935c] Server healthy check fail, currentConnection = 1727073246042_117.143.60.138_49182
19:21:49.962 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
22:26:09.962 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:26:14.164 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"]
22:26:14.167 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:26:14.168 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:26:14.313 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:26:16.913 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:26:21.551 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"]
22:26:21.775 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:26:21.776 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:26:21.778 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:26:21.788 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:26:21.794 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
22:26:21.795 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
22:26:22.030 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 1f154547-077d-471a-a6ee-edbbf5f0c756
22:26:22.033 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->1f154547-077d-471a-a6ee-edbbf5f0c756
22:26:22.033 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1f154547-077d-471a-a6ee-edbbf5f0c756] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:26:22.033 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1f154547-077d-471a-a6ee-edbbf5f0c756] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:26:22.034 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1f154547-077d-471a-a6ee-edbbf5f0c756] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:26:22.035 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1f154547-077d-471a-a6ee-edbbf5f0c756] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
22:26:22.035 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:22.191 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1f154547-077d-471a-a6ee-edbbf5f0c756] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727101582287_117.143.60.138_56800
22:26:22.192 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1f154547-077d-471a-a6ee-edbbf5f0c756] Notify connected event to listeners.
22:26:22.192 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:26:22.192 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1f154547-077d-471a-a6ee-edbbf5f0c756] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:26:22.192 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1f154547-077d-471a-a6ee-edbbf5f0c756] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000024ebf4366d8
22:26:22.194 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.59', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
22:26:22.218 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.59:9500 register finished
22:26:22.409 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 16.936 seconds (process running for 17.644)
22:26:22.422 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:26:22.422 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:26:22.423 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP
22:26:22.439 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
22:26:22.439 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
22:26:22.440 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP
22:26:22.441 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
22:26:22.441 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
22:26:22.442 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth+DEFAULT_GROUP
22:26:22.442 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
22:26:22.443 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
22:26:51.294 [http-nio-9500-exec-2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
22:27:01.729 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
22:27:01.729 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
22:27:01.750 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-system -> []
22:27:01.754 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> []
22:27:02.576 [nacos-grpc-client-executor-110.42.213.184-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1f154547-077d-471a-a6ee-edbbf5f0c756] Receive server push request, request = NotifySubscriberRequest, requestId = 4028
22:27:02.578 [nacos-grpc-client-executor-110.42.213.184-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1f154547-077d-471a-a6ee-edbbf5f0c756] Ack server push request, request = NotifySubscriberRequest, requestId = 4028
22:27:18.844 [nacos-grpc-client-executor-110.42.213.184-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1f154547-077d-471a-a6ee-edbbf5f0c756] Receive server push request, request = NotifySubscriberRequest, requestId = 4029
22:27:18.846 [nacos-grpc-client-executor-110.42.213.184-22] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.59","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
22:27:18.846 [nacos-grpc-client-executor-110.42.213.184-22] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.59","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
22:27:18.847 [nacos-grpc-client-executor-110.42.213.184-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1f154547-077d-471a-a6ee-edbbf5f0c756] Ack server push request, request = NotifySubscriberRequest, requestId = 4029

View File

@ -1,424 +1,75 @@
08:14:47.194 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
08:14:50.357 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"]
08:14:50.359 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
08:14:50.360 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
08:14:50.452 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
08:14:52.521 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
08:14:56.457 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"]
08:14:56.606 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
08:14:56.607 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
08:14:56.608 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
08:14:56.614 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
08:14:56.619 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
08:14:56.619 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
08:14:56.822 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f118d4ab-90df-4f15-b0f3-3be12e9e47b0
08:14:56.825 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->f118d4ab-90df-4f15-b0f3-3be12e9e47b0
08:14:56.826 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
08:14:56.826 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
08:14:56.826 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
08:14:56.828 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
08:14:56.829 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:14:56.971 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727050497268_117.143.60.138_63975
08:14:56.971 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
08:14:56.971 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:14:56.972 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
08:14:56.972 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001d424431eb8
08:14:56.973 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
08:14:56.993 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.107:9500 register finished
08:14:57.158 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 13.497 seconds (process running for 14.205)
08:14:57.175 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
08:14:57.176 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
08:14:57.177 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP
08:14:57.197 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
08:14:57.199 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
08:14:57.200 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP
08:14:57.201 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
08:14:57.201 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
08:14:57.202 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth+DEFAULT_GROUP
08:14:57.202 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
08:14:57.203 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
08:15:18.347 [http-nio-9500-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
08:59:00.621 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server healthy check fail, currentConnection = 1727050486867_117.143.60.138_63960
08:59:00.622 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
08:59:00.622 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:03.745 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:06.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053145133_117.143.60.138_57779
08:59:06.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050486867_117.143.60.138_63960
08:59:06.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050486867_117.143.60.138_63960
08:59:06.069 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify disconnected event to listeners
08:59:06.069 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] DisConnected,clear listen context...
08:59:06.069 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify connected event to listeners.
08:59:06.070 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Connected,notify listen context...
08:59:12.606 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server check success, currentServer is 110.42.213.184:8848
08:59:21.547 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server check success, currentServer is 110.42.213.184:8848
08:59:38.614 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server healthy check fail, currentConnection = 1727050497268_117.143.60.138_63975
08:59:38.614 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
08:59:38.614 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:41.730 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:44.746 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:44.948 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:47.957 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:48.270 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:51.280 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:51.689 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:54.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:55.218 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:58.220 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:58.830 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:00.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053200464_117.143.60.138_57892
09:00:00.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050497268_117.143.60.138_63975
09:00:00.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050497268_117.143.60.138_63975
09:00:00.364 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:00:00.365 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:00:00.365 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:00:00.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server check success, currentServer is 110.42.213.184:8848
09:00:01.045 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:00:01.555 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server check success, currentServer is 110.42.213.184:8848
09:00:34.198 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server healthy check fail, currentConnection = 1727053200464_117.143.60.138_57892
09:00:34.198 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:00:34.198 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:37.310 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:40.314 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:40.517 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:43.519 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:43.828 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:46.842 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:47.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:50.251 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:50.765 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:53.773 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:54.382 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:54.505 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server healthy check fail, currentConnection = 1727053145133_117.143.60.138_57779
09:00:54.505 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:00:54.505 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:55.670 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053255705_117.143.60.138_58044
09:00:55.670 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053145133_117.143.60.138_57779
09:00:55.670 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053145133_117.143.60.138_57779
09:00:55.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify disconnected event to listeners
09:00:55.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] DisConnected,clear listen context...
09:00:55.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify connected event to listeners.
09:00:55.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Connected,notify listen context...
09:00:57.396 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:58.098 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:01.108 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:01.917 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:03.993 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053264096_117.143.60.138_58081
09:01:03.993 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053200464_117.143.60.138_57892
09:01:03.993 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053200464_117.143.60.138_57892
09:01:03.993 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:01:03.993 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:01:03.993 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:01:04.771 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:02:02.953 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server healthy check fail, currentConnection = 1727053264096_117.143.60.138_58081
09:02:02.953 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:02:02.953 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:06.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:09.077 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:02:09.278 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:10.903 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053331089_117.143.60.138_58405
09:02:10.903 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053264096_117.143.60.138_58081
09:02:10.903 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053264096_117.143.60.138_58081
09:02:10.903 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:02:10.904 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:02:10.904 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:02:11.622 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:02:17.637 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:02:20.647 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:02:23.257 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:02:23.257 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:23.662 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:02:24.926 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053344576_117.143.60.138_58458
09:02:24.926 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053331089_117.143.60.138_58405
09:02:24.926 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053331089_117.143.60.138_58405
09:02:24.926 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:02:24.927 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:02:24.927 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:02:25.888 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server check success, currentServer is 110.42.213.184:8848
09:02:26.674 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:02:59.519 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server healthy check fail, currentConnection = 1727053255705_117.143.60.138_58044
09:02:59.519 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:02:59.519 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:02.623 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:04.408 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053384268_117.143.60.138_51263
09:03:04.408 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053255705_117.143.60.138_58044
09:03:04.408 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053255705_117.143.60.138_58044
09:03:04.408 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify disconnected event to listeners
09:03:04.408 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] DisConnected,clear listen context...
09:03:04.408 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify connected event to listeners.
09:03:04.408 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Connected,notify listen context...
09:03:37.353 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server healthy check fail, currentConnection = 1727053344576_117.143.60.138_58458
09:03:37.353 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:03:37.353 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:39.316 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053419054_117.143.60.138_51359
09:03:39.316 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053344576_117.143.60.138_58458
09:03:39.316 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053344576_117.143.60.138_58458
09:03:39.316 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:03:39.317 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:03:39.317 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:03:39.363 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:03:40.410 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server check success, currentServer is 110.42.213.184:8848
09:03:40.412 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:03:40.413 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:43.532 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:43.815 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:03:46.546 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:46.748 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:46.827 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:03:48.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053427395_117.143.60.138_51376
09:03:48.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053419054_117.143.60.138_51359
09:03:48.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053419054_117.143.60.138_51359
09:03:48.286 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:03:48.287 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:03:48.287 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:03:49.842 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:03:55.870 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:03:58.884 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:04:01.899 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:04:04.905 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:04:05.314 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:04:05.314 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:04:07.907 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:04:08.049 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053446004_117.143.60.138_51435
09:04:08.049 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053427395_117.143.60.138_51376
09:04:08.049 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053427395_117.143.60.138_51376
09:04:08.049 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:04:08.049 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:04:08.049 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:04:10.910 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:04:15.524 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server check success, currentServer is 110.42.213.184:8848
09:04:16.931 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:04:52.483 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server healthy check fail, currentConnection = 1727053384268_117.143.60.138_51263
09:04:52.483 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:04:52.483 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:04:55.603 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:04:58.616 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:04:58.817 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:01.819 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:05:02.121 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:03.383 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053502768_117.143.60.138_51601
09:05:03.383 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053384268_117.143.60.138_51263
09:05:03.383 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053384268_117.143.60.138_51263
09:05:03.383 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify disconnected event to listeners
09:05:03.383 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] DisConnected,clear listen context...
09:05:03.383 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify connected event to listeners.
09:05:03.383 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Connected,notify listen context...
09:05:04.272 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:05:04.272 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:07.380 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:10.399 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:05:10.601 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:13.606 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:05:13.920 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:16.922 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:05:17.336 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:19.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053519662_117.143.60.138_50540
09:05:19.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053502768_117.143.60.138_51601
09:05:19.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053502768_117.143.60.138_51601
09:05:19.538 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify disconnected event to listeners
09:05:19.538 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] DisConnected,clear listen context...
09:05:19.538 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify connected event to listeners.
09:05:19.538 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Connected,notify listen context...
09:05:26.176 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server check success, currentServer is 110.42.213.184:8848
09:05:38.778 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server healthy check fail, currentConnection = 1727053446004_117.143.60.138_51435
09:05:38.778 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:05:38.778 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:41.903 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:43.480 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053543488_117.143.60.138_50019
09:05:43.480 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053446004_117.143.60.138_51435
09:05:43.480 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053446004_117.143.60.138_51435
09:05:43.480 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:05:43.480 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:05:43.480 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:05:44.371 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:05:46.767 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server check success, currentServer is 110.42.213.184:8848
09:06:48.211 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server healthy check fail, currentConnection = 1727053543488_117.143.60.138_50019
09:06:48.211 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:06:48.211 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:06:49.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053608877_117.143.60.138_64204
09:06:49.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053543488_117.143.60.138_50019
09:06:49.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053543488_117.143.60.138_50019
09:06:49.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:06:49.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:06:49.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:06:49.933 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:06:52.163 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:06:52.164 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:06:55.175 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:06:58.182 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:06:58.182 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:06:59.863 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053618875_117.143.60.138_64211
09:06:59.864 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053608877_117.143.60.138_64204
09:06:59.865 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053608877_117.143.60.138_64204
09:06:59.868 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners
09:06:59.868 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners.
09:06:59.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:07:01.189 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:08:28.919 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
09:08:28.919 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
09:08:29.147 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
09:08:29.159 [boundedElastic-2] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
09:08:29.160 [boundedElastic-2] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
09:08:29.690 [nacos-grpc-client-executor-110.42.213.184-790] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Receive server push request, request = NotifySubscriberRequest, requestId = 3623
09:08:29.692 [nacos-grpc-client-executor-110.42.213.184-790] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Ack server push request, request = NotifySubscriberRequest, requestId = 3623
09:10:11.191 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
09:10:11.191 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
09:10:11.349 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->f118d4ab-90df-4f15-b0f3-3be12e9e47b0
09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@382c9b1[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1095]
09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2982b53e[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053618875_117.143.60.138_64211
09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@785faa33[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 811]
09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->f118d4ab-90df-4f15-b0f3-3be12e9e47b0
09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
09:10:28.921 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
09:10:32.457 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"]
09:10:32.459 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:10:32.459 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
09:10:32.563 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:10:34.213 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:10:37.143 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"]
09:10:37.285 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
09:10:37.286 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
09:10:37.286 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
09:10:37.293 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
09:10:37.299 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:10:37.299 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:10:39.172 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of b34d68e3-407a-4a29-958b-0a1a83b50230
09:10:39.174 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->b34d68e3-407a-4a29-958b-0a1a83b50230
09:10:39.176 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:10:39.177 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:10:39.177 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:10:39.179 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
09:10:39.179 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:10:41.515 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727053840882_117.143.60.138_55808
09:10:41.515 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:10:41.515 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Notify connected event to listeners.
09:10:41.515 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001a093432588
09:10:41.515 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:10:41.516 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
09:10:42.188 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:10:42.659 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.107:9500 register finished
09:10:42.794 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 20.227 seconds (process running for 20.833)
09:10:42.801 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
09:10:42.801 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
09:10:42.803 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP
09:10:42.810 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
09:10:42.810 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
09:10:42.811 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP
09:10:42.811 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
09:10:42.811 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
09:10:42.812 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth+DEFAULT_GROUP
09:10:42.812 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
09:10:42.812 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
09:10:46.200 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server check success, currentServer is 110.42.213.184:8848
09:11:00.252 [http-nio-9500-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:30:50.634 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
09:30:50.635 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
09:30:50.690 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
09:30:50.691 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
09:30:51.311 [nacos-grpc-client-executor-110.42.213.184-269] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Receive server push request, request = NotifySubscriberRequest, requestId = 3671
09:30:51.311 [nacos-grpc-client-executor-110.42.213.184-269] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Ack server push request, request = NotifySubscriberRequest, requestId = 3671
09:49:46.089 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server check success, currentServer is 110.42.213.184:8848
09:56:59.956 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server healthy check fail, currentConnection = 1727053826662_117.143.60.138_55786
09:56:59.956 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:56:59.956 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:57:03.077 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:57:05.138 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056623812_117.143.60.138_55331
09:57:05.138 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053826662_117.143.60.138_55786
09:57:05.138 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053826662_117.143.60.138_55786
09:57:05.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify disconnected event to listeners
09:57:05.139 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b3a11627-58c6-4588-837d-760232986779_config-0] DisConnected,clear listen context...
09:57:05.139 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify connected event to listeners.
09:57:05.139 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b3a11627-58c6-4588-837d-760232986779_config-0] Connected,notify listen context...
09:57:10.468 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:57:10.468 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:57:11.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Success to connect a server [110.42.213.184:8848], connectionId = 1727056631310_117.143.60.138_55350
09:57:11.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053840882_117.143.60.138_55808
09:57:11.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053840882_117.143.60.138_55808
09:57:11.139 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Notify disconnected event to listeners
09:57:11.140 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Notify connected event to listeners.
09:57:11.140 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:57:11.247 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:57:11.485 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
09:57:13.436 [nacos-grpc-client-executor-110.42.213.184-588] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Receive server push request, request = NotifySubscriberRequest, requestId = 3695
09:57:13.437 [nacos-grpc-client-executor-110.42.213.184-588] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Ack server push request, request = NotifySubscriberRequest, requestId = 3695
09:58:02.795 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server healthy check fail, currentConnection = 1727056623812_117.143.60.138_55331
09:58:02.795 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:58:02.795 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:58:03.441 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056683563_117.143.60.138_55432
09:58:03.441 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056623812_117.143.60.138_55331
09:58:03.441 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056623812_117.143.60.138_55331
09:58:03.441 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify disconnected event to listeners
09:58:03.442 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b3a11627-58c6-4588-837d-760232986779_config-0] DisConnected,clear listen context...
09:58:03.442 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify connected event to listeners.
09:58:03.442 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b3a11627-58c6-4588-837d-760232986779_config-0] Connected,notify listen context...
09:58:08.759 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Server check success, currentServer is 110.42.213.184:8848
09:59:11.932 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server healthy check fail, currentConnection = 1727056683563_117.143.60.138_55432
09:59:11.932 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:59:11.932 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:59:12.672 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056752751_117.143.60.138_55537
09:59:12.672 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056683563_117.143.60.138_55432
09:59:12.672 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056683563_117.143.60.138_55432
09:59:12.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify disconnected event to listeners
09:59:12.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b3a11627-58c6-4588-837d-760232986779_config-0] DisConnected,clear listen context...
09:59:12.673 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify connected event to listeners.
09:59:12.673 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b3a11627-58c6-4588-837d-760232986779_config-0] Connected,notify listen context...
09:59:48.592 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Server check success, currentServer is 110.42.213.184:8848
10:01:38.448 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server healthy check fail, currentConnection = 1727056752751_117.143.60.138_55537
10:01:38.448 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
10:01:38.448 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
10:01:40.861 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056899186_117.143.60.138_55926
10:01:40.862 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056752751_117.143.60.138_55537
10:01:40.862 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056752751_117.143.60.138_55537
10:01:40.862 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify disconnected event to listeners
10:01:40.862 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b3a11627-58c6-4588-837d-760232986779_config-0] DisConnected,clear listen context...
10:01:40.862 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify connected event to listeners.
10:01:40.862 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b3a11627-58c6-4588-837d-760232986779_config-0] Connected,notify listen context...
10:03:24.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server healthy check fail, currentConnection = 1727056899186_117.143.60.138_55926
10:03:24.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
10:03:24.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
10:03:26.115 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727057005276_117.143.60.138_56190
10:03:26.115 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056899186_117.143.60.138_55926
10:03:26.115 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056899186_117.143.60.138_55926
10:03:26.115 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify disconnected event to listeners
10:03:26.115 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b3a11627-58c6-4588-837d-760232986779_config-0] DisConnected,clear listen context...
10:03:26.115 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify connected event to listeners.
10:03:26.115 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b3a11627-58c6-4588-837d-760232986779_config-0] Connected,notify listen context...
10:37:30.065 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
10:37:30.067 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
10:37:30.134 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
10:37:30.136 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
10:37:30.137 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
10:37:30.137 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
10:37:30.138 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
10:37:30.138 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
10:37:30.138 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
10:37:30.138 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
10:37:30.138 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
10:37:30.139 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
10:37:30.139 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
10:37:30.139 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
10:37:30.139 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->b34d68e3-407a-4a29-958b-0a1a83b50230
10:37:30.139 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@611c81c2[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1731]
10:37:30.140 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
10:37:30.140 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@575072a6[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
10:37:30.140 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056631310_117.143.60.138_55350
10:37:30.141 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@19d1c4f2[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 1062]
10:37:30.141 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->b34d68e3-407a-4a29-958b-0a1a83b50230
10:37:30.141 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
10:37:30.141 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
10:37:30.142 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
09:05:09.832 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
09:05:13.516 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"]
09:05:13.518 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:05:13.518 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
09:05:13.619 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:05:15.289 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:05:18.602 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"]
09:05:18.824 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
09:05:18.825 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
09:05:18.827 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
09:05:18.837 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
09:05:18.843 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:05:18.843 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:05:19.671 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f1a81838-9fb0-42bd-9aa8-aa577886b05f
09:05:19.675 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->f1a81838-9fb0-42bd-9aa8-aa577886b05f
09:05:19.675 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1a81838-9fb0-42bd-9aa8-aa577886b05f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:05:19.675 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1a81838-9fb0-42bd-9aa8-aa577886b05f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:05:19.676 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1a81838-9fb0-42bd-9aa8-aa577886b05f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:05:19.677 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1a81838-9fb0-42bd-9aa8-aa577886b05f] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
09:05:19.678 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:22.691 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1a81838-9fb0-42bd-9aa8-aa577886b05f] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
09:05:22.691 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:25.697 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1a81838-9fb0-42bd-9aa8-aa577886b05f] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
09:05:25.698 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:28.318 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1a81838-9fb0-42bd-9aa8-aa577886b05f] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727139924902_117.143.60.138_52192
09:05:28.319 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1a81838-9fb0-42bd-9aa8-aa577886b05f] Notify connected event to listeners.
09:05:28.319 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1a81838-9fb0-42bd-9aa8-aa577886b05f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:05:28.319 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:05:28.320 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1a81838-9fb0-42bd-9aa8-aa577886b05f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000028252438c38
09:05:28.322 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.104', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
09:05:28.709 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth
09:05:28.932 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.104:9500 register finished
09:05:29.120 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 31.902 seconds (process running for 32.631)
09:05:29.131 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
09:05:29.132 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
09:05:29.133 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP
09:05:29.148 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
09:05:29.149 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
09:05:29.150 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP
09:05:29.151 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
09:05:29.151 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
09:05:29.152 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth+DEFAULT_GROUP
09:05:29.152 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
09:05:29.153 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
09:05:33.934 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1a81838-9fb0-42bd-9aa8-aa577886b05f] Server check success, currentServer is 110.42.213.184:8848
09:05:38.086 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e5e35aba-83f3-4870-9f06-54e45b40a61c_config-0] Server healthy check fail, currentConnection = 1727139905498_117.143.60.138_52120
09:05:38.086 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e5e35aba-83f3-4870-9f06-54e45b40a61c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:05:38.087 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:41.202 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:43.041 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e5e35aba-83f3-4870-9f06-54e45b40a61c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727139940692_117.143.60.138_52244
09:05:43.041 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e5e35aba-83f3-4870-9f06-54e45b40a61c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727139905498_117.143.60.138_52120
09:05:43.041 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727139905498_117.143.60.138_52120
09:05:43.041 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e5e35aba-83f3-4870-9f06-54e45b40a61c_config-0] Notify disconnected event to listeners
09:05:43.041 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [e5e35aba-83f3-4870-9f06-54e45b40a61c_config-0] DisConnected,clear listen context...
09:05:43.042 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e5e35aba-83f3-4870-9f06-54e45b40a61c_config-0] Notify connected event to listeners.
09:05:43.042 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [e5e35aba-83f3-4870-9f06-54e45b40a61c_config-0] Connected,notify listen context...
09:05:47.333 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e5e35aba-83f3-4870-9f06-54e45b40a61c_config-0] Server check success, currentServer is 110.42.213.184:8848
09:05:49.761 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e5e35aba-83f3-4870-9f06-54e45b40a61c_config-0] Server check success, currentServer is 110.42.213.184:8848
09:06:22.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e5e35aba-83f3-4870-9f06-54e45b40a61c_config-0] Server healthy check fail, currentConnection = 1727139940692_117.143.60.138_52244
09:06:22.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e5e35aba-83f3-4870-9f06-54e45b40a61c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:06:22.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:06:24.393 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e5e35aba-83f3-4870-9f06-54e45b40a61c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727139983025_117.143.60.138_52299
09:06:24.393 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e5e35aba-83f3-4870-9f06-54e45b40a61c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727139940692_117.143.60.138_52244
09:06:24.393 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727139940692_117.143.60.138_52244
09:06:24.394 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e5e35aba-83f3-4870-9f06-54e45b40a61c_config-0] Notify disconnected event to listeners
09:06:24.394 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [e5e35aba-83f3-4870-9f06-54e45b40a61c_config-0] DisConnected,clear listen context...
09:06:24.394 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e5e35aba-83f3-4870-9f06-54e45b40a61c_config-0] Notify connected event to listeners.
09:06:24.394 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [e5e35aba-83f3-4870-9f06-54e45b40a61c_config-0] Connected,notify listen context...
09:06:27.139 [http-nio-9500-exec-2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:19:47.705 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
09:19:47.706 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
09:19:47.724 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.104","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
09:19:47.725 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.104","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
09:19:48.307 [nacos-grpc-client-executor-110.42.213.184-199] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1a81838-9fb0-42bd-9aa8-aa577886b05f] Receive server push request, request = NotifySubscriberRequest, requestId = 4078
09:19:48.307 [nacos-grpc-client-executor-110.42.213.184-199] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1a81838-9fb0-42bd-9aa8-aa577886b05f] Ack server push request, request = NotifySubscriberRequest, requestId = 4078

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,17 @@
15:33:44.466 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNjc0NjMzNX0.YKKo1fOoXaPJkrhOfyL9ogC1l3C-THYymugf4l3GM-Y, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1314938689c7a3b4f174ef229dab1a8d, Client-RequestTS=1726731221456, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 557900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@409e319a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a90b275, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1d33bdea, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@25b76c4}}}]]
15:33:44.470 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error
com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 557900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@409e319a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a90b275, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1d33bdea, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@25b76c4}}}]]
at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82)
at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646)
at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221)
at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202)
at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 557900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@409e319a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a90b275, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1d33bdea, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@25b76c4}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79)
... 9 common frames omitted

View File

@ -0,0 +1,853 @@
19:32:27.227 [nacos-grpc-client-executor-110.42.213.184-16917] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726745241531_117.143.60.138_57975]Request stream error, switch server,error={}
com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
... 1 common frames omitted
19:32:27.218 [nacos-grpc-client-executor-110.42.213.184-16495] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726745233716_117.143.60.138_57957]Request stream error, switch server,error={}
com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
... 1 common frames omitted
19:32:27.404 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={}
java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592)
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
... 3 common frames omitted
Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /110.42.213.184:9848
Caused by: java.net.SocketException: Network is unreachable: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:32:27.404 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={}
java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592)
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
... 3 common frames omitted
Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /110.42.213.184:9848
Caused by: java.net.SocketException: Network is unreachable: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:32:27.537 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={}
java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592)
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
... 3 common frames omitted
Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /110.42.213.184:9848
Caused by: java.net.SocketException: Network is unreachable: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:32:27.538 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={}
java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592)
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
... 3 common frames omitted
Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /110.42.213.184:9848
Caused by: java.net.SocketException: Network is unreachable: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:32:27.750 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={}
java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592)
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
... 3 common frames omitted
Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /110.42.213.184:9848
Caused by: java.net.SocketException: Network is unreachable: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:32:27.750 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={}
java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592)
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
... 3 common frames omitted
Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /110.42.213.184:9848
Caused by: java.net.SocketException: Network is unreachable: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:32:28.059 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={}
java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592)
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
... 3 common frames omitted
Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /110.42.213.184:9848
Caused by: java.net.SocketException: Network is unreachable: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:32:28.059 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={}
java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592)
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
... 3 common frames omitted
Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /110.42.213.184:9848
Caused by: java.net.SocketException: Network is unreachable: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:32:28.481 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={}
java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592)
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
... 3 common frames omitted
Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /110.42.213.184:9848
Caused by: java.net.SocketException: Network is unreachable: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:32:28.481 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={}
java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592)
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
... 3 common frames omitted
Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /110.42.213.184:9848
Caused by: java.net.SocketException: Network is unreachable: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:32:28.994 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={}
java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592)
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
... 3 common frames omitted
Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /110.42.213.184:9848
Caused by: java.net.SocketException: Network is unreachable: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:32:28.994 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={}
java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592)
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
... 3 common frames omitted
Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /110.42.213.184:9848
Caused by: java.net.SocketException: Network is unreachable: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:43:24.980 [nacos-grpc-client-executor-110.42.213.184-16645] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726831951796_58.247.23.179_26237]Request stream error, switch server,error={}
com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
... 1 common frames omitted
19:43:24.989 [nacos-grpc-client-executor-110.42.213.184-17063] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726831951796_58.247.23.179_26238]Request stream error, switch server,error={}
com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
... 1 common frames omitted
19:43:25.032 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={}
java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592)
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
... 3 common frames omitted
Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /110.42.213.184:9848
Caused by: java.net.SocketException: Network is unreachable: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:43:25.074 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={}
java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592)
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
... 3 common frames omitted
Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /110.42.213.184:9848
Caused by: java.net.SocketException: Network is unreachable: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:43:25.258 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={}
java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592)
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528)
at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
... 3 common frames omitted
Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /110.42.213.184:9848
Caused by: java.net.SocketException: Network is unreachable: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
21:53:34.003 [http-nio-9300-exec-9] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNjg0NDI1MH0.We7tAKEObtV2xQS0pLAeBvCvkis3LYCGJ-a0sJQdZXM, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 657551 milliseconds, 564600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6a942531[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@294bba5f, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7fd7cd25, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@107a2ff3}}}]]
21:53:34.206 [http-nio-9300-exec-9] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed.
com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 657551 milliseconds, 564600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6a942531[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@294bba5f, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7fd7cd25, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@107a2ff3}}}]]
at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82)
at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646)
at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623)
at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447)
at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368)
at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159)
at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470)
at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458)
at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70)
at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80)
at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68)
at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73)
at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37)
at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94)
at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47)
at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172)
at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145)
at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156)
at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141)
at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156)
at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141)
at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110)
at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81)
at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80)
at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69)
at jdk.internal.reflect.GeneratedMethodAccessor61.invoke(Unknown Source)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)
at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74)
at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60)
at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327)
at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434)
at jdk.internal.reflect.GeneratedMethodAccessor47.invoke(Unknown Source)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:633)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 657551 milliseconds, 564600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6a942531[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@294bba5f, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7fd7cd25, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@107a2ff3}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79)
... 85 common frames omitted
21:53:35.588 [nacos-grpc-client-executor-110.42.213.184-18020] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726832609339_117.143.60.138_57984]Request stream error, switch server,error={}
com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
... 1 common frames omitted
21:53:35.589 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNjg0NDI0MH0.q5Sf188qwi5Uzj5TCEp0xthpBWrao83ojz0dAN_5Vhc, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=562717bc07f1721001cac832496ec216, Client-RequestTS=1726840413392, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
21:53:35.697 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNjg0NDI0MH0.q5Sf188qwi5Uzj5TCEp0xthpBWrao83ojz0dAN_5Vhc, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=562717bc07f1721001cac832496ec216, Client-RequestTS=1726840413392, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
21:53:35.803 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNjg0NDI0MH0.q5Sf188qwi5Uzj5TCEp0xthpBWrao83ojz0dAN_5Vhc, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=562717bc07f1721001cac832496ec216, Client-RequestTS=1726840413392, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,64 @@
19:38:52.193 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
19:38:53.976 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
19:38:53.978 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
19:38:53.979 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
19:38:54.064 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
19:38:54.824 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
19:38:57.302 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
19:38:57.491 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
19:38:57.492 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
19:38:57.493 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
19:38:57.501 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
19:38:57.509 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
19:38:57.510 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
19:38:57.760 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of c6bb4d99-a967-42cb-8602-a770b73dc896
19:38:57.763 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->c6bb4d99-a967-42cb-8602-a770b73dc896
19:38:57.764 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c6bb4d99-a967-42cb-8602-a770b73dc896] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
19:38:57.764 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c6bb4d99-a967-42cb-8602-a770b73dc896] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
19:38:57.765 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c6bb4d99-a967-42cb-8602-a770b73dc896] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
19:38:57.766 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c6bb4d99-a967-42cb-8602-a770b73dc896] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848}
19:38:57.768 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:38:57.835 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c6bb4d99-a967-42cb-8602-a770b73dc896] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726573140217_117.143.60.138_51893
19:38:57.836 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c6bb4d99-a967-42cb-8602-a770b73dc896] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
19:38:57.836 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c6bb4d99-a967-42cb-8602-a770b73dc896] Notify connected event to listeners.
19:38:57.836 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c6bb4d99-a967-42cb-8602-a770b73dc896] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000028d814359b0
19:38:57.837 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
19:38:57.838 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.20', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
19:38:57.862 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.20:9300 register finished
19:38:58.046 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 8.459 seconds (process running for 9.005)
19:38:58.056 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
19:38:58.056 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
19:38:58.057 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one
19:38:58.068 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1
19:38:58.068 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP
19:38:58.069 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one
19:38:58.070 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1
19:38:58.070 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP
19:38:58.070 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one
19:38:58.071 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1
19:38:58.071 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP
19:56:46.284 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
20:00:43.950 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
20:00:43.951 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='10.113.37.20', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
20:00:43.968 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
20:00:43.969 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
20:00:43.969 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
20:00:43.969 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
20:00:43.969 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
20:00:43.969 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
20:00:43.969 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
20:00:43.969 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
20:00:43.969 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
20:00:43.971 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
20:00:43.971 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
20:00:43.971 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
20:00:43.971 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->c6bb4d99-a967-42cb-8602-a770b73dc896
20:00:43.971 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1c8dd7a0[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 434]
20:00:43.971 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
20:00:43.971 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@814c2aa[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
20:00:43.971 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726573140217_117.143.60.138_51893
20:00:43.974 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@9c24843[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 263]
20:00:43.974 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->c6bb4d99-a967-42cb-8602-a770b73dc896
20:00:43.974 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
20:00:43.974 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
20:00:43.974 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop

View File

@ -0,0 +1,205 @@
00:42:44.077 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
00:42:44.574 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:47.588 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f462da4-204d-420c-b339-9ee4f995514e_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:42:47.802 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:49.687 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
00:42:49.691 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
00:42:49.691 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
00:42:49.979 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
00:42:50.818 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f462da4-204d-420c-b339-9ee4f995514e_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:42:51.129 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:51.908 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
00:42:54.169 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f462da4-204d-420c-b339-9ee4f995514e_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:42:54.608 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:42:57.740 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f462da4-204d-420c-b339-9ee4f995514e_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:42:58.251 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:00.653 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
00:43:00.959 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
00:43:00.960 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
00:43:00.961 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
00:43:00.969 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
00:43:00.974 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
00:43:00.975 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
00:43:01.304 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f462da4-204d-420c-b339-9ee4f995514e_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:01.909 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:03.984 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of a306f027-886d-4999-bccd-0f03633ccb28
00:43:03.986 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->a306f027-886d-4999-bccd-0f03633ccb28
00:43:03.987 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a306f027-886d-4999-bccd-0f03633ccb28] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
00:43:03.987 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a306f027-886d-4999-bccd-0f03633ccb28] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
00:43:03.988 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a306f027-886d-4999-bccd-0f03633ccb28] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
00:43:03.988 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a306f027-886d-4999-bccd-0f03633ccb28] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848}
00:43:03.989 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:04.927 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f462da4-204d-420c-b339-9ee4f995514e_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:05.638 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:06.997 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a306f027-886d-4999-bccd-0f03633ccb28] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848}
00:43:06.999 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:08.661 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f462da4-204d-420c-b339-9ee4f995514e_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:09.475 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:10.020 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a306f027-886d-4999-bccd-0f03633ccb28] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848}
00:43:10.025 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:12.493 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f462da4-204d-420c-b339-9ee4f995514e_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:13.045 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a306f027-886d-4999-bccd-0f03633ccb28] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848}
00:43:13.046 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:13.400 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:16.057 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a306f027-886d-4999-bccd-0f03633ccb28] Try to reconnect to a new server, server is not appointed, will choose a random server.
00:43:16.057 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a306f027-886d-4999-bccd-0f03633ccb28] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
00:43:16.058 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:16.058 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a306f027-886d-4999-bccd-0f03633ccb28] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$572/0x000001de38410658
00:43:16.061 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='192.168.61.217', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
00:43:16.416 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f462da4-204d-420c-b339-9ee4f995514e_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:16.590 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Stopping ProtocolHandler ["http-nio-9300"]
00:43:16.640 [main] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
00:43:16.641 [main] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
00:43:16.642 [main] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
00:43:16.642 [main] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
00:43:16.644 [main] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
00:43:16.645 [main] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
00:43:16.646 [main] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
00:43:16.647 [main] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
00:43:16.648 [main] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
00:43:16.649 [main] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
00:43:16.651 [main] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
00:43:16.652 [main] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->a306f027-886d-4999-bccd-0f03633ccb28
00:43:16.652 [main] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@118f39f3[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 4]
00:43:16.653 [main] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
00:43:16.654 [main] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7baf7e2c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
00:43:16.655 [main] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@73d7e7aa[Running, pool size = 12, active threads = 0, queued tasks = 0, completed tasks = 14]
00:43:16.656 [main] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->a306f027-886d-4999-bccd-0f03633ccb28
00:43:16.657 [main] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
00:43:16.667 [main] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
00:43:16.668 [main] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
00:43:16.680 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
00:43:16.774 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a306f027-886d-4999-bccd-0f03633ccb28] Client is shutdown, stop reconnect to server
20:01:53.753 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
20:01:56.733 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
20:01:56.736 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:01:56.737 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
20:01:56.872 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:01:58.146 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:02:02.259 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
20:02:02.459 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
20:02:02.460 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
20:02:02.462 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
20:02:02.472 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
20:02:02.482 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
20:02:02.484 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
20:02:02.645 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 3ff967ad-de64-45a9-86f5-a32c9b0e611d
20:02:02.649 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->3ff967ad-de64-45a9-86f5-a32c9b0e611d
20:02:02.650 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
20:02:02.651 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
20:02:02.652 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
20:02:02.654 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
20:02:02.655 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:02:03.730 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1726660928410_220.196.194.142_40689
20:02:03.730 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:02:03.730 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Notify connected event to listeners.
20:02:03.730 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001a2cd4366d8
20:02:03.730 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
20:02:03.733 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-file with instance Instance{instanceId='null', ip='192.168.61.217', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
20:02:03.807 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 192.168.61.217:9300 register finished
20:02:04.025 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 16.59 seconds (process running for 17.171)
20:02:04.043 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
20:02:04.044 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
20:02:04.045 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP
20:02:04.056 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1
20:02:04.056 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP
20:02:04.057 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP
20:02:04.057 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1
20:02:04.057 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP
20:02:04.059 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file+DEFAULT_GROUP
20:02:04.059 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1
20:02:04.060 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP
20:04:58.433 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
21:29:46.249 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Server check success, currentServer is 110.42.213.184:8848
21:49:39.365 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Server healthy check fail, currentConnection = 1726660928410_220.196.194.142_40689
21:49:39.365 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Try to reconnect to a new server, server is not appointed, will choose a random server.
21:49:39.367 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:49:42.497 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:49:43.136 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Success to connect a server [110.42.213.184:8848], connectionId = 1726667388170_220.196.194.142_40942
21:49:43.136 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726660928410_220.196.194.142_40689
21:49:43.136 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726660928410_220.196.194.142_40689
21:49:43.137 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Notify disconnected event to listeners
21:49:43.140 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Notify connected event to listeners.
21:49:43.140 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
21:49:43.564 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Server check success, currentServer is 110.42.213.184:8848
21:49:43.978 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
21:45:42.639 [nacos-grpc-client-executor-110.42.213.184-1579] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 2825
21:45:42.640 [nacos-grpc-client-executor-110.42.213.184-1579] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 2825
21:45:42.643 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
21:45:42.644 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:45:42.910 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726669256708_220.196.194.142_41952
21:45:42.910 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726660916958_220.196.194.142_41223
21:45:42.910 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726660916958_220.196.194.142_41223
21:45:42.912 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Notify disconnected event to listeners
21:45:42.912 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] DisConnected,clear listen context...
21:45:42.913 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Notify connected event to listeners.
21:45:42.913 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Connected,notify listen context...
22:07:31.205 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Server healthy check fail, currentConnection = 1726667388170_220.196.194.142_40942
22:07:31.205 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:07:31.205 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:07:31.470 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Success to connect a server [110.42.213.184:8848], connectionId = 1726670449576_220.196.194.142_41189
22:07:31.470 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726667388170_220.196.194.142_40942
22:07:31.471 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726667388170_220.196.194.142_40942
22:07:31.471 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Notify disconnected event to listeners
22:07:31.472 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Notify connected event to listeners.
22:07:31.472 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:07:32.652 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
22:08:38.242 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Server check success, currentServer is 110.42.213.184:8848
22:15:52.836 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:15:52.837 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:52.882 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:15:52.885 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.067 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.069 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.075 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.076 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.288 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.288 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.293 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.293 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.597 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.597 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.603 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.603 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:54.014 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:54.017 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:54.024 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:54.026 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:54.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:54.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:54.533 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:54.533 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:55.136 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:55.136 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:55.142 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:55.142 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:55.850 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:55.850 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:56.250 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:57.056 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:57.060 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:57.298 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:57.872 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:58.199 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:58.547 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:59.093 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:59.459 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:59.697 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:16:00.095 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:16:00.333 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:16:00.704 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:16:01.448 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:16:01.588 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Success to connect a server [110.42.213.184:8848], connectionId = 1726670959784_117.143.60.138_50452
22:16:01.588 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726670449576_220.196.194.142_41189
22:16:01.588 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726670449576_220.196.194.142_41189
22:16:01.588 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Notify disconnected event to listeners
22:16:01.588 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3ff967ad-de64-45a9-86f5-a32c9b0e611d] Notify connected event to listeners.
22:16:01.588 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:16:01.854 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726670960052_117.143.60.138_50423
22:16:01.854 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726669256708_220.196.194.142_41952
22:16:01.854 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726669256708_220.196.194.142_41952
22:16:01.855 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Notify disconnected event to listeners
22:16:01.855 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] DisConnected,clear listen context...
22:16:01.855 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Notify connected event to listeners.
22:16:01.855 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [ba09ed73-a101-4a50-9a76-215cb85ba63c_config-0] Connected,notify listen context...
22:16:03.857 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file

View File

@ -0,0 +1,105 @@
14:45:36.526 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
14:45:39.696 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
14:45:39.700 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
14:45:39.701 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
14:45:39.797 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
14:45:40.768 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
14:45:43.817 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
14:45:44.002 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
14:45:44.004 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
14:45:44.005 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
14:45:44.020 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
14:45:44.028 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
14:45:44.029 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
14:45:44.166 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 7313bfc2-4bd8-41c5-a3d0-ab4c871b48f5
14:45:44.173 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->7313bfc2-4bd8-41c5-a3d0-ab4c871b48f5
14:45:44.174 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7313bfc2-4bd8-41c5-a3d0-ab4c871b48f5] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
14:45:44.174 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7313bfc2-4bd8-41c5-a3d0-ab4c871b48f5] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
14:45:44.176 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7313bfc2-4bd8-41c5-a3d0-ab4c871b48f5] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
14:45:44.178 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7313bfc2-4bd8-41c5-a3d0-ab4c871b48f5] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
14:45:44.179 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:45:44.363 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7313bfc2-4bd8-41c5-a3d0-ab4c871b48f5] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1726728344708_117.143.60.138_63115
14:45:44.363 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7313bfc2-4bd8-41c5-a3d0-ab4c871b48f5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:45:44.363 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7313bfc2-4bd8-41c5-a3d0-ab4c871b48f5] Notify connected event to listeners.
14:45:44.365 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
14:45:44.365 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7313bfc2-4bd8-41c5-a3d0-ab4c871b48f5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000022657431eb8
14:45:44.367 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
14:45:44.397 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.107:9300 register finished
14:45:44.616 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 11.5 seconds (process running for 12.192)
14:45:44.629 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
14:45:44.630 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
14:45:44.630 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP
14:45:44.644 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1
14:45:44.646 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP
14:45:44.650 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP
14:45:44.651 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1
14:45:44.651 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP
14:45:44.652 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file+DEFAULT_GROUP
14:45:44.652 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1
14:45:44.652 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP
14:45:59.242 [http-nio-9300-exec-2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
15:33:50.152 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [76af1d43-e329-454e-8f2c-3b1da2290e8b_config-0] Server check success, currentServer is 110.42.213.184:8848
19:06:36.115 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
19:06:36.116 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-file with instance: Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
19:06:36.153 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
19:06:36.154 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
19:06:36.155 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
19:06:36.155 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
19:06:36.155 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
19:06:36.155 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
19:06:36.155 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
19:06:36.155 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
19:06:36.156 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
19:06:36.156 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
19:06:36.156 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
19:06:36.156 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
19:06:36.156 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->7313bfc2-4bd8-41c5-a3d0-ab4c871b48f5
19:06:36.157 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@3386a23c[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 5203]
19:06:36.157 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
19:06:36.157 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@14778ac7[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
19:06:36.157 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726728344708_117.143.60.138_63115
19:06:36.167 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6f99d416[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 3112]
19:06:36.171 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->7313bfc2-4bd8-41c5-a3d0-ab4c871b48f5
19:06:36.172 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
19:06:36.172 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
19:06:36.173 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
19:27:13.622 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
19:27:16.657 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
19:27:16.660 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
19:27:16.660 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
19:27:16.780 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
19:27:17.653 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
19:27:20.141 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
19:27:20.291 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
19:27:20.292 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
19:27:20.293 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
19:27:20.298 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
19:27:20.302 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
19:27:20.302 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
19:27:20.645 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 81f4eef2-a5e4-4117-a98d-95dc4b2d1b30
19:27:20.648 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->81f4eef2-a5e4-4117-a98d-95dc4b2d1b30
19:27:20.648 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
19:27:20.649 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
19:27:20.650 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
19:27:20.651 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
19:27:20.651 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:27:20.868 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1726745241531_117.143.60.138_57975
19:27:20.869 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
19:27:20.869 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Notify connected event to listeners.
19:27:20.869 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000002028a432c30
19:27:20.869 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
19:27:20.872 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
19:27:20.898 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.107:9300 register finished
19:27:21.094 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 10.642 seconds (process running for 11.264)
19:27:21.105 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
19:27:21.105 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
19:27:21.106 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP
19:27:21.117 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1
19:27:21.117 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP
19:27:21.119 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP
19:27:21.119 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1
19:27:21.119 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP
19:27:21.120 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file+DEFAULT_GROUP
19:27:21.120 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1
19:27:21.121 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP
19:27:34.190 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'

View File

@ -0,0 +1,111 @@
19:32:27.284 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:32:27.284 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:32:27.292 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:27.292 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:27.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:27.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:27.539 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:27.539 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:27.745 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:27.745 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:27.750 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:27.750 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:28.054 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:28.054 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:28.060 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:28.060 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:28.475 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:28.475 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:28.482 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:28.482 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:28.987 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:28.987 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:28.995 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:28.995 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:32:29.610 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:29.612 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:32:31.137 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726831951796_58.247.23.179_26237
19:32:31.137 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Success to connect a server [110.42.213.184:8848], connectionId = 1726831951796_58.247.23.179_26238
19:32:31.138 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726745241531_117.143.60.138_57975
19:32:31.138 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726745233716_117.143.60.138_57957
19:32:31.138 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726745241531_117.143.60.138_57975
19:32:31.138 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726745233716_117.143.60.138_57957
19:32:31.140 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Notify disconnected event to listeners
19:32:31.140 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Notify disconnected event to listeners
19:32:31.141 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] DisConnected,clear listen context...
19:32:31.141 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Notify connected event to listeners.
19:32:31.141 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Connected,notify listen context...
19:32:31.144 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Notify connected event to listeners.
19:32:31.144 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
19:32:32.632 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
19:43:25.010 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Server healthy check fail, currentConnection = 1726831951796_58.247.23.179_26238
19:43:25.011 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:43:25.012 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:43:25.058 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Server healthy check fail, currentConnection = 1726831951796_58.247.23.179_26237
19:43:25.059 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:43:25.060 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:43:25.149 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:43:25.207 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:43:25.259 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:43:25.473 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:43:26.921 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Success to connect a server [110.42.213.184:8848], connectionId = 1726832607278_117.143.60.138_61419
19:43:26.921 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726831951796_58.247.23.179_26238
19:43:26.921 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726831951796_58.247.23.179_26238
19:43:26.922 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:43:26.922 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Notify disconnected event to listeners
19:43:26.922 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:43:26.922 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Notify connected event to listeners.
19:43:26.922 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
19:43:27.246 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726832607345_117.143.60.138_61402
19:43:27.246 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726831951796_58.247.23.179_26237
19:43:27.247 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726831951796_58.247.23.179_26237
19:43:27.249 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Notify disconnected event to listeners
19:43:27.249 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:43:27.249 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] DisConnected,clear listen context...
19:43:27.249 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:43:27.249 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Notify connected event to listeners.
19:43:27.251 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Connected,notify listen context...
19:43:28.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726832609339_117.143.60.138_57984
19:43:28.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Success to connect a server [110.42.213.184:8848], connectionId = 1726832609339_117.143.60.138_57977
19:43:28.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726832607345_117.143.60.138_61402
19:43:28.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726832607278_117.143.60.138_61419
19:43:28.540 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726832607278_117.143.60.138_61419
19:43:28.540 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726832607345_117.143.60.138_61402
19:43:28.540 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Notify disconnected event to listeners
19:43:28.540 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Notify disconnected event to listeners
19:43:28.540 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] DisConnected,clear listen context...
19:43:28.540 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Notify connected event to listeners.
19:43:28.540 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Notify connected event to listeners.
19:43:28.541 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Connected,notify listen context...
19:43:28.541 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
19:43:28.555 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
21:53:35.261 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Server healthy check fail, currentConnection = 1726832609339_117.143.60.138_57977
21:53:35.263 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Try to reconnect to a new server, server is not appointed, will choose a random server.
21:53:35.267 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:53:35.432 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Success to connect a server [110.42.213.184:8848], connectionId = 1726840417854_117.143.60.138_55742
21:53:35.433 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726832609339_117.143.60.138_57977
21:53:35.433 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726832609339_117.143.60.138_57977
21:53:35.435 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Notify disconnected event to listeners
21:53:35.436 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Notify connected event to listeners.
21:53:35.436 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
21:53:35.558 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Server check success, currentServer is 110.42.213.184:8848
21:53:35.640 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Server healthy check fail, currentConnection = 1726832609339_117.143.60.138_57984
21:53:35.641 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
21:53:35.641 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:53:35.787 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726840418225_117.143.60.138_55761
21:53:35.787 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726832609339_117.143.60.138_57984
21:53:35.787 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726832609339_117.143.60.138_57984
21:53:35.787 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
21:53:35.788 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:53:35.788 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Notify disconnected event to listeners
21:53:35.788 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] DisConnected,clear listen context...
21:53:35.788 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Notify connected event to listeners.
21:53:35.788 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Connected,notify listen context...
21:53:35.973 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726840418366_117.143.60.138_55768
21:53:35.973 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726840418225_117.143.60.138_55761
21:53:35.973 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726840418225_117.143.60.138_55761
21:53:35.974 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Notify disconnected event to listeners
21:53:35.974 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] DisConnected,clear listen context...
21:53:35.974 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Notify connected event to listeners.
21:53:35.974 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Connected,notify listen context...
21:53:36.561 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file

View File

@ -0,0 +1,88 @@
19:13:03.048 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:13:03.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:03.050 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:13:03.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:03.488 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:04.124 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:04.220 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:04.251 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:04.350 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:04.792 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:04.810 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:05.000 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:05.200 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:05.261 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:05.307 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:05.389 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:05.667 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:05.677 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:05.791 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:05.803 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:06.180 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:06.191 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:06.304 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:06.315 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:06.796 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:06.810 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:06.921 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:06.930 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:07.511 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:07.519 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:07.645 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:07.652 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:08.323 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:08.332 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:08.458 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:08.466 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:09.238 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:09.243 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:09.377 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:09.383 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:10.251 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:10.256 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:10.389 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:10.394 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:11.358 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:11.362 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:11.495 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:11.504 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:12.574 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:12.581 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:12.713 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:12.719 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:13.889 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:14.027 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:16.912 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:17.047 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:18.314 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:18.452 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:21.326 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:21.466 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:22.831 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:22.969 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:25.835 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:25.985 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:27.438 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:27.593 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:30.452 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:30.604 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 16 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:32.160 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:32.318 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:32.473 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:32.585 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Fail to connect server, after trying 17 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:34.276 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:34.399 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:34.462 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726917215473_117.143.60.138_61210
19:13:34.462 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726840418366_117.143.60.138_55768
19:13:34.462 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726840418366_117.143.60.138_55768
19:13:34.463 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Notify disconnected event to listeners
19:13:34.463 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] DisConnected,clear listen context...
19:13:34.463 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Notify connected event to listeners.
19:13:34.463 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [7e25dd1a-0bbe-475b-ae59-c6b023173ed3_config-0] Connected,notify listen context...
19:13:34.571 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Success to connect a server [110.42.213.184:8848], connectionId = 1726917215581_117.143.60.138_61221
19:13:34.571 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726840417854_117.143.60.138_55742
19:13:34.571 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726840417854_117.143.60.138_55742
19:13:34.571 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Notify disconnected event to listeners
19:13:34.572 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [81f4eef2-a5e4-4117-a98d-95dc4b2d1b30] Notify connected event to listeners.
19:13:34.572 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
19:13:34.851 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file

View File

@ -0,0 +1,436 @@
15:43:54.188 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
15:43:58.147 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
15:43:58.149 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:43:58.150 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
15:43:58.251 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:43:59.180 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:44:02.062 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
15:44:02.268 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
15:44:02.271 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
15:44:02.272 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
15:44:02.282 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
15:44:02.287 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
15:44:02.288 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
15:44:02.570 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of dc288382-7af6-419c-b665-9adadf6dd373
15:44:02.574 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->dc288382-7af6-419c-b665-9adadf6dd373
15:44:02.575 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dc288382-7af6-419c-b665-9adadf6dd373] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
15:44:02.575 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dc288382-7af6-419c-b665-9adadf6dd373] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
15:44:02.575 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dc288382-7af6-419c-b665-9adadf6dd373] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
15:44:02.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dc288382-7af6-419c-b665-9adadf6dd373] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
15:44:02.577 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
15:44:02.783 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dc288382-7af6-419c-b665-9adadf6dd373] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1726991045768_117.143.60.138_61660
15:44:02.783 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dc288382-7af6-419c-b665-9adadf6dd373] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:44:02.783 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dc288382-7af6-419c-b665-9adadf6dd373] Notify connected event to listeners.
15:44:02.784 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
15:44:02.784 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dc288382-7af6-419c-b665-9adadf6dd373] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001db4b431470
15:44:02.786 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
15:44:02.890 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.107:9300 register finished
15:44:03.093 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 12.896 seconds (process running for 13.599)
15:44:03.102 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
15:44:03.103 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
15:44:03.105 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP
15:44:03.118 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1
15:44:03.119 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP
15:44:03.120 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP
15:44:03.122 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1
15:44:03.122 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP
15:44:03.123 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file+DEFAULT_GROUP
15:44:03.123 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1
15:44:03.123 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP
15:44:18.598 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
15:55:00.024 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
15:55:00.025 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-file with instance: Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
15:55:00.068 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
15:55:00.069 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
15:55:00.069 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
15:55:00.070 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
15:55:00.070 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
15:55:00.070 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
15:55:00.070 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
15:55:00.071 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
15:55:00.071 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
15:55:00.071 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
15:55:00.071 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
15:55:00.071 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
15:55:00.071 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->dc288382-7af6-419c-b665-9adadf6dd373
15:55:00.072 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@34f3b862[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 218]
15:55:00.072 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
15:55:00.072 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@16172b49[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
15:55:00.073 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726991045768_117.143.60.138_61660
15:55:00.081 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@28b59595[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 154]
15:55:00.082 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->dc288382-7af6-419c-b665-9adadf6dd373
15:55:00.082 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
15:55:00.082 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
15:55:00.083 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
15:56:51.606 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
15:56:53.973 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
15:56:53.976 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:56:53.977 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
15:56:54.043 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:56:54.923 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:56:57.936 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
15:56:58.109 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
15:56:58.110 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
15:56:58.111 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
15:56:58.120 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
15:56:58.124 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
15:56:58.125 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
15:56:58.291 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 615daf8a-2859-4d71-b7b1-d8b62034c6ac
15:56:58.293 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->615daf8a-2859-4d71-b7b1-d8b62034c6ac
15:56:58.293 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [615daf8a-2859-4d71-b7b1-d8b62034c6ac] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
15:56:58.293 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [615daf8a-2859-4d71-b7b1-d8b62034c6ac] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
15:56:58.294 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [615daf8a-2859-4d71-b7b1-d8b62034c6ac] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
15:56:58.294 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [615daf8a-2859-4d71-b7b1-d8b62034c6ac] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
15:56:58.294 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
15:56:58.896 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [615daf8a-2859-4d71-b7b1-d8b62034c6ac] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1726991821784_58.247.23.179_60754
15:56:58.896 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [615daf8a-2859-4d71-b7b1-d8b62034c6ac] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
15:56:58.896 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [615daf8a-2859-4d71-b7b1-d8b62034c6ac] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000017523434dc8
15:56:58.896 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [615daf8a-2859-4d71-b7b1-d8b62034c6ac] Notify connected event to listeners.
15:56:58.896 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
15:56:58.898 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-file with instance Instance{instanceId='null', ip='192.168.54.217', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
15:56:58.967 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 192.168.54.217:9300 register finished
15:56:59.122 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 12.962 seconds (process running for 13.642)
15:56:59.131 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
15:56:59.132 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
15:56:59.132 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP
15:56:59.143 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1
15:56:59.143 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP
15:56:59.144 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP
15:56:59.145 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1
15:56:59.146 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP
15:56:59.146 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file+DEFAULT_GROUP
15:56:59.146 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1
15:56:59.147 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP
15:57:04.259 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:08:57.086 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
16:08:57.087 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-file with instance: Instance{instanceId='null', ip='192.168.54.217', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
16:08:57.203 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
16:08:57.204 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
16:08:57.205 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
16:08:57.205 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
16:08:57.205 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
16:08:57.205 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
16:08:57.205 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
16:08:57.205 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
16:08:57.205 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
16:08:57.205 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
16:08:57.205 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
16:08:57.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
16:08:57.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->615daf8a-2859-4d71-b7b1-d8b62034c6ac
16:08:57.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@55d9fafd[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 239]
16:08:57.206 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
16:08:57.206 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6ac5e052[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
16:08:57.206 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726991821784_58.247.23.179_60754
16:08:57.209 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4061e48b[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 167]
16:08:57.209 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->615daf8a-2859-4d71-b7b1-d8b62034c6ac
16:08:57.210 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
16:08:57.210 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
16:08:57.210 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
16:35:39.380 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
16:35:41.614 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
16:35:41.616 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:35:41.617 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
16:35:41.712 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:35:42.686 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:35:45.825 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
16:35:45.969 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
16:35:45.970 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
16:35:45.970 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
16:35:45.976 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
16:35:45.981 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
16:35:45.982 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
16:35:46.287 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 4aad5519-850d-4fc3-a8f5-d72adc23063c
16:35:46.290 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->4aad5519-850d-4fc3-a8f5-d72adc23063c
16:35:46.291 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:35:46.291 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:35:46.292 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:35:46.293 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
16:35:46.294 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:35:46.795 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1726994149783_58.247.23.179_30704
16:35:46.796 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:35:46.796 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Notify connected event to listeners.
16:35:46.796 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001e616430a48
16:35:46.797 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
16:35:46.798 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-file with instance Instance{instanceId='null', ip='192.168.54.217', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
16:35:46.860 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 192.168.54.217:9300 register finished
16:35:47.038 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 12.271 seconds (process running for 12.883)
16:35:47.048 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
16:35:47.049 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
16:35:47.050 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP
16:35:47.060 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1
16:35:47.060 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP
16:35:47.061 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP
16:35:47.062 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1
16:35:47.062 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP
16:35:47.062 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file+DEFAULT_GROUP
16:35:47.063 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1
16:35:47.063 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP
16:36:00.510 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:41:22.112 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Server healthy check fail, currentConnection = 1726994140942_58.247.23.179_60986
16:41:22.113 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:41:22.113 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:24.412 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Server healthy check fail, currentConnection = 1726994149783_58.247.23.179_30704
16:41:24.412 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:41:24.413 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:25.239 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:27.527 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:28.241 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:28.456 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:30.538 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:30.739 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:31.471 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:31.780 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:33.744 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:34.051 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:34.060 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:34.473 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:34.478 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:34.786 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:34.987 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:34.991 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:35.192 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:35.197 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:35.599 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:35.602 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:35.707 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:35.711 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:36.304 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:36.318 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:39.321 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:39.321 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:40.035 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:40.128 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:43.046 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:43.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:43.852 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:44.053 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:46.854 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:47.058 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:47.756 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:48.069 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:50.762 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:51.074 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:51.773 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:52.178 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:54.776 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:55.183 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:55.881 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:56.396 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:41:58.887 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:41:59.404 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:00.101 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:00.711 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:03.114 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:03.719 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:04.420 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:05.122 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:07.425 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:08.128 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:08.828 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:08.832 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:09.636 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:09.641 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:10.335 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:10.338 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:11.242 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:11.246 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Fail to connect server, after trying 16 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:11.952 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:11.956 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:12.960 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:12.966 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Fail to connect server, after trying 17 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:13.661 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:13.665 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:14.768 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:14.772 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Fail to connect server, after trying 18 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:15.468 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:15.472 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 18 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:42:16.686 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:16.841 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Success to connect a server [110.42.213.184:8848], connectionId = 1726994539934_117.143.60.138_61262
16:42:16.841 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726994149783_58.247.23.179_30704
16:42:16.841 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726994149783_58.247.23.179_30704
16:42:16.843 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Notify disconnected event to listeners
16:42:16.844 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Notify connected event to listeners.
16:42:16.844 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
16:42:17.106 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
16:42:17.342 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Server check success, currentServer is 110.42.213.184:8848
16:42:17.383 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:42:17.525 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726994540632_117.143.60.138_50235
16:42:17.525 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726994140942_58.247.23.179_60986
16:42:17.525 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726994140942_58.247.23.179_60986
16:42:17.525 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Notify disconnected event to listeners
16:42:17.525 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] DisConnected,clear listen context...
16:42:17.526 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Notify connected event to listeners.
16:42:17.526 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Connected,notify listen context...
19:39:41.248 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Server healthy check fail, currentConnection = 1726994539934_117.143.60.138_61262
19:39:41.249 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:39:41.249 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:39:41.983 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Success to connect a server [110.42.213.184:8848], connectionId = 1727005181568_117.143.60.138_52430
19:39:41.983 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726994539934_117.143.60.138_61262
19:39:41.983 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726994539934_117.143.60.138_61262
19:39:41.984 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Notify disconnected event to listeners
19:39:41.984 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Notify connected event to listeners.
19:39:41.984 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
19:39:42.433 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
19:39:46.986 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4aad5519-850d-4fc3-a8f5-d72adc23063c] Server check success, currentServer is 110.42.213.184:8848
19:39:48.449 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
19:41:08.556 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Server healthy check fail, currentConnection = 1726994540632_117.143.60.138_50235
19:41:08.556 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:41:08.556 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:41:09.830 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727005269496_117.143.60.138_52512
19:41:09.830 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726994540632_117.143.60.138_50235
19:41:09.830 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726994540632_117.143.60.138_50235
19:41:09.830 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Notify disconnected event to listeners
19:41:09.830 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] DisConnected,clear listen context...
19:41:09.830 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Notify connected event to listeners.
19:41:09.830 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Connected,notify listen context...
19:41:57.654 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Server healthy check fail, currentConnection = 1727005269496_117.143.60.138_52512
19:41:57.654 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:41:57.654 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:41:59.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727005318943_117.143.60.138_52555
19:41:59.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727005269496_117.143.60.138_52512
19:41:59.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727005269496_117.143.60.138_52512
19:41:59.286 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Notify disconnected event to listeners
19:41:59.286 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] DisConnected,clear listen context...
19:41:59.286 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Notify connected event to listeners.
19:41:59.286 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Connected,notify listen context...
20:02:46.316 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Server healthy check fail, currentConnection = 1727005318943_117.143.60.138_52555
20:02:46.316 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
20:02:46.316 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:02:49.431 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:02:52.433 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
20:02:52.641 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:02:55.628 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727006573001_117.143.60.138_56470
20:02:55.628 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727005318943_117.143.60.138_52555
20:02:55.628 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727005318943_117.143.60.138_52555
20:02:55.628 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Notify disconnected event to listeners
20:02:55.628 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] DisConnected,clear listen context...
20:02:55.628 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Notify connected event to listeners.
20:02:55.628 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [34372b91-ea4f-40d9-95a7-09080f83887a_config-0] Connected,notify listen context...
22:27:04.086 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:27:07.619 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
22:27:07.622 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:27:07.623 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:27:07.744 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:27:08.820 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:27:12.126 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
22:27:12.301 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:27:12.302 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:27:12.303 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:27:12.309 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:27:12.313 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
22:27:12.313 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
22:27:12.444 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 11f544e4-c252-49d3-822b-cda66c9c914f
22:27:12.447 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->11f544e4-c252-49d3-822b-cda66c9c914f
22:27:12.447 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [11f544e4-c252-49d3-822b-cda66c9c914f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:27:12.447 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [11f544e4-c252-49d3-822b-cda66c9c914f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:27:12.449 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [11f544e4-c252-49d3-822b-cda66c9c914f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:27:12.450 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [11f544e4-c252-49d3-822b-cda66c9c914f] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
22:27:12.451 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:12.595 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [11f544e4-c252-49d3-822b-cda66c9c914f] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727015232577_117.143.60.138_60402
22:27:12.596 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [11f544e4-c252-49d3-822b-cda66c9c914f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:27:12.596 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [11f544e4-c252-49d3-822b-cda66c9c914f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000205814366d8
22:27:12.596 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [11f544e4-c252-49d3-822b-cda66c9c914f] Notify connected event to listeners.
22:27:12.596 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:27:12.599 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
22:27:12.625 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.107:9300 register finished
22:27:12.816 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 12.005 seconds (process running for 13.011)
22:27:12.826 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:27:12.827 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:27:12.828 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP
22:27:12.840 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1
22:27:12.841 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP
22:27:12.842 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP
22:27:12.842 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1
22:27:12.844 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP
22:27:12.844 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file+DEFAULT_GROUP
22:27:12.844 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1
22:27:12.844 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP
22:27:20.456 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
22:30:21.083 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:30:21.084 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-file with instance: Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
22:30:21.096 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
22:30:21.097 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
22:30:21.097 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
22:30:21.098 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
22:30:21.098 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
22:30:21.098 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
22:30:21.098 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
22:30:21.098 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
22:30:21.098 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
22:30:21.098 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
22:30:21.098 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
22:30:21.098 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
22:30:21.098 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->11f544e4-c252-49d3-822b-cda66c9c914f
22:30:21.099 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1807a85f[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 62]
22:30:21.099 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
22:30:21.099 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@19fe38cc[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:30:21.099 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727015232577_117.143.60.138_60402
22:30:21.102 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6f76c7e[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 52]
22:30:21.102 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->11f544e4-c252-49d3-822b-cda66c9c914f
22:30:21.103 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
22:30:21.103 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
22:30:21.103 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
22:30:31.858 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:30:34.181 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
22:30:34.184 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:30:34.184 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:30:34.269 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:30:35.239 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:30:38.462 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
22:30:38.626 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:30:38.627 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:30:38.628 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:30:38.636 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:30:38.640 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
22:30:38.640 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
22:30:38.953 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 57fd9421-8446-4070-84ef-a994e0bc6cb9
22:30:38.956 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->57fd9421-8446-4070-84ef-a994e0bc6cb9
22:30:38.956 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [57fd9421-8446-4070-84ef-a994e0bc6cb9] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:30:38.957 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [57fd9421-8446-4070-84ef-a994e0bc6cb9] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:30:38.958 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [57fd9421-8446-4070-84ef-a994e0bc6cb9] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:30:38.960 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [57fd9421-8446-4070-84ef-a994e0bc6cb9] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
22:30:38.961 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:30:39.194 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [57fd9421-8446-4070-84ef-a994e0bc6cb9] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727015439100_117.143.60.138_60724
22:30:39.194 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [57fd9421-8446-4070-84ef-a994e0bc6cb9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:30:39.194 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [57fd9421-8446-4070-84ef-a994e0bc6cb9] Notify connected event to listeners.
22:30:39.194 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [57fd9421-8446-4070-84ef-a994e0bc6cb9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000250df4327c8
22:30:39.195 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:30:39.196 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
22:30:39.215 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.107:9300 register finished
22:30:39.364 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 10.836 seconds (process running for 11.443)
22:30:39.374 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:30:39.375 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:30:39.376 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP
22:30:39.391 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1
22:30:39.392 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP
22:30:39.393 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP
22:30:39.394 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1
22:30:39.394 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP
22:30:39.395 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file+DEFAULT_GROUP
22:30:39.395 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1
22:30:39.396 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP
22:30:59.095 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
22:49:07.534 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:49:07.535 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-file with instance: Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
22:49:07.550 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
22:49:07.551 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
22:49:07.551 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
22:49:07.551 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
22:49:07.552 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
22:49:07.552 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
22:49:07.552 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
22:49:07.552 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
22:49:07.552 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
22:49:07.552 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
22:49:07.552 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
22:49:07.552 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
22:49:07.552 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->57fd9421-8446-4070-84ef-a994e0bc6cb9
22:49:07.553 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@3774319a[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 368]
22:49:07.553 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
22:49:07.553 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@52070d43[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:49:07.553 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727015439100_117.143.60.138_60724
22:49:07.556 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6f316aa8[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 241]
22:49:07.556 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->57fd9421-8446-4070-84ef-a994e0bc6cb9
22:49:07.556 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
22:49:07.557 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
22:49:07.557 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop

View File

@ -0,0 +1,769 @@
08:15:02.248 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
08:15:05.202 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
08:15:05.204 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
08:15:05.205 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
08:15:05.295 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
08:15:06.223 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
08:15:09.263 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
08:15:09.595 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
08:15:09.598 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
08:15:09.599 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
08:15:09.616 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
08:15:09.624 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
08:15:09.625 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
08:15:09.736 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 838e4396-ced7-4255-accc-7f2259c49b00
08:15:09.740 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->838e4396-ced7-4255-accc-7f2259c49b00
08:15:09.741 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
08:15:09.741 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
08:15:09.741 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
08:15:09.743 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
08:15:09.743 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:15:09.901 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727050510187_117.143.60.138_64011
08:15:09.901 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners.
08:15:09.901 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:15:09.901 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
08:15:09.901 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000026083436b38
08:15:09.903 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
08:15:09.933 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.107:9300 register finished
08:15:10.164 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 10.987 seconds (process running for 11.772)
08:15:10.179 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
08:15:10.180 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
08:15:10.181 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP
08:15:10.209 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1
08:15:10.210 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP
08:15:10.215 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP
08:15:10.216 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1
08:15:10.216 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP
08:15:10.217 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file+DEFAULT_GROUP
08:15:10.219 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1
08:15:10.219 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP
08:15:18.428 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
08:58:57.089 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server healthy check fail, currentConnection = 1727050510187_117.143.60.138_64011
08:58:57.090 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to reconnect to a new server, server is not appointed, will choose a random server.
08:58:57.091 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:00.215 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:03.231 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:03.433 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:04.335 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect a server [110.42.213.184:8848], connectionId = 1727053144079_117.143.60.138_57778
08:59:04.335 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050510187_117.143.60.138_64011
08:59:04.335 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050510187_117.143.60.138_64011
08:59:04.336 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify disconnected event to listeners
08:59:04.337 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners.
08:59:04.337 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
08:59:04.755 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:10.772 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:11.412 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server check success, currentServer is 110.42.213.184:8848
08:59:13.785 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:19.808 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:21.637 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server healthy check fail, currentConnection = 1727050502023_117.143.60.138_63984
08:59:21.637 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
08:59:21.638 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:22.818 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:23.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053162888_117.143.60.138_57809
08:59:23.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050502023_117.143.60.138_63984
08:59:23.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050502023_117.143.60.138_63984
08:59:23.286 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify disconnected event to listeners
08:59:23.286 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] DisConnected,clear listen context...
08:59:23.287 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify connected event to listeners.
08:59:23.287 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Connected,notify listen context...
08:59:25.829 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:28.504 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server healthy check fail, currentConnection = 1727053144079_117.143.60.138_57778
08:59:28.504 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to reconnect to a new server, server is not appointed, will choose a random server.
08:59:28.505 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:28.830 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:31.626 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:31.841 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:34.628 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:34.832 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:34.847 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:37.836 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:37.852 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:38.149 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:38.333 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server check success, currentServer is 110.42.213.184:8848
08:59:40.857 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:41.152 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:41.559 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:43.860 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:44.563 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:45.071 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:46.863 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:48.082 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:48.691 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:49.876 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:50.421 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect a server [110.42.213.184:8848], connectionId = 1727053190580_117.143.60.138_57872
08:59:50.421 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053144079_117.143.60.138_57778
08:59:50.421 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053144079_117.143.60.138_57778
08:59:50.421 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify disconnected event to listeners
08:59:50.422 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners.
08:59:50.422 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
08:59:50.988 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server check success, currentServer is 110.42.213.184:8848
08:59:52.889 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:00:00.748 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server healthy check fail, currentConnection = 1727053162888_117.143.60.138_57809
09:00:00.748 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:00:00.748 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:03.873 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:06.885 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:07.087 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:10.091 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:10.403 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:13.407 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:13.810 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:15.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053214951_117.143.60.138_57914
09:00:15.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053162888_117.143.60.138_57809
09:00:15.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053162888_117.143.60.138_57809
09:00:15.705 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify disconnected event to listeners
09:00:15.705 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] DisConnected,clear listen context...
09:00:15.706 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify connected event to listeners.
09:00:15.706 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Connected,notify listen context...
09:00:16.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:00:16.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:18.103 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server healthy check fail, currentConnection = 1727053190580_117.143.60.138_57872
09:00:18.103 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:00:18.103 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:19.828 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:21.227 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:22.845 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:23.046 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:24.232 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:24.432 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:26.050 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:26.364 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:27.442 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:27.754 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:29.379 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:29.788 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:30.769 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:31.174 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:32.796 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:33.297 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:34.184 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:34.700 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:36.309 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:36.919 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:37.768 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect a server [110.42.213.184:8848], connectionId = 1727053237702_117.143.60.138_57961
09:00:37.768 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053190580_117.143.60.138_57872
09:00:37.768 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053190580_117.143.60.138_57872
09:00:37.768 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify disconnected event to listeners
09:00:37.768 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners.
09:00:37.768 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:00:38.108 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:00:39.922 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:40.628 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:43.642 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:44.137 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:00:44.449 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:47.151 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:00:47.461 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:48.364 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:50.158 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:00:51.373 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:52.387 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:53.166 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:00:53.228 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:00:53.228 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:55.390 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:56.173 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:00:56.345 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:56.505 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:56.925 [nacos-grpc-client-executor-110.42.213.184-599] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 3498
09:00:56.926 [nacos-grpc-client-executor-110.42.213.184-599] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 3498
09:00:56.926 [nacos-grpc-client-executor-110.42.213.184-599] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1727053214951_117.143.60.138_57914]Ignore complete event,isRunning:false,isAbandon=false
09:00:59.188 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:00:59.359 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:59.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:59.563 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:00.731 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:02.196 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:01:02.572 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:02.882 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:03.745 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:05.052 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:05.209 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:01:05.894 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:06.302 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:08.069 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:08.224 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:01:08.303 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect a server [110.42.213.184:8848], connectionId = 1727053266976_117.143.60.138_58104
09:01:08.303 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053237702_117.143.60.138_57961
09:01:08.303 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053237702_117.143.60.138_57961
09:01:08.303 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify disconnected event to listeners
09:01:08.303 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners.
09:01:08.303 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:01:09.474 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:11.235 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:01:12.479 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:13.990 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:17.006 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:18.617 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:21.340 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053281328_117.143.60.138_58153
09:01:21.340 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053214951_117.143.60.138_57914
09:01:21.340 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053214951_117.143.60.138_57914
09:01:21.340 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify disconnected event to listeners
09:01:21.340 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] DisConnected,clear listen context...
09:01:21.340 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify connected event to listeners.
09:01:21.340 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Connected,notify listen context...
09:01:36.386 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server healthy check fail, currentConnection = 1727053266976_117.143.60.138_58104
09:01:36.386 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:01:36.386 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:38.443 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect a server [110.42.213.184:8848], connectionId = 1727053298092_117.143.60.138_58222
09:01:38.443 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053266976_117.143.60.138_58104
09:01:38.443 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053266976_117.143.60.138_58104
09:01:38.443 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify disconnected event to listeners
09:01:38.443 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners.
09:01:38.443 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:01:41.405 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:02:11.836 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server check success, currentServer is 110.42.213.184:8848
09:02:26.191 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server healthy check fail, currentConnection = 1727053281328_117.143.60.138_58153
09:02:26.191 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:02:26.191 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:29.314 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:30.638 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053350002_117.143.60.138_58485
09:02:30.638 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053281328_117.143.60.138_58153
09:02:30.638 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053281328_117.143.60.138_58153
09:02:30.638 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify disconnected event to listeners
09:02:30.638 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] DisConnected,clear listen context...
09:02:30.639 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify connected event to listeners.
09:02:30.639 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Connected,notify listen context...
09:02:40.214 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server healthy check fail, currentConnection = 1727053298092_117.143.60.138_58222
09:02:40.214 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:02:40.214 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:40.793 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server check success, currentServer is 110.42.213.184:8848
09:02:43.335 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:46.345 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:02:46.547 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:49.550 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:02:49.860 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:52.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:02:53.276 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:56.285 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:02:56.787 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:59.798 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:00.407 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:03.425 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:04.127 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:07.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:07.947 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:10.961 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:11.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:14.880 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:15.892 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:18.899 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:20.010 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:23.016 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:24.229 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:27.235 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:28.544 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:31.560 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:32.865 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server healthy check fail, currentConnection = 1727053350002_117.143.60.138_58485
09:03:32.865 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:03:32.865 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:32.975 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:35.983 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:35.983 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:37.494 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:38.462 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053417692_117.143.60.138_51356
09:03:38.462 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053350002_117.143.60.138_58485
09:03:38.462 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053350002_117.143.60.138_58485
09:03:38.462 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify disconnected event to listeners
09:03:38.462 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] DisConnected,clear listen context...
09:03:38.462 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify connected event to listeners.
09:03:38.462 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Connected,notify listen context...
09:03:40.504 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:42.114 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:43.907 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect a server [110.42.213.184:8848], connectionId = 1727053424091_117.143.60.138_51365
09:03:43.907 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053298092_117.143.60.138_58222
09:03:43.907 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053298092_117.143.60.138_58222
09:03:43.907 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify disconnected event to listeners
09:03:43.907 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners.
09:03:43.907 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:03:45.831 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server check success, currentServer is 110.42.213.184:8848
09:03:46.842 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:04:45.911 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server check success, currentServer is 110.42.213.184:8848
09:05:48.756 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server healthy check fail, currentConnection = 1727053417692_117.143.60.138_51356
09:05:48.757 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:05:48.758 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:51.876 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:53.587 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053553642_117.143.60.138_50033
09:05:53.587 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053417692_117.143.60.138_51356
09:05:53.587 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053417692_117.143.60.138_51356
09:05:53.587 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify disconnected event to listeners
09:05:53.587 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] DisConnected,clear listen context...
09:05:53.588 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify connected event to listeners.
09:05:53.588 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Connected,notify listen context...
09:05:57.671 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server check success, currentServer is 110.42.213.184:8848
09:07:21.676 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server check success, currentServer is 110.42.213.184:8848
09:10:11.146 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
09:10:11.146 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-file with instance: Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
09:10:11.747 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
09:10:11.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
09:10:11.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
09:10:11.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
09:10:11.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
09:10:11.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
09:10:11.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->838e4396-ced7-4255-accc-7f2259c49b00
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@d74f542[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1093]
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3d06bfd5[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053424091_117.143.60.138_51365
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7fc94233[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 794]
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->838e4396-ced7-4255-accc-7f2259c49b00
09:10:11.750 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
09:10:11.750 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
09:10:11.750 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
09:10:11.750 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server healthy check fail, currentConnection = 1727053424091_117.143.60.138_51365
09:10:41.549 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
09:10:43.857 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
09:10:43.861 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:10:43.861 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
09:10:43.953 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:10:45.320 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:10:49.734 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
09:10:49.930 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
09:10:49.930 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
09:10:49.931 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
09:10:49.939 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
09:10:49.946 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:10:49.947 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:10:50.785 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b
09:10:50.789 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b
09:10:50.790 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:10:50.791 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:10:50.792 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:10:50.792 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
09:10:50.793 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:10:51.502 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727053851529_117.143.60.138_55868
09:10:51.502 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:10:51.502 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Notify connected event to listeners.
09:10:51.502 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001e33a42fde0
09:10:51.503 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:10:51.504 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
09:10:51.703 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.107:9300 register finished
09:10:51.896 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 16.348 seconds (process running for 17.193)
09:10:51.910 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
09:10:51.912 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
09:10:51.913 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP
09:10:51.926 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1
09:10:51.927 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP
09:10:51.929 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP
09:10:51.930 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1
09:10:51.930 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP
09:10:51.931 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file+DEFAULT_GROUP
09:10:51.932 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1
09:10:51.933 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP
09:11:01.700 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:55:40.488 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Server check success, currentServer is 110.42.213.184:8848
09:56:58.945 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Server healthy check fail, currentConnection = 1727053839884_117.143.60.138_55806
09:56:58.945 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:56:58.948 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:57:01.547 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056619711_117.143.60.138_55318
09:57:01.547 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053839884_117.143.60.138_55806
09:57:01.547 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053839884_117.143.60.138_55806
09:57:01.553 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Notify disconnected event to listeners
09:57:01.554 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] DisConnected,clear listen context...
09:57:01.554 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Notify connected event to listeners.
09:57:01.554 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Connected,notify listen context...
09:57:08.242 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Server check success, currentServer is 110.42.213.184:8848
09:58:18.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Server healthy check fail, currentConnection = 1727056619711_117.143.60.138_55318
09:58:18.365 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:58:18.365 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:58:21.477 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:58:24.482 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:58:24.684 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:58:27.002 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056707156_117.143.60.138_55463
09:58:27.002 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056619711_117.143.60.138_55318
09:58:27.003 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056619711_117.143.60.138_55318
09:58:27.003 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Notify disconnected event to listeners
09:58:27.003 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] DisConnected,clear listen context...
09:58:27.003 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Notify connected event to listeners.
09:58:27.003 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Connected,notify listen context...
10:02:48.947 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Server check success, currentServer is 110.42.213.184:8848
10:37:30.043 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
10:37:30.044 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-file with instance: Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
10:37:30.120 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
10:37:30.122 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
10:37:30.122 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
10:37:30.123 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
10:37:30.123 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
10:37:30.124 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
10:37:30.124 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
10:37:30.124 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
10:37:30.124 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
10:37:30.125 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
10:37:30.125 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
10:37:30.125 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
10:37:30.125 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b
10:37:30.126 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@7d965ee0[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1728]
10:37:30.126 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
10:37:30.126 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1dba9420[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
10:37:30.126 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053851529_117.143.60.138_55868
10:37:30.127 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@48353597[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 1043]
10:37:30.127 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b
10:37:30.129 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
10:37:30.129 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
10:37:30.129 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
11:05:32.522 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
11:05:35.270 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
11:05:35.272 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
11:05:35.272 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
11:05:35.353 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
11:05:36.391 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
11:05:39.861 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
11:05:40.167 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
11:05:40.169 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
11:05:40.170 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
11:05:40.184 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
11:05:40.196 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
11:05:40.200 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
11:05:40.399 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 29b71aa3-3811-4ddd-b6d7-a7af4b0c224b
11:05:40.401 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->29b71aa3-3811-4ddd-b6d7-a7af4b0c224b
11:05:40.402 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
11:05:40.402 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
11:05:40.404 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
11:05:40.404 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
11:05:40.405 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
11:05:40.691 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727060741105_58.247.23.179_32431
11:05:40.691 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:05:40.691 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify connected event to listeners.
11:05:40.691 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000176ca4364d8
11:05:40.691 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
11:05:40.692 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-file with instance Instance{instanceId='null', ip='192.168.54.217', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
11:05:40.758 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 192.168.54.217:9300 register finished
11:05:40.943 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 11.732 seconds (process running for 12.478)
11:05:40.952 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
11:05:40.953 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
11:05:40.953 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP
11:05:40.964 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1
11:05:40.964 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP
11:05:40.965 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP
11:05:40.966 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1
11:05:40.967 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP
11:05:40.968 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file+DEFAULT_GROUP
11:05:40.968 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1
11:05:40.968 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP
11:05:57.675 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
11:49:27.646 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Server healthy check fail, currentConnection = 1727060741105_58.247.23.179_32431
11:49:27.646 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Try to reconnect to a new server, server is not appointed, will choose a random server.
11:49:27.647 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
11:49:28.253 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Success to connect a server [110.42.213.184:8848], connectionId = 1727063368585_58.247.23.179_62238
11:49:28.253 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727060741105_58.247.23.179_32431
11:49:28.253 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727060741105_58.247.23.179_32431
11:49:28.257 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify disconnected event to listeners
11:49:28.258 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify connected event to listeners.
11:49:28.259 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
11:49:28.799 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Server check success, currentServer is 110.42.213.184:8848
11:49:29.923 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
12:02:29.540 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Server check success, currentServer is 110.42.213.184:8848
12:22:32.802 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Server check success, currentServer is 110.42.213.184:8848
12:40:04.595 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Server healthy check fail, currentConnection = 1727060732196_58.247.23.179_62228
12:40:04.595 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
12:40:04.596 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:07.718 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:09.774 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Server healthy check fail, currentConnection = 1727063368585_58.247.23.179_62238
12:40:09.774 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Try to reconnect to a new server, server is not appointed, will choose a random server.
12:40:09.775 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:10.730 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:40:10.932 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:12.896 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:13.936 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:40:14.247 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:15.905 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:40:16.107 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:17.264 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:40:17.667 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:19.120 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:40:19.429 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:20.679 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:40:21.194 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:22.444 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:40:22.849 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:24.210 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:40:24.440 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Success to connect a server [110.42.213.184:8848], connectionId = 1727066424950_58.247.23.179_32924
12:40:24.440 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727063368585_58.247.23.179_62238
12:40:24.440 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727063368585_58.247.23.179_62238
12:40:24.441 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify disconnected event to listeners
12:40:24.442 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify connected event to listeners.
12:40:24.442 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
12:40:24.690 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Server check success, currentServer is 110.42.213.184:8848
12:40:24.816 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:25.050 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727066425593_58.247.23.179_62497
12:40:25.050 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727060732196_58.247.23.179_62228
12:40:25.051 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727060732196_58.247.23.179_62228
12:40:25.051 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Notify disconnected event to listeners
12:40:25.051 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] DisConnected,clear listen context...
12:40:25.051 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Notify connected event to listeners.
12:40:25.053 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Connected,notify listen context...
12:40:26.936 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
12:50:47.181 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Server healthy check fail, currentConnection = 1727066424950_58.247.23.179_32924
12:50:47.181 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Try to reconnect to a new server, server is not appointed, will choose a random server.
12:50:47.184 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:48.962 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Server healthy check fail, currentConnection = 1727066425593_58.247.23.179_62497
12:50:48.962 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
12:50:48.963 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:50.305 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:52.082 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:53.318 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:53.519 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:53.532 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:53.844 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:53.847 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:54.251 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:54.256 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:54.766 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:54.771 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:55.099 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:55.302 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:55.307 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:55.376 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:55.381 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:55.613 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:55.617 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:56.030 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:56.034 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:56.093 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:56.096 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:56.544 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:56.548 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:56.901 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:56.904 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:57.153 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:57.157 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:57.809 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:57.813 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:57.871 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:57.875 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:58.685 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:58.688 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:58.826 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:58.833 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:59.591 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:59.595 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:59.950 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:59.957 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:00.606 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:00.610 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:01.166 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:01.169 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:01.711 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:02.475 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:02.837 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:04.238 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:04.718 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:05.520 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:05.929 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:06.195 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:07.027 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:07.269 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:07.510 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:07.762 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:08.884 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:09.122 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 16 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:09.165 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:09.404 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:10.830 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:10.907 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:10.985 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Success to connect a server [110.42.213.184:8848], connectionId = 1727067071575_117.143.60.138_52856
12:51:10.985 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727066424950_58.247.23.179_32924
12:51:10.985 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727066424950_58.247.23.179_32924
12:51:10.985 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify disconnected event to listeners
12:51:10.985 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify connected event to listeners.
12:51:10.985 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
12:51:11.047 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727067071648_117.143.60.138_52858
12:51:11.047 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727066425593_58.247.23.179_62497
12:51:11.047 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727066425593_58.247.23.179_62497
12:51:11.047 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Notify disconnected event to listeners
12:51:11.048 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] DisConnected,clear listen context...
12:51:11.048 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Notify connected event to listeners.
12:51:11.048 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Connected,notify listen context...
12:51:13.853 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
14:25:21.961 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Server healthy check fail, currentConnection = 1727067071575_117.143.60.138_52856
14:25:21.961 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Try to reconnect to a new server, server is not appointed, will choose a random server.
14:25:21.961 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:25:23.985 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Success to connect a server [110.42.213.184:8848], connectionId = 1727072724024_117.143.60.138_63540
14:25:23.985 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727067071575_117.143.60.138_52856
14:25:23.985 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727067071575_117.143.60.138_52856
14:25:23.985 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify disconnected event to listeners
14:25:23.986 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify connected event to listeners.
14:25:23.986 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
14:25:26.643 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
14:26:22.125 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Server healthy check fail, currentConnection = 1727072724024_117.143.60.138_63540
14:26:22.125 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Try to reconnect to a new server, server is not appointed, will choose a random server.
14:26:22.125 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:26:23.061 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Success to connect a server [110.42.213.184:8848], connectionId = 1727072783616_117.143.60.138_63593
14:26:23.061 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727072724024_117.143.60.138_63540
14:26:23.061 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727072724024_117.143.60.138_63540
14:26:23.061 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify disconnected event to listeners
14:26:23.063 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify connected event to listeners.
14:26:23.063 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
14:26:24.638 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
14:26:45.357 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Server healthy check fail, currentConnection = 1727072783616_117.143.60.138_63593
14:26:45.357 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Try to reconnect to a new server, server is not appointed, will choose a random server.
14:26:45.357 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:26:48.322 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Success to connect a server [110.42.213.184:8848], connectionId = 1727072806403_117.143.60.138_63614
14:26:48.322 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727072783616_117.143.60.138_63593
14:26:48.322 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727072783616_117.143.60.138_63593
14:26:48.322 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify disconnected event to listeners
14:26:48.323 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify connected event to listeners.
14:26:48.323 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
14:26:48.869 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
14:31:06.908 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Server healthy check fail, currentConnection = 1727072806403_117.143.60.138_63614
14:31:06.908 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Try to reconnect to a new server, server is not appointed, will choose a random server.
14:31:06.908 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:31:08.312 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Success to connect a server [110.42.213.184:8848], connectionId = 1727073068420_117.143.60.138_65397
14:31:08.312 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727072806403_117.143.60.138_63614
14:31:08.312 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727072806403_117.143.60.138_63614
14:31:08.312 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify disconnected event to listeners
14:31:08.312 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify connected event to listeners.
14:31:08.312 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
14:31:10.728 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
14:31:13.980 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Server check success, currentServer is 110.42.213.184:8848
14:31:16.753 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
14:31:46.559 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Server healthy check fail, currentConnection = 1727067071648_117.143.60.138_52858
14:31:46.559 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
14:31:46.559 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:31:49.679 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:31:52.685 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
14:31:52.888 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:31:54.680 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727073115229_117.143.60.138_65434
14:31:54.680 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727067071648_117.143.60.138_52858
14:31:54.680 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727067071648_117.143.60.138_52858
14:31:54.680 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Notify disconnected event to listeners
14:31:54.680 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] DisConnected,clear listen context...
14:31:54.680 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Notify connected event to listeners.
14:31:54.680 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Connected,notify listen context...
14:31:55.146 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
14:31:55.146 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:31:58.260 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:32:01.274 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
14:32:01.475 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:32:04.096 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727073122490_117.143.60.138_65448
14:32:04.096 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727073115229_117.143.60.138_65434
14:32:04.096 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727073115229_117.143.60.138_65434
14:32:04.096 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Notify disconnected event to listeners
14:32:04.096 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] DisConnected,clear listen context...
14:32:04.098 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Notify connected event to listeners.
14:32:04.098 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Connected,notify listen context...
14:32:04.470 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
14:32:04.470 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:32:05.818 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727073125516_117.143.60.138_65450
14:32:05.818 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727073122490_117.143.60.138_65448
14:32:05.818 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727073122490_117.143.60.138_65448
14:32:05.818 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Notify disconnected event to listeners
14:32:05.818 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] DisConnected,clear listen context...
14:32:05.818 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Notify connected event to listeners.
14:32:05.818 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Connected,notify listen context...
14:32:06.094 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Server check success, currentServer is 110.42.213.184:8848
14:32:34.236 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Server healthy check fail, currentConnection = 1727073068420_117.143.60.138_65397
14:32:34.236 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Try to reconnect to a new server, server is not appointed, will choose a random server.
14:32:34.236 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:32:37.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:32:38.178 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Success to connect a server [110.42.213.184:8848], connectionId = 1727073158352_117.143.60.138_65488
14:32:38.178 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727073068420_117.143.60.138_65397
14:32:38.178 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727073068420_117.143.60.138_65397
14:32:38.178 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify disconnected event to listeners
14:32:38.178 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify connected event to listeners.
14:32:38.178 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
14:32:39.034 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
14:33:04.423 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Server healthy check fail, currentConnection = 1727073125516_117.143.60.138_65450
14:33:04.423 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
14:33:04.423 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:33:06.512 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727073185463_117.143.60.138_65513
14:33:06.512 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727073125516_117.143.60.138_65450
14:33:06.512 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727073125516_117.143.60.138_65450
14:33:06.512 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Notify disconnected event to listeners
14:33:06.512 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] DisConnected,clear listen context...
14:33:06.512 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Notify connected event to listeners.
14:33:06.512 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Connected,notify listen context...
16:22:20.181 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Server healthy check fail, currentConnection = 1727073158352_117.143.60.138_65488
16:22:20.181 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:22:20.183 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:22:23.295 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:22:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:22:26.500 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:22:28.840 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Success to connect a server [110.42.213.184:8848], connectionId = 1727079748010_117.143.60.138_52861
16:22:28.840 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727073158352_117.143.60.138_65488
16:22:28.840 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727073158352_117.143.60.138_65488
16:22:28.841 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify disconnected event to listeners
16:22:28.841 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [29b71aa3-3811-4ddd-b6d7-a7af4b0c224b] Notify connected event to listeners.
16:22:28.841 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
16:22:31.257 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
16:24:34.420 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Server check success, currentServer is 110.42.213.184:8848
16:30:20.767 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Server healthy check fail, currentConnection = 1727073185463_117.143.60.138_65513
16:30:20.767 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:30:20.768 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:30:22.518 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727080223069_117.143.60.138_64673
16:30:22.518 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727073185463_117.143.60.138_65513
16:30:22.518 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727073185463_117.143.60.138_65513
16:30:22.519 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Notify disconnected event to listeners
16:30:22.519 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] DisConnected,clear listen context...
16:30:22.519 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Notify connected event to listeners.
16:30:22.519 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [db7efaed-c603-40e4-9100-306fbb90346e_config-0] Connected,notify listen context...
19:21:49.917 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
19:21:49.920 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-file with instance: Instance{instanceId='null', ip='192.168.54.217', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
19:21:50.005 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
19:21:50.009 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
19:21:50.009 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
19:21:50.010 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
19:21:50.010 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
19:21:50.010 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
19:21:50.011 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
19:21:50.011 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
19:21:50.011 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
19:21:50.012 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
19:21:50.013 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
19:21:50.013 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
19:21:50.013 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->29b71aa3-3811-4ddd-b6d7-a7af4b0c224b
19:21:50.014 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@34efa797[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 9892]
19:21:50.014 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
19:21:50.015 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@25eb150a[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
19:21:50.015 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727079748010_117.143.60.138_52861
19:21:50.019 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4db88292[Running, pool size = 4, active threads = 1, queued tasks = 0, completed tasks = 5796]
19:21:50.019 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->29b71aa3-3811-4ddd-b6d7-a7af4b0c224b
19:21:50.021 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
19:21:50.022 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
19:21:50.023 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
22:26:31.241 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:26:34.896 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
22:26:34.899 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:26:34.899 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:26:35.030 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:26:36.425 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:26:41.263 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
22:26:41.479 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:26:41.481 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:26:41.481 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:26:41.496 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:26:41.504 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
22:26:41.504 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
22:26:41.996 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 3a74d962-41ef-47de-b418-f134413c8108
22:26:42.000 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->3a74d962-41ef-47de-b418-f134413c8108
22:26:42.000 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3a74d962-41ef-47de-b418-f134413c8108] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:26:42.001 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3a74d962-41ef-47de-b418-f134413c8108] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:26:42.002 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3a74d962-41ef-47de-b418-f134413c8108] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:26:42.004 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3a74d962-41ef-47de-b418-f134413c8108] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
22:26:42.004 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:42.154 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3a74d962-41ef-47de-b418-f134413c8108] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727101602254_117.143.60.138_56838
22:26:42.154 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3a74d962-41ef-47de-b418-f134413c8108] Notify connected event to listeners.
22:26:42.155 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:26:42.155 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3a74d962-41ef-47de-b418-f134413c8108] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:26:42.156 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3a74d962-41ef-47de-b418-f134413c8108] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001e3ad441eb8
22:26:42.157 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.59', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
22:26:42.179 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.59:9300 register finished
22:26:42.361 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 17.135 seconds (process running for 18.2)
22:26:42.376 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:26:42.376 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:26:42.377 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP
22:26:42.391 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1
22:26:42.392 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP
22:26:42.395 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP
22:26:42.395 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1
22:26:42.396 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP
22:26:42.396 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file+DEFAULT_GROUP
22:26:42.398 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1
22:26:42.398 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP
22:26:51.378 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'

View File

@ -1,409 +1,65 @@
08:15:02.248 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
08:15:05.202 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
08:15:05.204 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
08:15:05.205 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
08:15:05.295 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
08:15:06.223 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
08:15:09.263 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
08:15:09.595 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
08:15:09.598 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
08:15:09.599 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
08:15:09.616 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
08:15:09.624 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
08:15:09.625 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
08:15:09.736 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 838e4396-ced7-4255-accc-7f2259c49b00
08:15:09.740 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->838e4396-ced7-4255-accc-7f2259c49b00
08:15:09.741 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
08:15:09.741 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
08:15:09.741 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
08:15:09.743 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
08:15:09.743 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:15:09.901 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727050510187_117.143.60.138_64011
08:15:09.901 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners.
08:15:09.901 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:15:09.901 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
08:15:09.901 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000026083436b38
08:15:09.903 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
08:15:09.933 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.107:9300 register finished
08:15:10.164 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 10.987 seconds (process running for 11.772)
08:15:10.179 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
08:15:10.180 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
08:15:10.181 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP
08:15:10.209 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1
08:15:10.210 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP
08:15:10.215 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP
08:15:10.216 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1
08:15:10.216 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP
08:15:10.217 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file+DEFAULT_GROUP
08:15:10.219 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1
08:15:10.219 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP
08:15:18.428 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
08:58:57.089 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server healthy check fail, currentConnection = 1727050510187_117.143.60.138_64011
08:58:57.090 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to reconnect to a new server, server is not appointed, will choose a random server.
08:58:57.091 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:00.215 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:03.231 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:03.433 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:04.335 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect a server [110.42.213.184:8848], connectionId = 1727053144079_117.143.60.138_57778
08:59:04.335 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050510187_117.143.60.138_64011
08:59:04.335 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050510187_117.143.60.138_64011
08:59:04.336 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify disconnected event to listeners
08:59:04.337 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners.
08:59:04.337 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
08:59:04.755 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:10.772 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:11.412 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server check success, currentServer is 110.42.213.184:8848
08:59:13.785 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:19.808 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:21.637 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server healthy check fail, currentConnection = 1727050502023_117.143.60.138_63984
08:59:21.637 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
08:59:21.638 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:22.818 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:23.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053162888_117.143.60.138_57809
08:59:23.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050502023_117.143.60.138_63984
08:59:23.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050502023_117.143.60.138_63984
08:59:23.286 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify disconnected event to listeners
08:59:23.286 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] DisConnected,clear listen context...
08:59:23.287 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify connected event to listeners.
08:59:23.287 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Connected,notify listen context...
08:59:25.829 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:28.504 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server healthy check fail, currentConnection = 1727053144079_117.143.60.138_57778
08:59:28.504 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to reconnect to a new server, server is not appointed, will choose a random server.
08:59:28.505 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:28.830 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:31.626 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:31.841 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:34.628 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:34.832 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:34.847 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:37.836 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:37.852 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:38.149 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:38.333 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server check success, currentServer is 110.42.213.184:8848
08:59:40.857 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:41.152 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:41.559 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:43.860 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:44.563 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:45.071 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:46.863 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:48.082 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
08:59:48.691 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:49.876 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
08:59:50.421 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect a server [110.42.213.184:8848], connectionId = 1727053190580_117.143.60.138_57872
08:59:50.421 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053144079_117.143.60.138_57778
08:59:50.421 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053144079_117.143.60.138_57778
08:59:50.421 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify disconnected event to listeners
08:59:50.422 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners.
08:59:50.422 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
08:59:50.988 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server check success, currentServer is 110.42.213.184:8848
08:59:52.889 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:00:00.748 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server healthy check fail, currentConnection = 1727053162888_117.143.60.138_57809
09:00:00.748 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:00:00.748 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:03.873 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:06.885 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:07.087 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:10.091 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:10.403 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:13.407 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:13.810 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:15.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053214951_117.143.60.138_57914
09:00:15.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053162888_117.143.60.138_57809
09:00:15.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053162888_117.143.60.138_57809
09:00:15.705 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify disconnected event to listeners
09:00:15.705 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] DisConnected,clear listen context...
09:00:15.706 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify connected event to listeners.
09:00:15.706 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Connected,notify listen context...
09:00:16.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:00:16.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:18.103 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server healthy check fail, currentConnection = 1727053190580_117.143.60.138_57872
09:00:18.103 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:00:18.103 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:19.828 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:21.227 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:22.845 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:23.046 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:24.232 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:24.432 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:26.050 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:26.364 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:27.442 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:27.754 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:29.379 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:29.788 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:30.769 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:31.174 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:32.796 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:33.297 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:34.184 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:34.700 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:36.309 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:36.919 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:37.768 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect a server [110.42.213.184:8848], connectionId = 1727053237702_117.143.60.138_57961
09:00:37.768 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053190580_117.143.60.138_57872
09:00:37.768 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053190580_117.143.60.138_57872
09:00:37.768 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify disconnected event to listeners
09:00:37.768 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners.
09:00:37.768 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:00:38.108 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:00:39.922 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:40.628 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:43.642 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:44.137 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:00:44.449 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:47.151 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:00:47.461 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:48.364 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:50.158 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:00:51.373 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:52.387 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:53.166 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:00:53.228 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:00:53.228 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:55.390 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:56.173 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:00:56.345 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:56.505 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:56.925 [nacos-grpc-client-executor-110.42.213.184-599] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 3498
09:00:56.926 [nacos-grpc-client-executor-110.42.213.184-599] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 3498
09:00:56.926 [nacos-grpc-client-executor-110.42.213.184-599] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1727053214951_117.143.60.138_57914]Ignore complete event,isRunning:false,isAbandon=false
09:00:59.188 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:00:59.359 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:59.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:00:59.563 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:00.731 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:02.196 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:01:02.572 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:02.882 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:03.745 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:05.052 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:05.209 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:01:05.894 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:06.302 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:08.069 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:08.224 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:01:08.303 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect a server [110.42.213.184:8848], connectionId = 1727053266976_117.143.60.138_58104
09:01:08.303 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053237702_117.143.60.138_57961
09:01:08.303 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053237702_117.143.60.138_57961
09:01:08.303 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify disconnected event to listeners
09:01:08.303 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners.
09:01:08.303 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:01:09.474 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:11.235 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:01:12.479 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:13.990 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:17.006 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:18.617 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:21.340 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053281328_117.143.60.138_58153
09:01:21.340 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053214951_117.143.60.138_57914
09:01:21.340 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053214951_117.143.60.138_57914
09:01:21.340 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify disconnected event to listeners
09:01:21.340 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] DisConnected,clear listen context...
09:01:21.340 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify connected event to listeners.
09:01:21.340 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Connected,notify listen context...
09:01:36.386 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server healthy check fail, currentConnection = 1727053266976_117.143.60.138_58104
09:01:36.386 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:01:36.386 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:38.443 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect a server [110.42.213.184:8848], connectionId = 1727053298092_117.143.60.138_58222
09:01:38.443 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053266976_117.143.60.138_58104
09:01:38.443 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053266976_117.143.60.138_58104
09:01:38.443 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify disconnected event to listeners
09:01:38.443 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners.
09:01:38.443 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:01:41.405 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:02:11.836 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server check success, currentServer is 110.42.213.184:8848
09:02:26.191 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server healthy check fail, currentConnection = 1727053281328_117.143.60.138_58153
09:02:26.191 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:02:26.191 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:29.314 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:30.638 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053350002_117.143.60.138_58485
09:02:30.638 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053281328_117.143.60.138_58153
09:02:30.638 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053281328_117.143.60.138_58153
09:02:30.638 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify disconnected event to listeners
09:02:30.638 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] DisConnected,clear listen context...
09:02:30.639 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify connected event to listeners.
09:02:30.639 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Connected,notify listen context...
09:02:40.214 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server healthy check fail, currentConnection = 1727053298092_117.143.60.138_58222
09:02:40.214 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:02:40.214 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:40.793 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server check success, currentServer is 110.42.213.184:8848
09:02:43.335 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:46.345 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:02:46.547 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:49.550 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:02:49.860 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:52.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:02:53.276 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:56.285 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:02:56.787 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:59.798 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:00.407 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:03.425 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:04.127 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:07.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:07.947 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:10.961 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:11.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:14.880 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:15.892 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:18.899 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:20.010 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:23.016 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:24.229 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:27.235 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:28.544 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:31.560 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:32.865 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server healthy check fail, currentConnection = 1727053350002_117.143.60.138_58485
09:03:32.865 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:03:32.865 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:32.975 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:35.983 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:35.983 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:37.494 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:38.462 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053417692_117.143.60.138_51356
09:03:38.462 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053350002_117.143.60.138_58485
09:03:38.462 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053350002_117.143.60.138_58485
09:03:38.462 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify disconnected event to listeners
09:03:38.462 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] DisConnected,clear listen context...
09:03:38.462 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify connected event to listeners.
09:03:38.462 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Connected,notify listen context...
09:03:40.504 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:03:42.114 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:43.907 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect a server [110.42.213.184:8848], connectionId = 1727053424091_117.143.60.138_51365
09:03:43.907 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053298092_117.143.60.138_58222
09:03:43.907 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053298092_117.143.60.138_58222
09:03:43.907 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify disconnected event to listeners
09:03:43.907 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners.
09:03:43.907 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:03:45.831 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server check success, currentServer is 110.42.213.184:8848
09:03:46.842 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:04:45.911 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server check success, currentServer is 110.42.213.184:8848
09:05:48.756 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server healthy check fail, currentConnection = 1727053417692_117.143.60.138_51356
09:05:48.757 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:05:48.758 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:51.876 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:53.587 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053553642_117.143.60.138_50033
09:05:53.587 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053417692_117.143.60.138_51356
09:05:53.587 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053417692_117.143.60.138_51356
09:05:53.587 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify disconnected event to listeners
09:05:53.587 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] DisConnected,clear listen context...
09:05:53.588 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify connected event to listeners.
09:05:53.588 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Connected,notify listen context...
09:05:57.671 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server check success, currentServer is 110.42.213.184:8848
09:07:21.676 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server check success, currentServer is 110.42.213.184:8848
09:10:11.146 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
09:10:11.146 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-file with instance: Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
09:10:11.747 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
09:10:11.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
09:10:11.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
09:10:11.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
09:10:11.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
09:10:11.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
09:10:11.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->838e4396-ced7-4255-accc-7f2259c49b00
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@d74f542[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1093]
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3d06bfd5[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053424091_117.143.60.138_51365
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7fc94233[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 794]
09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->838e4396-ced7-4255-accc-7f2259c49b00
09:10:11.750 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
09:10:11.750 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
09:10:11.750 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
09:10:11.750 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server healthy check fail, currentConnection = 1727053424091_117.143.60.138_51365
09:10:41.549 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
09:10:43.857 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
09:10:43.861 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:10:43.861 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
09:10:43.953 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:10:45.320 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:10:49.734 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
09:10:49.930 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
09:10:49.930 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
09:10:49.931 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
09:10:49.939 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
09:10:49.946 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:10:49.947 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:10:50.785 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b
09:10:50.789 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b
09:10:50.790 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:10:50.791 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:10:50.792 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:10:50.792 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
09:10:50.793 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:10:51.502 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727053851529_117.143.60.138_55868
09:10:51.502 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:10:51.502 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Notify connected event to listeners.
09:10:51.502 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001e33a42fde0
09:10:51.503 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:10:51.504 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
09:10:51.703 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.107:9300 register finished
09:10:51.896 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 16.348 seconds (process running for 17.193)
09:10:51.910 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
09:10:51.912 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
09:10:51.913 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP
09:10:51.926 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1
09:10:51.927 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP
09:10:51.929 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP
09:10:51.930 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1
09:10:51.930 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP
09:10:51.931 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file+DEFAULT_GROUP
09:10:51.932 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1
09:10:51.933 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP
09:11:01.700 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:55:40.488 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Server check success, currentServer is 110.42.213.184:8848
09:56:58.945 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Server healthy check fail, currentConnection = 1727053839884_117.143.60.138_55806
09:56:58.945 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:56:58.948 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:57:01.547 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056619711_117.143.60.138_55318
09:57:01.547 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053839884_117.143.60.138_55806
09:57:01.547 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053839884_117.143.60.138_55806
09:57:01.553 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Notify disconnected event to listeners
09:57:01.554 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] DisConnected,clear listen context...
09:57:01.554 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Notify connected event to listeners.
09:57:01.554 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Connected,notify listen context...
09:57:08.242 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Server check success, currentServer is 110.42.213.184:8848
09:58:18.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Server healthy check fail, currentConnection = 1727056619711_117.143.60.138_55318
09:58:18.365 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:58:18.365 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:58:21.477 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:58:24.482 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:58:24.684 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:58:27.002 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056707156_117.143.60.138_55463
09:58:27.002 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056619711_117.143.60.138_55318
09:58:27.003 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056619711_117.143.60.138_55318
09:58:27.003 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Notify disconnected event to listeners
09:58:27.003 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] DisConnected,clear listen context...
09:58:27.003 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Notify connected event to listeners.
09:58:27.003 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Connected,notify listen context...
10:02:48.947 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Server check success, currentServer is 110.42.213.184:8848
10:37:30.043 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
10:37:30.044 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-file with instance: Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
10:37:30.120 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
10:37:30.122 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
10:37:30.122 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
10:37:30.123 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
10:37:30.123 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
10:37:30.124 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
10:37:30.124 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
10:37:30.124 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
10:37:30.124 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
10:37:30.125 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
10:37:30.125 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
10:37:30.125 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
10:37:30.125 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b
10:37:30.126 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@7d965ee0[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1728]
10:37:30.126 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
10:37:30.126 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1dba9420[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
10:37:30.126 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053851529_117.143.60.138_55868
10:37:30.127 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@48353597[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 1043]
10:37:30.127 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b
10:37:30.129 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
10:37:30.129 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
10:37:30.129 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
09:05:20.589 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
09:05:23.501 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
09:05:23.504 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:05:23.504 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
09:05:23.593 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:05:24.649 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:05:27.713 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
09:05:27.868 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
09:05:27.870 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
09:05:27.871 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
09:05:27.876 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
09:05:27.880 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:05:27.882 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:05:28.593 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 05a0b506-4025-48d7-81d3-bf1debfe07fc
09:05:28.595 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->05a0b506-4025-48d7-81d3-bf1debfe07fc
09:05:28.596 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:05:28.597 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:05:28.599 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:05:28.600 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
09:05:28.601 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:31.612 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
09:05:31.612 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:34.622 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
09:05:34.622 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:36.559 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727139934698_117.143.60.138_52218
09:05:36.561 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Notify connected event to listeners.
09:05:36.561 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:05:36.562 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:05:36.562 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000012e9f432338
09:05:36.564 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.104', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
09:05:37.194 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.104:9300 register finished
09:05:37.361 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 27.512 seconds (process running for 28.069)
09:05:37.371 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
09:05:37.372 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
09:05:37.373 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP
09:05:37.386 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1
09:05:37.387 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP
09:05:37.388 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP
09:05:37.389 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1
09:05:37.389 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP
09:05:37.390 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file+DEFAULT_GROUP
09:05:37.391 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1
09:05:37.391 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP
09:06:23.194 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Server healthy check fail, currentConnection = 1727139934698_117.143.60.138_52218
09:06:23.194 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:06:23.196 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:06:26.310 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:06:27.259 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:06:28.476 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Success to connect a server [110.42.213.184:8848], connectionId = 1727139986485_117.143.60.138_52315
09:06:28.476 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727139934698_117.143.60.138_52218
09:06:28.476 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727139934698_117.143.60.138_52218
09:06:28.476 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Notify disconnected event to listeners
09:06:28.478 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Notify connected event to listeners.
09:06:28.478 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:06:28.754 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:06:30.982 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:06:30.982 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:06:33.145 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Success to connect a server [110.42.213.184:8848], connectionId = 1727139990177_117.143.60.138_52348
09:06:33.145 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727139986485_117.143.60.138_52315
09:06:33.145 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727139986485_117.143.60.138_52315
09:06:33.146 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Notify disconnected event to listeners
09:06:33.146 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Notify connected event to listeners.
09:06:33.146 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:06:34.434 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file
09:07:22.304 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [05a0b506-4025-48d7-81d3-bf1debfe07fc] Server check success, currentServer is 110.42.213.184:8848

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,178 @@
19:39:04.920 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
19:39:10.026 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648
19:39:10.845 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler
19:39:11.451 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels.....
19:39:11.451 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector]
19:39:11.452 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null
19:39:11.452 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {}
19:39:11.452 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null
19:39:11.452 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {}
19:39:11.452 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null
19:39:11.453 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {}
19:39:11.453 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{}
19:39:11.453 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
19:39:11.453 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
19:39:11.455 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
19:39:11.456 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
19:39:11.457 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one
19:39:11.462 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1
19:39:11.463 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 956f88b1-c96d-434e-8b0b-6c8a43020dcf_config-0
19:39:11.463 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956f88b1-c96d-434e-8b0b-6c8a43020dcf_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x000001a9d832f860
19:39:11.463 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956f88b1-c96d-434e-8b0b-6c8a43020dcf_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x000001a9d832fc80
19:39:11.463 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956f88b1-c96d-434e-8b0b-6c8a43020dcf_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
19:39:11.463 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956f88b1-c96d-434e-8b0b-6c8a43020dcf_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
19:39:11.464 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956f88b1-c96d-434e-8b0b-6c8a43020dcf_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848}
19:39:11.464 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:39:11.693 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956f88b1-c96d-434e-8b0b-6c8a43020dcf_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726573153910_117.143.60.138_51913
19:39:11.693 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956f88b1-c96d-434e-8b0b-6c8a43020dcf_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
19:39:11.694 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956f88b1-c96d-434e-8b0b-6c8a43020dcf_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x000001a9d8433ab8
19:39:11.694 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956f88b1-c96d-434e-8b0b-6c8a43020dcf_config-0] Notify connected event to listeners.
19:39:11.694 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [956f88b1-c96d-434e-8b0b-6c8a43020dcf_config-0] Connected,notify listen context...
19:39:12.116 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
19:39:12.118 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
19:39:12.119 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
19:39:12.125 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
19:39:12.128 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
19:39:12.129 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
19:39:12.451 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 78e74446-a982-4a8c-8da1-803d3e6a8ada
19:39:12.453 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->78e74446-a982-4a8c-8da1-803d3e6a8ada
19:39:12.453 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
19:39:12.453 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
19:39:12.453 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
19:39:12.454 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848}
19:39:12.455 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:39:12.710 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726573154899_117.143.60.138_51915
19:39:12.710 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Notify connected event to listeners.
19:39:12.710 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
19:39:12.711 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
19:39:12.711 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x000001a9d8433ab8
19:39:12.712 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='10.113.37.20', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
19:39:12.728 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 10.113.37.20:8080 register finished
19:39:12.788 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters:
19:39:12.789 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters:
19:39:12.789 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters:
19:39:12.788 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters:
19:39:12.788 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
19:39:12.789 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
19:39:12.789 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster:
19:39:12.789 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster:
19:39:12.789 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster:
19:39:12.789 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
19:39:12.789 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
19:39:12.789 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters:
19:39:12.789 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters:
19:39:12.789 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters:
19:39:12.789 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster:
19:39:12.789 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters:
19:39:12.789 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster:
19:39:12.789 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster:
19:39:12.789 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster:
19:39:12.789 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster:
19:39:12.789 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters:
19:39:12.789 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters:
19:39:12.790 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster:
19:39:12.790 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster:
19:39:12.815 [boundedElastic-11] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-monitor -> []
19:39:12.815 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-monitor -> []
19:39:12.815 [boundedElastic-4] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:39:12.815 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:39:12.815 [boundedElastic-13] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.20#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.20","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:39:12.815 [boundedElastic-7] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:39:12.818 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-monitor -> []
19:39:12.818 [boundedElastic-7] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:39:12.818 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:39:12.818 [boundedElastic-11] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-monitor -> []
19:39:12.818 [boundedElastic-4] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:39:12.818 [boundedElastic-5] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gen -> []
19:39:12.818 [boundedElastic-13] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.20#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.20","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:39:12.819 [boundedElastic-5] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> []
19:39:12.901 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler.
19:39:12.955 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 11.374 seconds (process running for 12.07)
19:39:12.959 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one
19:39:12.959 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1
19:39:12.960 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP
19:39:12.960 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one
19:39:12.960 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1
19:39:12.960 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP
19:39:12.961 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one
19:39:12.962 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1
19:39:12.962 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP
19:39:13.257 [nacos-grpc-client-executor-47.116.173.119-15] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Receive server push request, request = NotifySubscriberRequest, requestId = 15936
19:39:13.260 [nacos-grpc-client-executor-47.116.173.119-15] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.20#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.20","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:39:13.262 [nacos-grpc-client-executor-47.116.173.119-15] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.20#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.20","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:39:13.263 [nacos-grpc-client-executor-47.116.173.119-15] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Ack server push request, request = NotifySubscriberRequest, requestId = 15936
19:39:13.357 [nacos-grpc-client-executor-47.116.173.119-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Receive server push request, request = NotifySubscriberRequest, requestId = 15938
19:39:13.358 [nacos-grpc-client-executor-47.116.173.119-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Ack server push request, request = NotifySubscriberRequest, requestId = 15938
19:39:13.361 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Receive server push request, request = NotifySubscriberRequest, requestId = 15939
19:39:13.362 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Ack server push request, request = NotifySubscriberRequest, requestId = 15939
19:39:13.365 [nacos-grpc-client-executor-47.116.173.119-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Receive server push request, request = NotifySubscriberRequest, requestId = 15940
19:39:13.366 [nacos-grpc-client-executor-47.116.173.119-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Ack server push request, request = NotifySubscriberRequest, requestId = 15940
19:39:13.370 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Receive server push request, request = NotifySubscriberRequest, requestId = 15941
19:39:13.371 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Ack server push request, request = NotifySubscriberRequest, requestId = 15941
19:39:13.375 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Receive server push request, request = NotifySubscriberRequest, requestId = 15942
19:39:13.375 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Ack server push request, request = NotifySubscriberRequest, requestId = 15942
19:40:13.066 [nacos-grpc-client-executor-47.116.173.119-52] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Receive server push request, request = NotifySubscriberRequest, requestId = 15970
19:40:13.066 [nacos-grpc-client-executor-47.116.173.119-52] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.20#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.20","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:40:13.067 [nacos-grpc-client-executor-47.116.173.119-52] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.20#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.20","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:40:13.068 [nacos-grpc-client-executor-47.116.173.119-52] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Ack server push request, request = NotifySubscriberRequest, requestId = 15970
19:56:35.245 [nacos-grpc-client-executor-47.116.173.119-443] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Receive server push request, request = NotifySubscriberRequest, requestId = 16274
19:56:35.245 [nacos-grpc-client-executor-47.116.173.119-443] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:56:35.245 [nacos-grpc-client-executor-47.116.173.119-443] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:56:35.247 [nacos-grpc-client-executor-47.116.173.119-443] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Ack server push request, request = NotifySubscriberRequest, requestId = 16274
19:56:39.917 [nacos-grpc-client-executor-47.116.173.119-444] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Receive server push request, request = NotifySubscriberRequest, requestId = 16276
19:56:39.918 [nacos-grpc-client-executor-47.116.173.119-444] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:56:39.918 [nacos-grpc-client-executor-47.116.173.119-444] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.20#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.20","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:56:39.919 [nacos-grpc-client-executor-47.116.173.119-444] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Ack server push request, request = NotifySubscriberRequest, requestId = 16276
19:56:40.483 [nacos-grpc-client-executor-47.116.173.119-445] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Receive server push request, request = NotifySubscriberRequest, requestId = 16278
19:56:40.483 [nacos-grpc-client-executor-47.116.173.119-445] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:56:40.484 [nacos-grpc-client-executor-47.116.173.119-445] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:56:40.484 [nacos-grpc-client-executor-47.116.173.119-445] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Ack server push request, request = NotifySubscriberRequest, requestId = 16278
19:56:44.983 [nacos-grpc-client-executor-47.116.173.119-446] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Receive server push request, request = NotifySubscriberRequest, requestId = 16280
19:56:44.984 [nacos-grpc-client-executor-47.116.173.119-446] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:56:44.984 [nacos-grpc-client-executor-47.116.173.119-446] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:56:44.985 [nacos-grpc-client-executor-47.116.173.119-446] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Ack server push request, request = NotifySubscriberRequest, requestId = 16280
19:56:48.115 [nacos-grpc-client-executor-47.116.173.119-455] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Receive server push request, request = NotifySubscriberRequest, requestId = 16288
19:56:48.115 [nacos-grpc-client-executor-47.116.173.119-455] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:56:48.115 [nacos-grpc-client-executor-47.116.173.119-455] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(3) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.20#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.20","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:56:48.116 [nacos-grpc-client-executor-47.116.173.119-455] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Ack server push request, request = NotifySubscriberRequest, requestId = 16288
19:57:17.189 [boundedElastic-19] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-car, group:DEFAULT_GROUP, clusters:
19:57:17.189 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-car, group:DEFAULT_GROUP, clusters:
19:57:17.189 [boundedElastic-19] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-car, group:DEFAULT_GROUP, cluster:
19:57:17.189 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-car, group:DEFAULT_GROUP, cluster:
19:57:17.201 [boundedElastic-24] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-car, group:DEFAULT_GROUP, clusters:
19:57:17.201 [boundedElastic-19] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"instanceId":"10.113.37.39#10010#DEFAULT#DEFAULT_GROUP@@cloud-car","ip":"10.113.37.39","port":10010,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:57:17.202 [boundedElastic-19] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"instanceId":"10.113.37.39#10010#DEFAULT#DEFAULT_GROUP@@cloud-car","ip":"10.113.37.39","port":10010,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:57:17.225 [nacos-grpc-client-executor-47.116.173.119-470] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Receive server push request, request = NotifySubscriberRequest, requestId = 16297
19:57:17.225 [nacos-grpc-client-executor-47.116.173.119-470] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Ack server push request, request = NotifySubscriberRequest, requestId = 16297
19:57:18.040 [nacos-grpc-client-executor-47.116.173.119-471] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Receive server push request, request = NotifySubscriberRequest, requestId = 16299
19:57:18.040 [nacos-grpc-client-executor-47.116.173.119-471] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:57:18.040 [nacos-grpc-client-executor-47.116.173.119-471] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(3) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.20#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.20","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:57:18.042 [nacos-grpc-client-executor-47.116.173.119-471] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Ack server push request, request = NotifySubscriberRequest, requestId = 16299
20:00:45.245 [nacos-grpc-client-executor-47.116.173.119-554] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Receive server push request, request = NotifySubscriberRequest, requestId = 16368
20:00:45.246 [nacos-grpc-client-executor-47.116.173.119-554] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.20#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.20","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
20:00:45.246 [nacos-grpc-client-executor-47.116.173.119-554] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
20:00:45.247 [nacos-grpc-client-executor-47.116.173.119-554] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e74446-a982-4a8c-8da1-803d3e6a8ada] Ack server push request, request = NotifySubscriberRequest, requestId = 16368
20:00:46.156 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
20:00:46.156 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='10.113.37.20', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
20:00:46.610 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
20:00:46.611 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
20:00:46.611 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
20:00:46.611 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
20:00:46.611 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
20:00:46.611 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
20:00:46.611 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
20:00:46.611 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
20:00:46.611 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
20:00:46.612 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
20:00:46.612 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
20:00:46.612 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
20:00:46.612 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->78e74446-a982-4a8c-8da1-803d3e6a8ada
20:00:46.612 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1f292420[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 430]
20:00:46.612 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
20:00:46.612 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1cc898c6[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
20:00:46.612 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726573154899_117.143.60.138_51915
20:00:46.614 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6726994[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 611]
20:00:46.615 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->78e74446-a982-4a8c-8da1-803d3e6a8ada
20:00:46.615 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
20:00:46.615 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
20:00:46.615 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,272 @@
15:44:13.940 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'xxlJobExecutor' defined in class path resource [com/muyu/common/xxl/XXLJobConfig.class]: Failed to instantiate [com.xxl.job.core.executor.impl.XxlJobSpringExecutor]: Factory method 'xxlJobExecutor' threw exception with message: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
at com.muyu.gen.CloudGenApplication.main(CloudGenApplication.java:18)
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.xxl.job.core.executor.impl.XxlJobSpringExecutor]: Factory method 'xxlJobExecutor' threw exception with message: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177)
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644)
... 19 common frames omitted
Caused by: java.lang.RuntimeException: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at com.muyu.common.xxl.XXLJobConfig.xxlJobExecutor(XXLJobConfig.java:15)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
... 20 common frames omitted
15:45:38.228 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'xxlJobExecutor' defined in class path resource [com/muyu/common/xxl/XXLJobConfig.class]: Failed to instantiate [com.xxl.job.core.executor.impl.XxlJobSpringExecutor]: Factory method 'xxlJobExecutor' threw exception with message: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
at com.muyu.gen.CloudGenApplication.main(CloudGenApplication.java:18)
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.xxl.job.core.executor.impl.XxlJobSpringExecutor]: Factory method 'xxlJobExecutor' threw exception with message: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177)
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644)
... 19 common frames omitted
Caused by: java.lang.RuntimeException: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at com.muyu.common.xxl.XXLJobConfig.xxlJobExecutor(XXLJobConfig.java:15)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
... 20 common frames omitted
15:53:45.493 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'xxlJobExecutor' defined in class path resource [com/muyu/common/xxl/XXLJobConfig.class]: Failed to instantiate [com.xxl.job.core.executor.impl.XxlJobSpringExecutor]: Factory method 'xxlJobExecutor' threw exception with message: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
at com.muyu.gen.CloudGenApplication.main(CloudGenApplication.java:18)
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.xxl.job.core.executor.impl.XxlJobSpringExecutor]: Factory method 'xxlJobExecutor' threw exception with message: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177)
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644)
... 19 common frames omitted
Caused by: java.lang.RuntimeException: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at com.muyu.common.xxl.XXLJobConfig.xxlJobExecutor(XXLJobConfig.java:15)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
... 20 common frames omitted
15:56:29.416 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'xxlJobExecutor' defined in class path resource [com/muyu/common/xxl/XXLJobConfig.class]: Failed to instantiate [com.xxl.job.core.executor.impl.XxlJobSpringExecutor]: Factory method 'xxlJobExecutor' threw exception with message: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
at com.muyu.gen.CloudGenApplication.main(CloudGenApplication.java:18)
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.xxl.job.core.executor.impl.XxlJobSpringExecutor]: Factory method 'xxlJobExecutor' threw exception with message: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177)
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644)
... 19 common frames omitted
Caused by: java.lang.RuntimeException: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at com.muyu.common.xxl.XXLJobConfig.xxlJobExecutor(XXLJobConfig.java:15)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
... 20 common frames omitted
15:57:49.803 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'xxlJobExecutor' defined in class path resource [com/muyu/common/xxl/XXLJobConfig.class]: Failed to instantiate [com.xxl.job.core.executor.impl.XxlJobSpringExecutor]: Factory method 'xxlJobExecutor' threw exception with message: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
at com.muyu.gen.CloudGenApplication.main(CloudGenApplication.java:18)
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.xxl.job.core.executor.impl.XxlJobSpringExecutor]: Factory method 'xxlJobExecutor' threw exception with message: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177)
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644)
... 19 common frames omitted
Caused by: java.lang.RuntimeException: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at com.muyu.common.xxl.XXLJobConfig.xxlJobExecutor(XXLJobConfig.java:15)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
... 20 common frames omitted
16:35:55.119 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'xxlJobExecutor' defined in class path resource [com/muyu/common/xxl/XXLJobConfig.class]: Failed to instantiate [com.xxl.job.core.executor.impl.XxlJobSpringExecutor]: Factory method 'xxlJobExecutor' threw exception with message: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
at com.muyu.gen.CloudGenApplication.main(CloudGenApplication.java:18)
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.xxl.job.core.executor.impl.XxlJobSpringExecutor]: Factory method 'xxlJobExecutor' threw exception with message: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177)
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644)
... 19 common frames omitted
Caused by: java.lang.RuntimeException: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at com.muyu.common.xxl.XXLJobConfig.xxlJobExecutor(XXLJobConfig.java:15)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
... 20 common frames omitted
20:23:04.223 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'xxlJobExecutor' defined in class path resource [com/muyu/common/xxl/XXLJobConfig.class]: Failed to instantiate [com.xxl.job.core.executor.impl.XxlJobSpringExecutor]: Factory method 'xxlJobExecutor' threw exception with message: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
at com.muyu.gen.CloudGenApplication.main(CloudGenApplication.java:18)
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.xxl.job.core.executor.impl.XxlJobSpringExecutor]: Factory method 'xxlJobExecutor' threw exception with message: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177)
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644)
... 19 common frames omitted
Caused by: java.lang.RuntimeException: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at com.muyu.common.xxl.XXLJobConfig.xxlJobExecutor(XXLJobConfig.java:15)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
... 20 common frames omitted
20:28:47.622 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'xxlJobExecutor' defined in class path resource [com/muyu/common/xxl/XXLJobConfig.class]: Failed to instantiate [com.xxl.job.core.executor.impl.XxlJobSpringExecutor]: Factory method 'xxlJobExecutor' threw exception with message: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
at com.muyu.gen.CloudGenApplication.main(CloudGenApplication.java:18)
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.xxl.job.core.executor.impl.XxlJobSpringExecutor]: Factory method 'xxlJobExecutor' threw exception with message: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177)
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644)
... 19 common frames omitted
Caused by: java.lang.RuntimeException: 请在bootstrap.yml当中配置shared-configs项xxl-job共享配置[application-xxl-config]
at com.muyu.common.xxl.XXLJobConfig.xxlJobExecutor(XXLJobConfig.java:15)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
... 20 common frames omitted

View File

@ -0,0 +1,733 @@
00:43:05.790 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
00:43:08.544 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb6537d6-665e-4407-b6ef-5263d40174b3_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:08.758 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:11.778 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb6537d6-665e-4407-b6ef-5263d40174b3_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:12.090 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:15.110 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb6537d6-665e-4407-b6ef-5263d40174b3_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:15.327 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9202"]
00:43:15.330 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
00:43:15.331 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
00:43:15.514 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:15.537 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
00:43:18.522 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb6537d6-665e-4407-b6ef-5263d40174b3_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:19.033 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:19.967 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
00:43:22.055 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb6537d6-665e-4407-b6ef-5263d40174b3_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:22.664 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:25.681 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb6537d6-665e-4407-b6ef-5263d40174b3_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:26.400 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:27.211 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
00:43:29.413 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb6537d6-665e-4407-b6ef-5263d40174b3_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:30.223 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:31.068 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@517594dd[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
00:43:31.069 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@5a98983b[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
00:43:31.069 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@1390cc4c[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo]
00:43:31.350 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9202"]
00:43:31.681 [Thread-11] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999
00:43:31.701 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
00:43:31.703 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
00:43:31.704 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
00:43:31.715 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
00:43:31.723 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
00:43:31.724 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
00:43:33.247 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb6537d6-665e-4407-b6ef-5263d40174b3_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:34.154 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:34.707 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
00:43:34.753 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of d05e458e-32ea-419a-b312-2a7cc34a78e5
00:43:34.759 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->d05e458e-32ea-419a-b312-2a7cc34a78e5
00:43:34.760 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d05e458e-32ea-419a-b312-2a7cc34a78e5] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
00:43:34.761 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d05e458e-32ea-419a-b312-2a7cc34a78e5] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
00:43:34.764 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d05e458e-32ea-419a-b312-2a7cc34a78e5] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
00:43:34.766 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d05e458e-32ea-419a-b312-2a7cc34a78e5] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848}
00:43:34.767 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:37.166 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb6537d6-665e-4407-b6ef-5263d40174b3_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:37.791 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d05e458e-32ea-419a-b312-2a7cc34a78e5] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848}
00:43:37.793 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:38.178 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:40.805 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d05e458e-32ea-419a-b312-2a7cc34a78e5] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848}
00:43:40.806 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:41.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb6537d6-665e-4407-b6ef-5263d40174b3_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:42.301 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:43.820 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d05e458e-32ea-419a-b312-2a7cc34a78e5] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848}
00:43:43.820 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:45.317 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb6537d6-665e-4407-b6ef-5263d40174b3_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:46.534 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:46.829 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d05e458e-32ea-419a-b312-2a7cc34a78e5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
00:43:46.829 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d05e458e-32ea-419a-b312-2a7cc34a78e5] Try to reconnect to a new server, server is not appointed, will choose a random server.
00:43:46.830 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d05e458e-32ea-419a-b312-2a7cc34a78e5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$629/0x0000017d3942a568
00:43:46.830 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:46.832 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='192.168.61.217', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
00:43:47.326 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Stopping ProtocolHandler ["http-nio-9202"]
00:43:47.381 [Thread-11] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
00:43:49.554 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb6537d6-665e-4407-b6ef-5263d40174b3_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:49.955 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:50.393 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,90] - >>>>>>>>>>> xxl-job registry-remove fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registryRemove, content=null]
00:43:50.393 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
00:43:50.394 [main] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
00:43:50.394 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
00:43:50.395 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
00:43:50.396 [Thread-10] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
00:43:50.418 [main] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
00:43:50.419 [main] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
00:43:50.419 [main] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
00:43:50.419 [main] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
00:43:50.419 [main] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
00:43:50.420 [main] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
00:43:50.420 [main] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
00:43:50.420 [main] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
00:43:50.421 [main] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
00:43:50.421 [main] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
00:43:50.422 [main] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
00:43:50.422 [main] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->d05e458e-32ea-419a-b312-2a7cc34a78e5
00:43:50.422 [main] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@7fef485d[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 5]
00:43:50.423 [main] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
00:43:50.423 [main] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@53a4637c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
00:43:50.423 [main] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@27131d01[Running, pool size = 12, active threads = 0, queued tasks = 0, completed tasks = 17]
00:43:50.425 [main] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->d05e458e-32ea-419a-b312-2a7cc34a78e5
00:43:50.426 [main] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
00:43:50.426 [main] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
00:43:50.427 [main] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
00:43:50.434 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d05e458e-32ea-419a-b312-2a7cc34a78e5] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:50.443 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
20:02:01.826 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
20:02:06.378 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9202"]
20:02:06.381 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:02:06.381 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
20:02:06.481 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:02:08.420 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:02:12.548 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
20:02:14.771 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@78f2cab9[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
20:02:14.772 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@32441ed4[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo]
20:02:14.772 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@3fc2197d[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
20:02:14.946 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9202"]
20:02:15.162 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
20:02:15.163 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
20:02:15.164 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
20:02:15.171 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
20:02:15.176 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
20:02:15.176 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
20:02:15.188 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999
20:02:15.548 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 6fbf9838-c09a-4cf7-a477-7779b32cbe9e
20:02:15.550 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->6fbf9838-c09a-4cf7-a477-7779b32cbe9e
20:02:15.550 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
20:02:15.552 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
20:02:15.552 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
20:02:15.553 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
20:02:15.554 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:02:15.949 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1726660941085_220.196.194.142_41226
20:02:15.949 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:02:15.949 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Notify connected event to listeners.
20:02:15.949 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x000001f7934818a8
20:02:15.949 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
20:02:15.950 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-gen with instance Instance{instanceId='null', ip='192.168.61.217', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
20:02:16.049 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 192.168.61.217:9202 register finished
20:02:16.211 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 19.761 seconds (process running for 20.481)
20:02:16.224 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
20:02:16.225 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
20:02:16.226 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP
20:02:16.237 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1
20:02:16.237 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP
20:02:16.238 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP
20:02:16.238 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1
20:02:16.238 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP
20:02:16.239 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-gen+DEFAULT_GROUP
20:02:16.240 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1
20:02:16.240 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP
20:02:16.696 [RMI TCP Connection(7)-192.168.136.1] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:02:18.198 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:02:51.588 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:03:24.820 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:03:57.839 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:04:30.953 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:04:58.348 [http-nio-9202-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
20:04:58.456 [http-nio-9202-exec-1] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:05:03.967 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:05:15.498 [http-nio-9202-exec-4] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:05:35.499 [http-nio-9202-exec-5] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:05:36.994 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:05:55.501 [http-nio-9202-exec-6] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:06:10.043 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:06:15.504 [http-nio-9202-exec-7] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:06:35.496 [http-nio-9202-exec-8] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:06:43.057 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:06:55.505 [http-nio-9202-exec-9] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:07:15.506 [http-nio-9202-exec-1] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:07:16.138 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:07:35.500 [http-nio-9202-exec-2] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:07:49.148 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:07:55.501 [http-nio-9202-exec-3] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:08:15.492 [http-nio-9202-exec-4] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:08:22.166 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:08:35.492 [http-nio-9202-exec-5] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:08:55.181 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:08:55.499 [http-nio-9202-exec-6] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:09:15.506 [http-nio-9202-exec-8] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:09:28.209 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:09:35.492 [http-nio-9202-exec-10] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:09:55.494 [http-nio-9202-exec-9] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:10:01.234 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:10:15.498 [http-nio-9202-exec-1] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:10:34.262 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:10:35.499 [http-nio-9202-exec-2] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:10:55.506 [http-nio-9202-exec-4] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:11:07.282 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:11:15.500 [http-nio-9202-exec-5] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:11:35.495 [http-nio-9202-exec-7] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:11:40.300 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:11:55.497 [http-nio-9202-exec-6] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:12:13.327 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:12:15.493 [http-nio-9202-exec-10] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
20:12:17.738 [http-nio-9202-exec-10] INFO c.z.h.p.HikariPool - [checkFailFast,565] - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@7a94b1da
20:12:17.748 [http-nio-9202-exec-10] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed.
20:12:46.332 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:13:19.354 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:13:52.363 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:14:25.423 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:14:58.504 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:15:31.518 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:16:04.692 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:16:37.710 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:17:11.812 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:17:44.827 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:18:17.831 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:18:50.996 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:19:24.010 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:19:57.034 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:20:30.046 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:21:03.050 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:21:36.069 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:22:09.090 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:22:42.106 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:23:15.120 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:23:48.145 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:24:21.193 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:24:54.200 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:25:27.217 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:26:01.107 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:26:34.122 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:27:07.124 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:27:40.510 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:28:13.522 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:28:46.528 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:29:19.546 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:29:52.562 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:30:25.585 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:30:58.605 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:31:32.752 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:32:05.772 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:32:38.798 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:33:13.146 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:33:46.157 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:34:19.174 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:34:52.180 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:35:25.198 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:35:58.222 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:36:31.239 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:37:05.289 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:37:38.303 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:38:11.313 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:38:44.339 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:39:17.351 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:39:50.378 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:40:23.396 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:40:57.510 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:41:30.524 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:42:03.538 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:42:36.556 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:43:09.563 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:43:42.592 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:44:15.604 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:44:49.370 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:45:22.384 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:45:55.402 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:46:28.409 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:47:01.416 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:47:34.429 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:48:07.443 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:48:40.450 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:49:14.527 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:49:47.543 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:50:20.561 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:50:53.579 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:51:26.591 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:51:59.611 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:52:32.629 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:53:05.818 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:53:38.839 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:54:11.859 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:54:44.876 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:55:17.899 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:55:50.969 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:56:23.987 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:56:57.010 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:57:30.030 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:58:03.056 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:58:36.071 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:59:09.078 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:59:42.184 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:00:15.195 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:00:48.219 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:01:22.275 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:01:55.288 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:02:28.299 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:03:01.314 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:03:34.326 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:04:07.345 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:04:40.366 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:05:13.380 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:05:46.401 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:06:19.425 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:06:52.427 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:07:25.447 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:07:58.458 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:08:31.475 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:09:04.495 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:09:37.511 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:10:10.527 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:10:43.529 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:11:16.531 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:11:49.619 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:12:22.628 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:12:56.074 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:13:29.085 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:14:02.114 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:14:35.129 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:15:08.147 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:15:41.164 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:16:14.185 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:16:48.263 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:17:21.274 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:17:54.287 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:18:27.308 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:19:00.988 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:19:35.506 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:20:08.531 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:20:41.536 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:21:14.561 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:21:47.571 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:22:22.893 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:22:55.904 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:23:28.926 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:24:01.928 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:24:34.943 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:25:07.965 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:25:40.982 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:26:15.073 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:26:48.086 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:27:21.092 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:27:54.117 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:28:27.128 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:29:00.140 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:29:33.148 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:30:06.164 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:30:39.166 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:31:12.191 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:31:45.214 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:32:19.276 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:32:52.291 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:33:25.308 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:33:58.319 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:34:31.333 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:35:04.342 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:35:37.640 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:36:10.651 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:36:43.978 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:37:18.069 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:37:51.087 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:38:24.629 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:38:57.639 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:39:30.651 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:40:03.671 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:40:36.686 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:41:09.708 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:41:42.732 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:42:16.098 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:42:49.105 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:43:22.119 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:43:55.128 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:44:28.158 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:45:01.174 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:45:34.193 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:46:08.277 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:46:41.291 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:47:14.306 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:47:47.335 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:48:20.348 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:48:53.368 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:49:26.385 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:49:59.401 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:50:32.411 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:51:06.483 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:51:39.496 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:52:13.595 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:52:47.824 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:53:20.839 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:53:53.925 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:54:26.947 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:54:59.949 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:55:32.962 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:56:05.985 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:56:40.053 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:57:13.065 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:57:46.343 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:58:19.357 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:58:52.519 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:59:25.545 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:59:58.566 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:00:32.916 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:01:05.922 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:01:38.937 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:02:11.948 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:02:44.960 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:03:17.972 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:03:50.986 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:04:24.237 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:04:57.262 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:05:30.278 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:06:04.497 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:06:37.519 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:07:10.521 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:07:44.692 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:08:17.710 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:08:50.726 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:09:23.728 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:09:56.751 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:10:29.765 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:11:02.777 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:11:35.788 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:12:08.809 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:12:41.826 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:13:14.840 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:13:47.845 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:14:20.861 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:14:53.869 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:15:26.878 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:15:59.899 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:16:32.909 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:17:05.932 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:17:29.000 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Server healthy check fail, currentConnection = 1726660925974_220.196.194.142_41224
22:17:29.000 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:17:29.001 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:17:32.124 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:17:35.133 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:17:35.337 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:17:38.343 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:17:38.652 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:17:38.958 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:17:40.933 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726669064311_220.196.194.142_41177
22:17:40.933 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726660925974_220.196.194.142_41224
22:17:40.933 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726660925974_220.196.194.142_41224
22:17:40.933 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Notify disconnected event to listeners
22:17:40.935 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] DisConnected,clear listen context...
22:17:40.935 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Notify connected event to listeners.
22:17:40.935 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Connected,notify listen context...
22:17:41.720 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Server check success, currentServer is 110.42.213.184:8848
22:18:11.980 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:18:45.000 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:19:18.020 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:19:51.047 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:20:24.069 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:45:38.358 [nacos-grpc-client-executor-110.42.213.184-1589] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 2824
21:45:38.358 [nacos-grpc-client-executor-110.42.213.184-1589] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 2824
21:45:38.359 [nacos-grpc-client-executor-110.42.213.184-1617] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Receive server push request, request = ClientDetectionRequest, requestId = 2822
21:45:38.359 [nacos-grpc-client-executor-110.42.213.184-1617] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Ack server push request, request = ClientDetectionRequest, requestId = 2822
21:45:48.716 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:48:17.427 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:48:50.438 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:49:23.449 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:49:56.452 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:50:29.479 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:51:02.493 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:51:35.518 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:52:08.528 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:52:41.544 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:53:14.567 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:53:47.582 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:54:20.586 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:54:53.590 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:55:26.617 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:55:59.631 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:56:32.652 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:57:05.673 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:57:38.683 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:58:11.691 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:58:44.708 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:59:17.716 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:59:50.719 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:00:23.732 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:00:56.757 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:01:29.779 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:02:02.807 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:02:36.883 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:03:09.898 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:03:42.916 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:04:15.930 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:04:48.950 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:05:21.965 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:05:54.988 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:06:28.005 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:07:01.021 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:07:30.646 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Server healthy check fail, currentConnection = 1726669064311_220.196.194.142_41177
22:07:30.646 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:07:30.647 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:07:31.345 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726670449451_220.196.194.142_41188
22:07:31.345 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726669064311_220.196.194.142_41177
22:07:31.345 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726669064311_220.196.194.142_41177
22:07:31.345 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Notify disconnected event to listeners
22:07:31.345 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] DisConnected,clear listen context...
22:07:31.345 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Notify connected event to listeners.
22:07:31.345 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Connected,notify listen context...
22:07:32.513 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Server healthy check fail, currentConnection = 1726660941085_220.196.194.142_41226
22:07:32.513 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:07:32.513 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:07:32.841 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Success to connect a server [110.42.213.184:8848], connectionId = 1726670450911_220.196.194.142_41190
22:07:32.841 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726660941085_220.196.194.142_41226
22:07:32.841 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726660941085_220.196.194.142_41226
22:07:32.841 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Notify disconnected event to listeners
22:07:32.842 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Notify connected event to listeners.
22:07:32.842 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:07:33.960 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gen
22:07:34.038 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:08:07.062 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:08:40.080 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:09:13.097 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:09:46.270 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:10:19.298 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:10:52.306 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:11:25.316 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:11:58.340 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:12:31.361 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:13:04.378 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:13:37.407 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:14:10.414 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:14:43.435 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:15:16.446 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:15:49.498 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:15:52.777 [lettuce-nioEventLoop-6-2] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
22:15:52.777 [lettuce-nioEventLoop-6-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
22:15:52.855 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:15:52.856 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:52.875 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
22:15:52.885 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
22:15:52.886 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:15:52.887 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.052 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.054 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.062 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.063 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.271 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.271 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.277 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.278 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.581 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.582 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.587 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.588 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.999 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.999 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:54.007 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:54.008 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:54.511 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:54.511 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:54.517 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:54.517 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:55.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:55.120 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:55.125 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:55.127 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:55.834 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:55.834 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:56.249 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:57.055 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:57.060 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:57.305 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:57.856 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:58.214 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:58.323 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
22:15:58.579 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:59.074 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:59.491 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:59.734 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:16:00.080 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:16:00.316 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:16:00.749 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:16:01.417 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:16:01.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:16:01.655 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:16:02.023 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
22:16:02.048 [lettuce-nioEventLoop-6-10] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
22:16:02.644 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:16:02.784 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726670960975_117.143.60.138_50219
22:16:02.784 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726670449451_220.196.194.142_41188
22:16:02.784 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726670449451_220.196.194.142_41188
22:16:02.784 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Notify disconnected event to listeners
22:16:02.784 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] DisConnected,clear listen context...
22:16:02.785 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Notify connected event to listeners.
22:16:02.785 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [d5687154-f028-4dd5-ab0c-f7800e95d2d2_config-0] Connected,notify listen context...
22:16:02.861 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:16:03.042 [lettuce-nioEventLoop-6-11] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
22:16:03.093 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Success to connect a server [110.42.213.184:8848], connectionId = 1726670961287_117.143.60.138_59382
22:16:03.093 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726670450911_220.196.194.142_41190
22:16:03.093 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726670450911_220.196.194.142_41190
22:16:03.093 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Notify disconnected event to listeners
22:16:03.093 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fbf9838-c09a-4cf7-a477-7779b32cbe9e] Notify connected event to listeners.
22:16:03.093 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:16:05.546 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gen
22:16:22.513 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:50:13.707 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:50:46.736 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:51:19.767 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:51:52.794 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:52:25.823 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:52:58.847 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:53:31.866 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:54:05.910 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:54:38.932 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:55:11.968 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:55:46.008 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:56:19.039 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:56:52.064 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:57:25.121 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:57:58.146 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:58:31.178 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:59:04.206 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:59:37.220 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:00:10.236 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:00:43.266 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:01:16.290 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:01:49.327 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:02:22.355 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:02:55.382 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:03:28.411 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:04:01.425 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:04:34.443 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:05:08.469 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:05:41.495 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:06:14.521 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:06:47.545 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:07:20.575 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:07:53.606 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:08:26.635 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:08:59.676 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:09:32.706 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:10:05.732 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:10:38.764 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:11:11.791 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:11:44.811 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:12:17.842 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:12:50.881 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:13:24.914 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:13:58.956 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:14:31.984 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:15:05.009 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:15:39.040 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:16:12.062 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:16:45.080 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:17:19.118 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:17:53.153 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:18:26.157 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:18:59.182 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:19:32.188 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:20:05.213 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:20:39.250 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:21:12.276 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:21:45.293 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:22:18.309 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:22:52.331 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:23:26.364 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:23:59.378 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:24:32.408 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:25:06.442 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:25:39.457 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:26:12.483 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:26:46.522 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:27:19.538 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:27:52.549 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:28:26.585 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:28:59.608 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:29:32.615 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:30:05.622 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:30:38.643 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:31:12.687 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:31:45.694 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:32:18.710 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:32:52.752 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:33:25.771 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:33:58.779 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:34:32.814 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:35:05.832 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:35:38.868 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:36:11.897 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:36:44.924 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:37:17.946 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:37:50.960 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:38:23.992 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:38:57.005 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:39:30.006 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:40:03.011 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:40:36.024 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:41:09.045 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:41:42.059 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:42:16.103 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:42:49.111 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:43:22.140 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:43:55.162 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:44:28.178 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:45:02.383 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:45:35.406 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:46:08.438 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:46:41.466 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:47:14.505 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:47:47.516 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:48:20.527 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:48:54.597 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:49:27.618 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:50:00.643 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:50:33.667 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:51:06.689 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:51:39.716 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:52:12.719 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:52:46.750 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:53:19.760 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:53:53.098 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:54:26.105 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:54:59.118 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:55:32.147 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:56:05.159 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:56:39.195 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:57:12.205 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:57:45.234 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:58:18.249 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:58:51.263 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:59:24.271 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:59:57.294 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,56 @@
15:44:04.034 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
15:44:08.270 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9202"]
15:44:08.274 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:44:08.275 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
15:44:08.479 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:44:10.907 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:44:13.866 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
15:45:32.449 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
15:45:34.674 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9202"]
15:45:34.676 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:45:34.677 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
15:45:34.751 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:45:36.092 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:45:38.159 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
15:53:38.409 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
15:53:41.753 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9202"]
15:53:41.757 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:53:41.757 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
15:53:41.870 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:53:43.293 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:53:45.447 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
15:56:21.376 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
15:56:24.541 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9202"]
15:56:24.544 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:56:24.545 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
15:56:24.637 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:56:26.109 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:56:29.356 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
15:57:43.513 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
15:57:46.420 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9202"]
15:57:46.422 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:57:46.423 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
15:57:46.505 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:57:47.735 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:57:49.761 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
16:35:46.768 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
16:35:49.986 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9202"]
16:35:49.989 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:35:49.990 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
16:35:50.090 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:35:52.094 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:35:55.057 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
20:22:59.036 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
20:23:01.151 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9202"]
20:23:01.153 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:23:01.153 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
20:23:01.221 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:23:02.328 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:23:04.184 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
20:28:42.046 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
20:28:44.290 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9202"]
20:28:44.293 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:28:44.294 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
20:28:44.397 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:28:45.577 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:28:47.584 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,129 @@
19:39:13.109 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
19:39:15.871 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
19:39:15.873 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
19:39:15.873 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
19:39:15.994 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
19:39:16.808 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
19:39:16.812 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
19:39:57.675 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
19:40:00.354 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
19:40:00.357 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
19:40:00.357 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
19:40:00.430 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
19:40:03.923 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
19:40:03.924 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
19:40:03.924 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
19:40:07.740 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
19:40:09.343 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
19:40:10.713 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@3f5298a5[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo]
19:40:10.713 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@1ca0546a[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
19:40:10.713 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@662b17b3[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
19:40:10.842 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9701"]
19:40:10.866 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999
19:40:10.949 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
19:40:10.950 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
19:40:10.950 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
19:40:10.954 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
19:40:10.957 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
19:40:10.958 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
19:40:11.226 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of c886a664-456d-4d1c-8931-dd825ec60435
19:40:11.229 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->c886a664-456d-4d1c-8931-dd825ec60435
19:40:11.229 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c886a664-456d-4d1c-8931-dd825ec60435] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
19:40:11.230 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c886a664-456d-4d1c-8931-dd825ec60435] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
19:40:11.230 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c886a664-456d-4d1c-8931-dd825ec60435] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
19:40:11.231 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c886a664-456d-4d1c-8931-dd825ec60435] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848}
19:40:11.231 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:40:12.481 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c886a664-456d-4d1c-8931-dd825ec60435] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726573214704_117.143.60.138_51953
19:40:12.481 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c886a664-456d-4d1c-8931-dd825ec60435] Notify connected event to listeners.
19:40:12.481 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c886a664-456d-4d1c-8931-dd825ec60435] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
19:40:12.481 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
19:40:12.481 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c886a664-456d-4d1c-8931-dd825ec60435] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x000001e0b2484d28
19:40:12.482 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-system with instance Instance{instanceId='null', ip='10.113.37.20', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
19:40:12.502 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 10.113.37.20:9701 register finished
19:40:12.657 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 18.926 seconds (process running for 19.485)
19:40:12.663 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
19:40:12.664 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
19:40:12.664 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system+DEFAULT_GROUP+one
19:40:12.669 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1
19:40:12.669 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP
19:40:12.671 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP+one
19:40:12.671 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1
19:40:12.672 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP
19:40:12.672 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP+one
19:40:12.672 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1
19:40:12.672 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP
19:40:13.901 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:40:46.942 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:41:19.977 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:41:53.017 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:42:26.051 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:42:59.081 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:43:32.395 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:44:05.434 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:44:38.459 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:45:12.583 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:45:45.616 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:46:18.634 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:46:52.183 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:47:25.200 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:47:58.224 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:48:31.253 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:49:04.375 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:49:37.428 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:50:10.462 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:50:43.497 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:51:17.058 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:51:50.081 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:52:23.102 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:52:56.124 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:53:29.164 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:54:02.199 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:54:35.235 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:55:08.485 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:55:41.813 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:56:14.970 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:56:45.084 [http-nio-9701-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
19:56:48.111 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:57:21.237 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:57:54.489 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:58:27.520 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:59:00.721 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
19:59:34.842 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:00:07.884 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:00:41.893 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:00:44.156 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
20:00:47.275 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,90] - >>>>>>>>>>> xxl-job registry-remove fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registryRemove, content=null]
20:00:47.275 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
20:00:47.275 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
20:00:47.276 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
20:00:47.276 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
20:00:47.276 [Thread-12] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
20:00:47.277 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
20:00:47.277 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-system with instance: Instance{instanceId='null', ip='10.113.37.20', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
20:00:47.294 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
20:00:47.295 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
20:00:47.296 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
20:00:47.296 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
20:00:47.296 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
20:00:47.296 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
20:00:47.296 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
20:00:47.296 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
20:00:47.296 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
20:00:47.296 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
20:00:47.296 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
20:00:47.296 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
20:00:47.296 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->c886a664-456d-4d1c-8931-dd825ec60435
20:00:47.296 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@7a2750f1[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 411]
20:00:47.297 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
20:00:47.297 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2f024d3e[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
20:00:47.297 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726573214704_117.143.60.138_51953
20:00:47.298 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@617c83ff[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 243]
20:00:47.299 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->c886a664-456d-4d1c-8931-dd825ec60435
20:00:47.299 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
20:00:47.299 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
20:00:47.299 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
20:00:47.311 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
20:00:47.313 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
20:00:47.316 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
20:00:47.316 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
20:00:47.316 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye

View File

@ -0,0 +1,625 @@
00:43:46.776 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
00:43:49.467 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c45e7a89-b841-42fc-9a20-f4220727cf7b_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:49.674 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:52.685 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c45e7a89-b841-42fc-9a20-f4220727cf7b_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:52.996 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:56.016 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c45e7a89-b841-42fc-9a20-f4220727cf7b_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:56.421 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:43:59.430 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c45e7a89-b841-42fc-9a20-f4220727cf7b_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:43:59.943 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:44:02.964 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c45e7a89-b841-42fc-9a20-f4220727cf7b_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:44:03.570 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:44:06.585 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c45e7a89-b841-42fc-9a20-f4220727cf7b_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:44:07.301 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:44:10.313 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c45e7a89-b841-42fc-9a20-f4220727cf7b_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:44:11.120 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:44:14.142 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c45e7a89-b841-42fc-9a20-f4220727cf7b_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown
00:44:15.044 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:44:17.570 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
20:02:13.197 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
20:02:17.767 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
20:02:17.770 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:02:17.771 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
20:02:17.889 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:02:18.831 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
20:02:18.835 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
20:02:50.487 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
20:02:54.777 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
20:02:54.781 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:02:54.782 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
20:02:54.946 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:02:58.051 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
20:02:58.052 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
20:02:58.052 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
20:03:04.122 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:03:05.995 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
20:03:07.645 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@4c89b58[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo]
20:03:07.645 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@472cf6af[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
20:03:07.645 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@1fab1909[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
20:03:07.688 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use.
20:03:07.796 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9701"]
20:03:07.825 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10000
20:03:07.927 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
20:03:07.928 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
20:03:07.928 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
20:03:07.933 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
20:03:07.937 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
20:03:07.938 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
20:03:08.281 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 1794836a-abf7-4a61-b149-af985a76337a
20:03:08.283 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->1794836a-abf7-4a61-b149-af985a76337a
20:03:08.284 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
20:03:08.284 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
20:03:08.284 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
20:03:08.285 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
20:03:08.285 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:03:08.732 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1726660993979_220.196.194.142_40691
20:03:08.732 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:03:08.732 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Notify connected event to listeners.
20:03:08.733 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x0000018289497de0
20:03:08.733 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
20:03:08.733 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-system with instance Instance{instanceId='null', ip='192.168.61.217', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
20:03:08.874 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 192.168.61.217:9701 register finished
20:03:09.072 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 24.645 seconds (process running for 25.406)
20:03:09.083 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
20:03:09.084 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
20:03:09.084 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system+DEFAULT_GROUP
20:03:09.089 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1
20:03:09.090 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP
20:03:09.090 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP
20:03:09.090 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1
20:03:09.090 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP
20:03:09.091 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP
20:03:09.091 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1
20:03:09.091 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP
20:03:10.838 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:03:43.857 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:04:16.978 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:04:50.064 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:04:58.230 [http-nio-9701-exec-2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
20:05:23.095 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:05:56.112 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:06:30.341 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:07:03.352 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:07:36.369 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:08:09.384 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:08:42.387 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:09:15.408 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:09:48.424 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:10:21.428 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:10:54.437 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:11:27.449 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:12:01.574 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:12:34.582 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:13:07.608 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:13:40.625 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:14:13.631 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:14:46.638 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:15:19.640 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:15:52.653 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:16:25.669 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:16:58.693 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:17:31.825 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:18:04.831 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:18:37.842 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:19:11.119 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:19:44.135 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:20:17.188 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:20:50.194 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:21:23.350 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:21:56.359 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:22:29.376 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:23:02.393 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:23:35.649 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:24:08.652 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:24:41.668 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:25:14.740 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:25:47.766 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:26:20.777 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:26:54.875 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:27:27.894 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:28:01.775 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:28:35.860 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:29:08.871 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:29:41.876 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:30:14.885 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:30:47.896 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:31:22.289 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:31:55.303 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:32:28.316 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:33:01.337 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:33:34.356 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:34:08.754 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:34:41.778 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:35:14.798 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:35:47.820 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:36:20.846 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:36:53.860 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:37:26.884 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:38:01.029 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:38:34.041 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:39:07.061 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:39:40.078 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:40:13.094 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:40:46.112 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:41:19.136 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:41:52.153 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:42:25.162 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:42:58.298 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:43:31.318 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:44:04.367 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:44:37.381 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:45:10.396 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:45:43.407 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:46:16.418 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:46:49.473 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:47:22.489 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:47:55.502 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:48:29.623 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:49:02.636 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:49:35.721 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:50:09.859 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:50:42.868 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:51:15.871 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:51:48.881 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:52:21.898 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:52:54.916 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:53:27.934 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:54:00.958 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:54:33.968 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:55:06.993 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:55:41.775 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:56:14.792 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:56:47.802 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:56:56.125 [Druid-ConnectionPool-Create-1485182201] INFO c.a.d.p.DruidAbstractDataSource - [setFailContinuous,1900] - {dataSource-1} failContinuous is true
20:57:20.814 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:57:53.827 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:58:08.449 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
20:58:08.449 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
20:58:08.527 [boundedElastic-2] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"192.168.61.217","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
20:58:08.529 [boundedElastic-2] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"192.168.61.217","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
20:58:09.079 [nacos-grpc-client-executor-110.42.213.184-667] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Receive server push request, request = NotifySubscriberRequest, requestId = 2802
20:58:09.080 [nacos-grpc-client-executor-110.42.213.184-667] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Ack server push request, request = NotifySubscriberRequest, requestId = 2802
20:58:26.845 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:58:59.850 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
20:59:32.867 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:00:06.961 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:00:39.981 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:01:13.012 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:01:46.025 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:02:15.336 [Druid-ConnectionPool-Create-1485182201] INFO c.a.d.p.DruidAbstractDataSource - [setFailContinuous,1905] - {dataSource-1} failContinuous is false
21:02:19.032 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:02:52.048 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:03:25.056 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:03:58.082 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:04:31.090 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:05:05.190 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:05:38.203 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:06:11.219 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:06:44.224 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:07:17.242 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:07:50.262 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:08:23.270 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:08:56.284 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:09:29.300 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:10:02.319 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:10:35.341 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:11:09.726 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:11:42.738 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:12:15.746 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:12:48.750 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:13:21.752 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:13:54.766 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:14:27.772 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:15:01.880 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:15:34.896 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:16:07.965 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:16:40.971 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:17:13.989 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:17:47.002 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:18:20.019 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:18:53.041 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:19:26.047 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:19:59.060 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:20:32.068 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:21:06.641 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:21:39.667 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:22:12.682 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:22:45.687 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:23:18.696 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:23:51.719 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:24:24.737 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:24:57.754 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:25:30.769 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:26:03.782 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:26:36.797 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:27:10.841 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:27:43.849 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:28:16.852 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:28:49.869 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:29:23.004 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:29:56.019 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:30:29.033 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:31:02.057 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:31:35.069 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:32:08.082 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:32:41.420 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:33:14.438 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:33:47.676 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:34:21.383 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:34:54.403 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:35:27.418 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:36:00.434 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:36:33.456 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:37:07.532 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:37:40.554 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:38:13.575 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:38:46.588 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:39:19.603 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:39:52.617 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:40:25.633 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:40:58.648 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:41:31.738 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:42:05.923 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:42:38.942 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:43:11.962 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:43:44.981 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:44:17.992 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:44:51.010 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:45:24.740 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:45:30.800 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Server check success, currentServer is 110.42.213.184:8848
21:45:57.766 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:46:30.778 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:47:03.872 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:47:36.882 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:48:10.148 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:48:43.169 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:49:16.174 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:49:49.185 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:50:22.199 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:50:55.212 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:51:28.227 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:52:02.296 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:52:35.306 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:53:08.323 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:53:41.339 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:54:14.356 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:54:47.385 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:55:20.401 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:55:53.417 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:56:26.442 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:56:59.454 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:57:32.469 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:58:05.491 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:58:38.503 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:59:11.518 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:59:44.524 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:00:17.802 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:00:50.815 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:01:23.839 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:01:56.861 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:02:30.780 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:03:03.840 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:03:36.853 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:04:09.876 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:04:42.888 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:05:15.938 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:05:48.945 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:06:21.969 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:06:54.985 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:07:28.005 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:08:01.018 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:08:34.021 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:09:07.040 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:09:40.468 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:10:13.485 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:10:46.497 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:11:19.520 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:11:52.529 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:12:25.623 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:12:58.627 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:13:31.647 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:14:04.673 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:14:37.700 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:15:10.710 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:15:43.734 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:16:16.817 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:16:49.844 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:17:14.840 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Server check success, currentServer is 110.42.213.184:8848
22:17:22.857 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:17:55.875 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:18:28.879 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:19:02.077 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:19:35.100 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:20:08.117 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:45:33.819 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:45:42.604 [nacos-grpc-client-executor-110.42.213.184-1558] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 2827
21:45:42.604 [nacos-grpc-client-executor-110.42.213.184-1558] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 2827
21:45:42.607 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
21:45:42.609 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:45:42.864 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726669256667_220.196.194.142_41179
21:45:42.864 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726660974160_220.196.194.142_40690
21:45:42.864 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726660974160_220.196.194.142_40690
21:45:42.871 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Notify disconnected event to listeners
21:45:42.872 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] DisConnected,clear listen context...
21:45:42.872 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Notify connected event to listeners.
21:45:42.872 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Connected,notify listen context...
21:45:45.445 [nacos-grpc-client-executor-110.42.213.184-1625] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Receive server push request, request = ClientDetectionRequest, requestId = 2828
21:45:45.446 [nacos-grpc-client-executor-110.42.213.184-1625] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Ack server push request, request = ClientDetectionRequest, requestId = 2828
21:46:06.833 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:48:35.531 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:49:09.606 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:49:42.616 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:50:15.639 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:50:48.655 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:51:21.662 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:51:54.671 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:52:27.686 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:53:00.698 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:53:33.709 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:54:06.793 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:54:39.809 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:55:12.830 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:55:45.836 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:56:18.860 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:56:51.873 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:57:24.903 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:57:57.909 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:58:30.933 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:59:03.942 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
21:59:36.951 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:00:09.969 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:00:42.980 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:01:16.030 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:01:49.041 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:02:22.052 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:02:55.062 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:03:28.448 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:04:01.452 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:04:34.470 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:05:08.796 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:05:41.813 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:06:14.825 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:06:47.847 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:07:20.854 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:07:55.332 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:08:28.338 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:09:01.350 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:09:34.369 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:10:07.383 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:10:40.401 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:11:13.489 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:11:46.496 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:12:19.505 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:12:52.523 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:13:25.533 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:13:58.612 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:14:31.630 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:15:05.321 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:15:39.395 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:15:52.780 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
22:15:52.782 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
22:15:52.810 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:15:52.810 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:52.832 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:15:52.832 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:52.897 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
22:15:52.897 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
22:15:53.004 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.025 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.043 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.045 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.256 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.257 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.262 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.263 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.566 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.566 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.571 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.571 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.983 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.984 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:53.995 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:53.997 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:54.497 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:54.502 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:54.511 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:54.519 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:55.104 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:55.110 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:55.133 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:55.140 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:55.818 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:55.850 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:57.053 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:57.055 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:57.855 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:57.856 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:58.563 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:58.579 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:59.474 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:59.491 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:15:59.722 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:15:59.726 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
22:16:00.734 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:16:00.734 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:16:01.842 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
22:16:01.842 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
22:16:01.865 [lettuce-nioEventLoop-4-10] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
22:16:01.865 [lettuce-nioEventLoop-4-9] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
22:16:01.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Success to connect a server [110.42.213.184:8848], connectionId = 1726670960074_117.143.60.138_50428
22:16:01.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726660993979_220.196.194.142_40691
22:16:01.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726660993979_220.196.194.142_40691
22:16:01.871 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726670960076_117.143.60.138_50427
22:16:01.871 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Notify disconnected event to listeners
22:16:01.871 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726669256667_220.196.194.142_41179
22:16:01.871 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726669256667_220.196.194.142_41179
22:16:01.871 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Notify disconnected event to listeners
22:16:01.872 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] DisConnected,clear listen context...
22:16:01.872 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Notify connected event to listeners.
22:16:01.872 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [59e44bff-6868-4dcb-b3ec-b34ca860e9cc_config-0] Connected,notify listen context...
22:16:01.872 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Notify connected event to listeners.
22:16:01.872 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:16:03.017 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
22:16:03.031 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
22:16:03.543 [nacos-grpc-client-executor-110.42.213.184-1977] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Receive server push request, request = NotifySubscriberRequest, requestId = 2843
22:16:03.544 [nacos-grpc-client-executor-110.42.213.184-1977] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Ack server push request, request = NotifySubscriberRequest, requestId = 2843
22:16:12.423 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:16:13.861 [nacos-grpc-client-executor-110.42.213.184-1979] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Receive server push request, request = NotifySubscriberRequest, requestId = 2901
22:16:13.861 [nacos-grpc-client-executor-110.42.213.184-1979] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1794836a-abf7-4a61-b149-af985a76337a] Ack server push request, request = NotifySubscriberRequest, requestId = 2901
22:50:03.638 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:50:37.682 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:51:10.706 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:51:43.734 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:52:16.761 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:52:50.794 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:53:24.835 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:53:57.863 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:54:30.892 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:55:04.916 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:55:38.950 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:56:11.985 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:56:45.010 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:57:18.038 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:57:51.059 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:58:24.084 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:58:58.121 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
22:59:31.145 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:00:04.182 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:00:37.209 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:01:10.234 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:01:43.271 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:02:17.300 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:02:50.331 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:03:23.355 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:03:56.370 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:04:29.418 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:05:02.442 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:05:36.486 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:06:09.510 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:06:42.535 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:07:16.561 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:07:49.597 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:08:22.628 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:08:55.651 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:09:28.679 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:10:01.698 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:10:34.732 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:11:07.764 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:11:40.801 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:12:13.827 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:12:46.842 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:13:19.862 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:13:53.898 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:14:26.920 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:14:59.950 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:15:34.005 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:16:07.023 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:16:41.055 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:17:14.095 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:17:47.125 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:18:20.152 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:18:53.186 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:19:26.213 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:19:59.235 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:20:32.264 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:21:05.293 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:21:38.313 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:22:11.342 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:22:45.374 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:23:18.392 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:23:51.427 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:24:24.445 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:24:57.482 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:25:30.511 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:26:03.546 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:26:36.573 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:27:09.603 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:27:42.624 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:28:16.659 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:28:49.682 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:29:22.721 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:29:55.741 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:30:28.765 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:31:02.802 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:31:35.836 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:32:08.866 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:32:41.894 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:33:14.934 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:33:47.963 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:34:21.003 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:34:54.032 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:35:27.056 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:36:00.091 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:36:33.110 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:37:06.143 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:37:39.179 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:38:12.200 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:38:45.221 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:39:18.239 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:39:51.266 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:40:25.300 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:40:58.323 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:41:32.360 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:42:06.405 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:42:39.426 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:43:12.441 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:43:45.448 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:44:18.464 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:44:52.506 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:45:25.524 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:45:58.542 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:46:31.560 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:47:04.570 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:47:38.623 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:48:11.640 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:48:44.673 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:49:17.688 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:49:50.700 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:50:23.719 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:50:56.733 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:51:29.745 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:52:02.758 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:52:35.776 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:53:08.802 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:53:41.830 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:54:14.852 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:54:47.884 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:55:20.899 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:55:53.905 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:56:26.923 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:56:59.937 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:57:33.966 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:58:06.977 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:58:40.003 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:59:13.018 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]
23:59:46.034 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null]

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,422 @@
15:44:19.044 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
15:44:21.914 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
15:44:21.916 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:44:21.916 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
15:44:21.992 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:44:24.116 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
15:44:24.117 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
15:44:24.117 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
15:44:27.737 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:44:29.364 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
15:44:29.366 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
15:44:29.371 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
15:44:29.371 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
15:44:29.371 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
15:44:29.372 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
15:45:07.918 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
15:45:10.738 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
15:45:10.740 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:45:10.741 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
15:45:10.817 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:45:14.120 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
15:45:14.121 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
15:45:14.121 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
15:45:18.325 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:45:20.113 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
15:45:20.115 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
15:45:20.119 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
15:45:20.119 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
15:45:20.119 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
15:45:20.120 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
15:50:04.887 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
15:50:07.661 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
15:50:07.663 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:50:07.664 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
15:50:07.743 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:50:11.424 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
15:50:11.425 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
15:50:11.426 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
15:50:15.627 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:50:17.406 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
15:50:17.409 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
15:50:17.413 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
15:50:17.413 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
15:50:17.413 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
15:50:17.414 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
15:51:18.482 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
15:51:21.118 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
15:51:21.119 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:51:21.121 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
15:51:21.204 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:51:23.458 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
15:51:23.459 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
15:51:23.460 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
15:51:27.144 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:51:28.959 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
15:51:28.961 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
15:51:28.965 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
15:51:28.966 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
15:51:28.966 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
15:51:28.966 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
15:53:45.561 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
15:53:48.410 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
15:53:48.413 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:53:48.413 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
15:53:48.500 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:53:50.650 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
15:53:50.651 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
15:53:50.652 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
15:53:54.346 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:53:56.156 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
15:53:56.159 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
15:53:56.162 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
15:53:56.163 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
15:53:56.163 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
15:53:56.164 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
15:56:28.713 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
15:56:32.664 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
15:56:32.666 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:56:32.667 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
15:56:32.770 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:56:39.124 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
15:56:39.125 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
15:56:39.127 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
15:56:46.111 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:56:48.589 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
15:56:48.592 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
15:56:48.598 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
15:56:48.599 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
15:56:48.599 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
15:56:48.601 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
15:57:48.457 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
15:57:51.263 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
15:57:51.265 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:57:51.266 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
15:57:51.339 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:57:57.925 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
15:57:57.926 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
15:57:57.926 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
15:58:02.724 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
15:58:04.348 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
15:58:04.349 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
15:58:04.354 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
15:58:04.354 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
15:58:04.355 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
15:58:04.356 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
15:59:09.756 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
15:59:12.315 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
15:59:12.316 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
15:59:12.317 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
15:59:12.397 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
15:59:12.862 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
15:59:12.865 [Druid-ConnectionPool-Create-1502606003] INFO c.a.d.p.DruidAbstractDataSource - [setFailContinuous,1900] - {dataSource-1} failContinuous is true
15:59:12.866 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
16:00:05.226 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
16:00:08.057 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
16:00:08.060 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:00:08.060 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
16:00:08.140 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:00:14.155 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
16:00:14.156 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
16:00:14.156 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:00:20.073 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:00:21.760 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
16:00:21.762 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
16:00:21.766 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
16:00:21.766 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
16:00:21.766 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
16:00:21.766 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
16:03:45.982 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
16:03:48.666 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
16:03:48.668 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:03:48.668 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
16:03:48.741 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:03:55.240 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
16:03:55.241 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
16:03:55.241 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:04:00.352 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:04:01.982 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
16:04:01.984 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
16:04:01.988 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
16:04:01.988 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
16:04:01.989 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
16:04:01.989 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
16:36:02.525 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
16:36:06.298 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
16:36:06.301 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:36:06.301 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
16:36:06.398 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:36:10.312 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
16:36:10.313 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
16:36:10.314 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:36:16.094 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:36:17.862 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
16:36:17.863 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
16:36:17.867 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
16:36:17.868 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
16:36:17.868 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
16:36:17.869 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
18:46:29.337 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
18:46:32.324 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
18:46:32.327 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
18:46:32.327 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
18:46:32.407 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
18:46:36.781 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
18:46:36.783 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
18:46:36.784 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
18:46:41.502 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
18:46:43.259 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
18:46:43.262 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
18:46:43.267 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
18:46:43.268 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
18:46:43.268 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
18:46:43.269 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
20:39:36.577 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
20:39:39.290 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
20:39:39.293 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:39:39.294 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
20:39:39.370 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:39:41.720 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
20:39:41.721 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
20:39:41.721 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
20:39:46.534 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:39:48.365 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
20:39:48.368 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
20:39:48.372 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
20:39:48.372 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
20:39:48.372 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
20:39:48.373 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
20:52:30.737 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
20:52:33.775 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
20:52:33.777 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:52:33.778 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
20:52:33.873 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:52:36.148 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
20:52:36.150 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
20:52:36.150 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
20:52:40.114 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:52:41.757 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
20:52:41.759 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
20:52:41.762 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
20:52:41.763 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
20:52:41.763 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
20:52:41.764 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
20:56:07.588 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
20:56:10.182 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
20:56:10.184 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:56:10.185 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
20:56:10.272 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:56:29.850 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
20:56:29.851 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
20:56:29.851 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
20:56:39.451 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:56:41.144 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
20:56:41.146 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
20:56:41.150 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
20:56:41.150 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
20:56:41.150 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
20:56:41.151 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
21:00:02.474 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
21:00:05.352 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"]
21:00:05.354 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
21:00:05.355 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
21:00:05.437 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
21:00:09.969 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
21:00:09.970 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
21:00:09.971 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
21:00:14.821 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
21:00:16.687 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
21:00:16.690 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
21:00:16.694 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
21:00:16.695 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
21:00:16.695 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
21:00:16.696 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
21:05:20.948 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
21:06:05.397 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
21:11:29.370 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
21:11:31.965 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9707"]
21:11:31.967 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
21:11:31.967 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
21:11:32.043 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
21:11:37.856 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
21:11:37.857 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
21:11:37.857 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
21:11:41.186 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
21:11:43.755 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9707"]
21:11:43.863 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
21:11:43.864 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
21:11:43.864 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
21:11:43.868 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
21:11:43.870 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
21:11:43.871 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
21:11:44.010 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of eab7062e-bf3a-4930-9f82-b6cdc1ea688e
21:11:44.011 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->eab7062e-bf3a-4930-9f82-b6cdc1ea688e
21:11:44.012 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eab7062e-bf3a-4930-9f82-b6cdc1ea688e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
21:11:44.012 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eab7062e-bf3a-4930-9f82-b6cdc1ea688e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
21:11:44.012 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eab7062e-bf3a-4930-9f82-b6cdc1ea688e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
21:11:44.012 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eab7062e-bf3a-4930-9f82-b6cdc1ea688e] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
21:11:44.013 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:11:44.390 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eab7062e-bf3a-4930-9f82-b6cdc1ea688e] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727010704316_117.143.60.138_62216
21:11:44.390 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eab7062e-bf3a-4930-9f82-b6cdc1ea688e] Notify connected event to listeners.
21:11:44.390 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eab7062e-bf3a-4930-9f82-b6cdc1ea688e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
21:11:44.390 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
21:11:44.390 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eab7062e-bf3a-4930-9f82-b6cdc1ea688e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x00000238934316b0
21:11:44.392 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-system with instance Instance{instanceId='null', ip='10.113.37.107', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
21:11:44.473 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 10.113.37.107:9707 register finished
21:11:44.583 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 18.005 seconds (process running for 18.569)
21:11:44.590 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
21:11:44.590 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
21:11:44.590 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system+DEFAULT_GROUP
21:11:44.597 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1
21:11:44.598 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP
21:11:44.599 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP
21:11:44.599 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1
21:11:44.599 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP
21:11:44.599 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP
21:11:44.599 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1
21:11:44.599 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP
21:11:56.704 [http-nio-9707-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
22:27:26.557 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:27:30.116 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9707"]
22:27:30.119 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:27:30.120 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:27:30.221 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:27:32.334 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
22:27:32.335 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
22:27:32.335 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
22:27:37.318 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:27:42.182 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9707"]
22:27:42.397 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:27:42.398 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:27:42.399 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:27:42.409 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:27:42.415 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
22:27:42.415 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
22:27:42.550 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of dbc82b29-90b6-43c8-9373-d3d21bb9845e
22:27:42.552 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->dbc82b29-90b6-43c8-9373-d3d21bb9845e
22:27:42.553 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbc82b29-90b6-43c8-9373-d3d21bb9845e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:27:42.553 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbc82b29-90b6-43c8-9373-d3d21bb9845e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:27:42.554 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbc82b29-90b6-43c8-9373-d3d21bb9845e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:27:42.555 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbc82b29-90b6-43c8-9373-d3d21bb9845e] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
22:27:42.556 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:42.702 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbc82b29-90b6-43c8-9373-d3d21bb9845e] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727015262679_117.143.60.138_60511
22:27:42.705 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbc82b29-90b6-43c8-9373-d3d21bb9845e] Notify connected event to listeners.
22:27:42.705 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbc82b29-90b6-43c8-9373-d3d21bb9845e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:27:42.706 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:27:42.706 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbc82b29-90b6-43c8-9373-d3d21bb9845e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x00000202014327c8
22:27:42.708 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-system with instance Instance{instanceId='null', ip='10.113.37.107', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
22:27:42.730 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 10.113.37.107:9707 register finished
22:27:42.926 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 19.409 seconds (process running for 20.0)
22:27:42.937 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:27:42.937 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:27:42.938 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system+DEFAULT_GROUP
22:27:42.947 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1
22:27:42.947 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP
22:27:42.948 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP
22:27:42.948 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1
22:27:42.948 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP
22:27:42.949 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP
22:27:42.949 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1
22:27:42.949 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP
22:27:50.299 [http-nio-9707-exec-2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
22:30:21.288 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:30:21.289 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-system with instance: Instance{instanceId='null', ip='10.113.37.107', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
22:30:21.300 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
22:30:21.302 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
22:30:21.302 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
22:30:21.303 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
22:30:21.303 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
22:30:21.303 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
22:30:21.303 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
22:30:21.303 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
22:30:21.303 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
22:30:21.303 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
22:30:21.303 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
22:30:21.304 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
22:30:21.304 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->dbc82b29-90b6-43c8-9373-d3d21bb9845e
22:30:21.304 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@3428b68c[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 52]
22:30:21.304 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
22:30:21.304 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@485cd4db[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:30:21.304 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727015262679_117.143.60.138_60511
22:30:21.309 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@740e5c4f[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 42]
22:30:21.309 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->dbc82b29-90b6-43c8-9373-d3d21bb9845e
22:30:21.310 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
22:30:21.310 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
22:30:21.310 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
22:30:21.321 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
22:30:21.326 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
22:30:21.332 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
22:30:21.332 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
22:30:21.332 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
22:31:05.090 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:31:08.580 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9707"]
22:31:08.583 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:31:08.584 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:31:08.680 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:31:10.772 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
22:31:10.773 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
22:31:10.773 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
22:31:14.280 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:31:17.371 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9707"]
22:31:17.479 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:31:17.480 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:31:17.480 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:31:17.484 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:31:17.488 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
22:31:17.489 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
22:31:17.691 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f7a626a3-35eb-4b0f-b4db-132728442068
22:31:17.692 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->f7a626a3-35eb-4b0f-b4db-132728442068
22:31:17.693 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f7a626a3-35eb-4b0f-b4db-132728442068] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:31:17.693 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f7a626a3-35eb-4b0f-b4db-132728442068] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:31:17.693 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f7a626a3-35eb-4b0f-b4db-132728442068] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:31:17.694 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f7a626a3-35eb-4b0f-b4db-132728442068] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
22:31:17.694 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:31:18.003 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f7a626a3-35eb-4b0f-b4db-132728442068] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727015477902_117.143.60.138_60831
22:31:18.004 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f7a626a3-35eb-4b0f-b4db-132728442068] Notify connected event to listeners.
22:31:18.004 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f7a626a3-35eb-4b0f-b4db-132728442068] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:31:18.004 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:31:18.004 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f7a626a3-35eb-4b0f-b4db-132728442068] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x000001f80143c780
22:31:18.007 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-system with instance Instance{instanceId='null', ip='10.113.37.107', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
22:31:18.039 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 10.113.37.107:9707 register finished
22:31:18.167 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 16.054 seconds (process running for 16.573)
22:31:18.174 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:31:18.175 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:31:18.175 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system+DEFAULT_GROUP
22:31:18.182 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1
22:31:18.182 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP
22:31:18.183 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP
22:31:18.183 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1
22:31:18.183 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP
22:31:18.183 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP
22:31:18.183 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1
22:31:18.183 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP
22:31:29.085 [http-nio-9707-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
22:49:07.739 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:49:07.739 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-system with instance: Instance{instanceId='null', ip='10.113.37.107', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
22:49:07.752 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
22:49:07.754 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
22:49:07.755 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
22:49:07.755 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
22:49:07.755 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
22:49:07.755 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
22:49:07.755 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
22:49:07.755 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
22:49:07.755 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
22:49:07.756 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
22:49:07.756 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
22:49:07.756 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
22:49:07.756 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->f7a626a3-35eb-4b0f-b4db-132728442068
22:49:07.756 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@670da7d2[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 355]
22:49:07.756 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
22:49:07.756 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1b3baca3[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:49:07.757 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727015477902_117.143.60.138_60831
22:49:07.761 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6cf028bc[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 227]
22:49:07.761 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->f7a626a3-35eb-4b0f-b4db-132728442068
22:49:07.762 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
22:49:07.762 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
22:49:07.762 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
22:49:07.773 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
22:49:07.775 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
22:49:07.780 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
22:49:07.780 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
22:49:07.780 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye

View File

@ -0,0 +1,707 @@
08:15:24.983 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
08:15:28.361 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9707"]
08:15:28.363 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
08:15:28.364 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
08:15:28.492 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
08:15:30.597 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
08:15:30.598 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
08:15:30.598 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
08:15:33.695 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
08:15:36.609 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9707"]
08:15:36.718 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
08:15:36.719 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
08:15:36.719 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
08:15:36.723 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
08:15:36.727 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
08:15:36.727 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
08:15:36.856 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 23e366a8-1635-4ce8-8a74-504fb5cdff37
08:15:36.857 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->23e366a8-1635-4ce8-8a74-504fb5cdff37
08:15:36.857 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
08:15:36.857 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
08:15:36.858 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
08:15:36.859 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
08:15:36.859 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:15:37.092 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727050537381_117.143.60.138_64091
08:15:37.093 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:15:37.093 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify connected event to listeners.
08:15:37.093 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x000001ecb042fde0
08:15:37.093 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
08:15:37.094 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-system with instance Instance{instanceId='null', ip='10.113.37.107', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
08:15:37.110 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 10.113.37.107:9707 register finished
08:15:37.220 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 15.421 seconds (process running for 16.051)
08:15:37.226 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
08:15:37.227 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
08:15:37.227 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system+DEFAULT_GROUP
08:15:37.232 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1
08:15:37.233 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP
08:15:37.233 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP
08:15:37.233 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1
08:15:37.234 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP
08:15:37.234 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP
08:15:37.234 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1
08:15:37.234 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP
08:15:48.308 [http-nio-9707-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
08:58:48.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server check success, currentServer is 110.42.213.184:8848
09:00:55.780 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Server healthy check fail, currentConnection = 1727050524678_117.143.60.138_64068
09:00:55.780 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:00:55.780 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:58.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:01.902 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:02.104 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:05.115 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:05.426 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:08.445 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:08.846 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:11.717 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053270513_117.143.60.138_58112
09:01:11.717 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050524678_117.143.60.138_64068
09:01:11.717 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050524678_117.143.60.138_64068
09:01:11.718 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify disconnected event to listeners
09:01:11.718 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] DisConnected,clear listen context...
09:01:11.718 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify connected event to listeners.
09:01:11.718 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Connected,notify listen context...
09:01:13.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:01:13.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:16.147 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:19.155 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:19.356 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:20.623 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server healthy check fail, currentConnection = 1727050537381_117.143.60.138_64091
09:01:20.623 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:01:20.623 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:22.368 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:22.677 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:23.226 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Success to connect a server [110.42.213.184:8848], connectionId = 1727053281398_117.143.60.138_58172
09:01:23.226 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050537381_117.143.60.138_64091
09:01:23.226 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050537381_117.143.60.138_64091
09:01:23.226 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify disconnected event to listeners
09:01:23.227 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify connected event to listeners.
09:01:23.227 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:01:25.691 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:26.095 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:26.126 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
09:01:29.107 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:29.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:30.477 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053290263_117.143.60.138_58205
09:01:30.477 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053270513_117.143.60.138_58112
09:01:30.477 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053270513_117.143.60.138_58112
09:01:30.477 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify disconnected event to listeners
09:01:30.477 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] DisConnected,clear listen context...
09:01:30.477 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify connected event to listeners.
09:01:30.477 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Connected,notify listen context...
09:02:15.146 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Server healthy check fail, currentConnection = 1727053290263_117.143.60.138_58205
09:02:15.146 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:02:15.146 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:18.260 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:21.272 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:02:21.475 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:24.489 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:02:24.801 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:25.759 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053345448_117.143.60.138_58461
09:02:25.759 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053290263_117.143.60.138_58205
09:02:25.759 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053290263_117.143.60.138_58205
09:02:25.759 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify disconnected event to listeners
09:02:25.759 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] DisConnected,clear listen context...
09:02:25.759 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify connected event to listeners.
09:02:25.759 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Connected,notify listen context...
09:02:34.412 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server check success, currentServer is 110.42.213.184:8848
09:02:51.937 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server healthy check fail, currentConnection = 1727053281398_117.143.60.138_58172
09:02:51.937 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:02:51.937 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:52.691 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Success to connect a server [110.42.213.184:8848], connectionId = 1727053372715_117.143.60.138_58558
09:02:52.691 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053281398_117.143.60.138_58172
09:02:52.691 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053281398_117.143.60.138_58172
09:02:52.691 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify disconnected event to listeners
09:02:52.692 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify connected event to listeners.
09:02:52.692 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:02:53.528 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
09:03:27.934 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Server healthy check fail, currentConnection = 1727053345448_117.143.60.138_58461
09:03:27.934 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:03:27.934 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:28.904 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053408640_117.143.60.138_51315
09:03:28.904 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053345448_117.143.60.138_58461
09:03:28.904 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053345448_117.143.60.138_58461
09:03:28.904 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify disconnected event to listeners
09:03:28.905 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] DisConnected,clear listen context...
09:03:28.905 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify connected event to listeners.
09:03:28.905 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Connected,notify listen context...
09:04:33.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server healthy check fail, currentConnection = 1727053372715_117.143.60.138_58558
09:04:33.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:04:33.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:04:36.641 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:04:37.854 [nacos-grpc-client-executor-110.42.213.184-599] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Receive server push request, request = ClientDetectionRequest, requestId = 3581
09:04:37.854 [nacos-grpc-client-executor-110.42.213.184-599] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Ack server push request, request = ClientDetectionRequest, requestId = 3581
09:04:38.305 [nacos-grpc-client-executor-110.42.213.184-600] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1727053372715_117.143.60.138_58558]Ignore complete event,isRunning:false,isAbandon=false
09:04:39.657 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:04:39.872 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:04:40.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Success to connect a server [110.42.213.184:8848], connectionId = 1727053480522_117.143.60.138_51512
09:04:40.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053372715_117.143.60.138_58558
09:04:40.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053372715_117.143.60.138_58558
09:04:40.892 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify disconnected event to listeners
09:04:40.892 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify connected event to listeners.
09:04:40.892 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:04:41.426 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:04:41.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:04:42.329 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
09:04:44.443 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:04:47.457 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:04:47.458 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:04:49.221 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Success to connect a server [110.42.213.184:8848], connectionId = 1727053489394_117.143.60.138_51569
09:04:49.221 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053480522_117.143.60.138_51512
09:04:49.221 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053480522_117.143.60.138_51512
09:04:49.221 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify disconnected event to listeners
09:04:49.222 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify connected event to listeners.
09:04:49.222 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:04:50.218 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
09:05:12.871 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server check success, currentServer is 110.42.213.184:8848
09:05:34.753 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Server healthy check fail, currentConnection = 1727053408640_117.143.60.138_51315
09:05:34.753 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:05:34.753 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:36.843 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053535444_117.143.60.138_49284
09:05:36.843 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053408640_117.143.60.138_51315
09:05:36.843 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053408640_117.143.60.138_51315
09:05:36.843 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify disconnected event to listeners
09:05:36.844 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] DisConnected,clear listen context...
09:05:36.844 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify connected event to listeners.
09:05:36.844 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Connected,notify listen context...
09:05:49.648 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Server check success, currentServer is 110.42.213.184:8848
09:05:51.368 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Server check success, currentServer is 110.42.213.184:8848
09:07:44.011 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server healthy check fail, currentConnection = 1727053489394_117.143.60.138_51569
09:07:44.011 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:07:44.011 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:07:47.139 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:07:49.664 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Success to connect a server [110.42.213.184:8848], connectionId = 1727053668847_117.143.60.138_64282
09:07:49.664 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053489394_117.143.60.138_51569
09:07:49.664 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053489394_117.143.60.138_51569
09:07:49.664 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify disconnected event to listeners
09:07:49.665 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify connected event to listeners.
09:07:49.665 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:07:50.096 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server check success, currentServer is 110.42.213.184:8848
09:07:51.249 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
09:07:56.096 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server check success, currentServer is 110.42.213.184:8848
09:07:57.264 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
09:10:11.344 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
09:10:11.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-system with instance: Instance{instanceId='null', ip='10.113.37.107', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
09:10:11.471 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
09:10:11.472 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->23e366a8-1635-4ce8-8a74-504fb5cdff37
09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1e6410b[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1086]
09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@663c7423[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053668847_117.143.60.138_64282
09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@768aeb91[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 704]
09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->23e366a8-1635-4ce8-8a74-504fb5cdff37
09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
09:10:11.486 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
09:10:11.488 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
09:10:11.492 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
09:10:11.492 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
09:10:11.492 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
09:11:05.868 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
09:11:08.781 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9707"]
09:11:08.783 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:11:08.783 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
09:11:08.869 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:11:26.112 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
09:11:26.114 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
09:11:26.114 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:11:32.348 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:11:35.487 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9707"]
09:11:35.607 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
09:11:35.607 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
09:11:35.607 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
09:11:35.612 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
09:11:35.617 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:11:35.617 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:11:35.813 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 721d7967-ec5a-4219-ac11-78782e7a3940
09:11:35.815 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->721d7967-ec5a-4219-ac11-78782e7a3940
09:11:35.815 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:11:35.815 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:11:35.816 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:11:35.817 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
09:11:35.817 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:11:36.248 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727053896451_117.143.60.138_55969
09:11:36.248 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:11:36.248 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Notify connected event to listeners.
09:11:36.248 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x000001b1bd441470
09:11:36.248 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:11:36.249 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-system with instance Instance{instanceId='null', ip='10.113.37.107', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
09:11:36.351 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 10.113.37.107:9707 register finished
09:11:36.484 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 37.333 seconds (process running for 37.897)
09:11:36.493 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
09:11:36.494 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
09:11:36.495 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system+DEFAULT_GROUP
09:11:36.502 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1
09:11:36.503 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP
09:11:36.504 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP
09:11:36.504 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1
09:11:36.504 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP
09:11:36.504 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP
09:11:36.504 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1
09:11:36.504 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP
09:12:04.292 [http-nio-9707-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:56:12.197 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Server check success, currentServer is 110.42.213.184:8848
09:57:25.924 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Server healthy check fail, currentConnection = 1727053863838_117.143.60.138_55892
09:57:25.924 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:57:25.925 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:57:26.584 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056646782_117.143.60.138_55371
09:57:26.584 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053863838_117.143.60.138_55892
09:57:26.584 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053863838_117.143.60.138_55892
09:57:26.590 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify disconnected event to listeners
09:57:26.590 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] DisConnected,clear listen context...
09:57:26.590 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify connected event to listeners.
09:57:26.590 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Connected,notify listen context...
09:59:18.307 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Server healthy check fail, currentConnection = 1727056646782_117.143.60.138_55371
09:59:18.307 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:59:18.308 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:59:21.422 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:59:24.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:59:24.630 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:59:27.565 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056765429_117.143.60.138_55557
09:59:27.565 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056646782_117.143.60.138_55371
09:59:27.565 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056646782_117.143.60.138_55371
09:59:27.566 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify disconnected event to listeners
09:59:27.566 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] DisConnected,clear listen context...
09:59:27.566 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify connected event to listeners.
09:59:27.566 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Connected,notify listen context...
09:59:29.334 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Server check success, currentServer is 110.42.213.184:8848
10:01:40.312 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Server check success, currentServer is 110.42.213.184:8848
10:02:00.144 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Server check success, currentServer is 110.42.213.184:8848
10:02:24.975 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
10:02:24.975 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
10:02:25.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056945861_117.143.60.138_56043
10:02:25.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056765429_117.143.60.138_55557
10:02:25.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056765429_117.143.60.138_55557
10:02:25.892 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify disconnected event to listeners
10:02:25.892 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] DisConnected,clear listen context...
10:02:25.893 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify connected event to listeners.
10:02:25.893 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Connected,notify listen context...
10:04:21.486 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Server healthy check fail, currentConnection = 1727056945861_117.143.60.138_56043
10:04:21.486 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
10:04:21.487 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
10:04:24.608 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
10:04:25.168 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727057065384_117.143.60.138_56325
10:04:25.168 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056945861_117.143.60.138_56043
10:04:25.168 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056945861_117.143.60.138_56043
10:04:25.168 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify disconnected event to listeners
10:04:25.168 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] DisConnected,clear listen context...
10:04:25.168 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify connected event to listeners.
10:04:25.168 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Connected,notify listen context...
10:09:03.568 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
10:09:03.612 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
10:09:03.723 [lettuce-nioEventLoop-4-3] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
10:37:30.264 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
10:37:30.265 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-system with instance: Instance{instanceId='null', ip='10.113.37.107', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
10:37:30.342 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
10:37:30.344 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
10:37:30.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
10:37:30.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
10:37:30.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
10:37:30.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
10:37:30.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->721d7967-ec5a-4219-ac11-78782e7a3940
10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1f2b4f55[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1713]
10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
10:37:30.347 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2ef423b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
10:37:30.347 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053896451_117.143.60.138_55969
10:37:30.347 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@72fd0743[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 1017]
10:37:30.347 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->721d7967-ec5a-4219-ac11-78782e7a3940
10:37:30.348 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
10:37:30.348 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
10:37:30.348 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
10:37:30.364 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
10:37:30.370 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
10:37:30.376 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
10:37:30.378 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
10:37:30.378 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
11:05:58.555 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
11:06:03.490 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9707"]
11:06:03.497 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
11:06:03.499 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
11:06:03.712 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
11:06:08.966 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
11:06:08.968 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
11:06:08.968 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
11:06:16.236 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
11:06:19.810 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9707"]
11:06:19.946 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
11:06:19.946 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
11:06:19.947 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
11:06:19.952 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
11:06:19.957 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
11:06:19.957 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
11:06:20.085 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of b0790c19-f153-4f45-8312-7ae5d254d4e0
11:06:20.086 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->b0790c19-f153-4f45-8312-7ae5d254d4e0
11:06:20.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
11:06:20.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
11:06:20.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
11:06:20.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
11:06:20.088 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
11:06:20.446 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727060780881_58.247.23.179_32432
11:06:20.446 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:06:20.446 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x000002ba45433028
11:06:20.446 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Notify connected event to listeners.
11:06:20.447 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
11:06:20.447 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-system with instance Instance{instanceId='null', ip='192.168.54.217', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
11:06:20.559 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 192.168.54.217:9707 register finished
11:06:20.698 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 27.643 seconds (process running for 28.252)
11:06:20.708 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
11:06:20.709 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
11:06:20.709 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system+DEFAULT_GROUP
11:06:20.717 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1
11:06:20.717 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP
11:06:20.718 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP
11:06:20.718 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1
11:06:20.718 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP
11:06:20.718 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP
11:06:20.718 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1
11:06:20.718 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP
11:06:28.284 [http-nio-9707-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
11:34:00.824 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Server check success, currentServer is 110.42.213.184:8848
12:15:42.557 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Server healthy check fail, currentConnection = 1727060757716_58.247.23.179_62231
12:15:42.557 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
12:15:42.558 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:15:42.914 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727064943379_58.247.23.179_32450
12:15:42.914 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727060757716_58.247.23.179_62231
12:15:42.914 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727060757716_58.247.23.179_62231
12:15:42.920 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Notify disconnected event to listeners
12:15:42.920 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] DisConnected,clear listen context...
12:15:42.920 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Notify connected event to listeners.
12:15:42.920 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Connected,notify listen context...
12:18:12.032 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Server check success, currentServer is 110.42.213.184:8848
12:22:35.571 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Server check success, currentServer is 110.42.213.184:8848
12:38:54.047 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Server check success, currentServer is 110.42.213.184:8848
12:39:48.612 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Server healthy check fail, currentConnection = 1727060780881_58.247.23.179_32432
12:39:48.612 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Try to reconnect to a new server, server is not appointed, will choose a random server.
12:39:48.613 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:39:51.739 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:39:54.743 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:39:54.945 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:39:57.951 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:39:58.262 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:01.273 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:40:01.679 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:04.690 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:40:05.200 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:08.215 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:40:08.823 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:11.835 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:40:12.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:15.546 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:40:16.356 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:19.259 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Server healthy check fail, currentConnection = 1727064943379_58.247.23.179_32450
12:40:19.259 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
12:40:19.259 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:19.367 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:40:20.272 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:22.381 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:23.284 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:40:24.289 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:40:24.501 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Success to connect a server [110.42.213.184:8848], connectionId = 1727066425064_58.247.23.179_32926
12:40:24.501 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727060780881_58.247.23.179_32432
12:40:24.501 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727060780881_58.247.23.179_32432
12:40:24.501 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Notify disconnected event to listeners
12:40:24.503 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Notify connected event to listeners.
12:40:24.503 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
12:40:24.938 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727066425433_58.247.23.179_62492
12:40:24.938 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727064943379_58.247.23.179_32450
12:40:24.938 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727064943379_58.247.23.179_32450
12:40:24.938 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Notify disconnected event to listeners
12:40:24.938 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] DisConnected,clear listen context...
12:40:24.938 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Notify connected event to listeners.
12:40:24.939 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Connected,notify listen context...
12:40:24.990 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Server check success, currentServer is 110.42.213.184:8848
12:40:26.998 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
12:50:40.533 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Try to reconnect to a new server, server is not appointed, will choose a random server.
12:50:40.533 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:43.655 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:46.668 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:46.871 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:49.369 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Server healthy check fail, currentConnection = 1727066425433_58.247.23.179_62492
12:50:49.369 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
12:50:49.369 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:49.884 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:50.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:52.489 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:52.501 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:52.706 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:52.711 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:53.021 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:53.026 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:53.207 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:53.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:53.431 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:53.610 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:53.615 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:53.936 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:53.941 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:54.124 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:54.129 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:54.543 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:54.547 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:54.736 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:54.740 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:55.254 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:55.258 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:55.455 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:55.459 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:56.062 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:56.066 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:56.264 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:56.269 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:56.980 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:56.984 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:57.183 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:57.187 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:57.996 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:57.999 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:58.198 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:58.202 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:58.838 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
12:50:58.839 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
12:50:58.960 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
12:50:58.988 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
12:50:59.106 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:59.113 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:50:59.311 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:50:59.316 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:00.324 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:00.327 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:00.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:00.531 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:01.633 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:01.833 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:02.400 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:03.815 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:04.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:04.841 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:05.045 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
12:51:05.045 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
12:51:05.570 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:05.823 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:06.252 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:06.490 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:07.433 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:07.674 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:07.992 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:08.247 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:09.383 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:09.623 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:09.850 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:10.103 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 16 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
12:51:11.439 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:11.582 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727067072182_117.143.60.138_52873
12:51:11.582 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727066425433_58.247.23.179_62492
12:51:11.582 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727066425433_58.247.23.179_62492
12:51:11.582 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Notify disconnected event to listeners
12:51:11.582 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] DisConnected,clear listen context...
12:51:11.582 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Notify connected event to listeners.
12:51:11.583 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Connected,notify listen context...
12:51:11.815 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
12:51:12.032 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Success to connect a server [110.42.213.184:8848], connectionId = 1727067072621_117.143.60.138_52875
12:51:12.032 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727066425064_58.247.23.179_32926
12:51:12.032 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727066425064_58.247.23.179_32926
12:51:12.032 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Notify disconnected event to listeners
12:51:12.032 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Notify connected event to listeners.
12:51:12.032 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
12:51:14.228 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
12:51:17.949 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
12:51:17.949 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/<unresolved>:6379
12:51:17.975 [lettuce-nioEventLoop-4-14] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
12:51:17.976 [lettuce-nioEventLoop-4-13] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
14:25:44.355 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Server healthy check fail, currentConnection = 1727067072182_117.143.60.138_52873
14:25:44.355 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
14:25:44.355 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:25:44.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727072745391_117.143.60.138_63565
14:25:44.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727067072182_117.143.60.138_52873
14:25:44.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727067072182_117.143.60.138_52873
14:25:44.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Notify disconnected event to listeners
14:25:44.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] DisConnected,clear listen context...
14:25:44.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Notify connected event to listeners.
14:25:44.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Connected,notify listen context...
14:31:21.888 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Server healthy check fail, currentConnection = 1727067072621_117.143.60.138_52875
14:31:21.888 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Try to reconnect to a new server, server is not appointed, will choose a random server.
14:31:21.888 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:31:24.555 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Success to connect a server [110.42.213.184:8848], connectionId = 1727073085111_117.143.60.138_65416
14:31:24.555 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727067072621_117.143.60.138_52875
14:31:24.555 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727067072621_117.143.60.138_52875
14:31:24.555 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Notify disconnected event to listeners
14:31:24.556 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Notify connected event to listeners.
14:31:24.556 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
14:31:24.916 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
14:33:41.197 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4b680e8-b19b-48bd-a2a4-7a2d7bb3b415_config-0] Server check success, currentServer is 110.42.213.184:8848
14:34:25.962 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Server healthy check fail, currentConnection = 1727073085111_117.143.60.138_65416
14:34:25.962 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Try to reconnect to a new server, server is not appointed, will choose a random server.
14:34:25.962 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:34:26.430 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Success to connect a server [110.42.213.184:8848], connectionId = 1727073266986_117.143.60.138_58725
14:34:26.430 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727073085111_117.143.60.138_65416
14:34:26.430 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727073085111_117.143.60.138_65416
14:34:26.431 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Notify disconnected event to listeners
14:34:26.431 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Notify connected event to listeners.
14:34:26.431 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
14:34:26.755 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
16:22:02.369 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Server healthy check fail, currentConnection = 1727073266986_117.143.60.138_58725
16:22:02.369 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:22:02.370 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:22:03.584 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Success to connect a server [110.42.213.184:8848], connectionId = 1727079723501_117.143.60.138_55067
16:22:03.584 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727073266986_117.143.60.138_58725
16:22:03.584 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727073266986_117.143.60.138_58725
16:22:03.584 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Notify disconnected event to listeners
16:22:03.584 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Notify connected event to listeners.
16:22:03.584 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
16:22:05.998 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
16:23:01.922 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Server healthy check fail, currentConnection = 1727079723501_117.143.60.138_55067
16:23:01.922 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:23:01.922 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:23:05.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:23:08.043 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
16:23:08.247 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:23:08.869 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Success to connect a server [110.42.213.184:8848], connectionId = 1727079789410_117.143.60.138_64347
16:23:08.869 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727079723501_117.143.60.138_55067
16:23:08.869 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727079723501_117.143.60.138_55067
16:23:08.869 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Notify disconnected event to listeners
16:23:08.869 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Notify connected event to listeners.
16:23:08.869 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
16:23:09.325 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
17:19:20.416 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Server healthy check fail, currentConnection = 1727079789410_117.143.60.138_64347
17:19:20.416 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Try to reconnect to a new server, server is not appointed, will choose a random server.
17:19:20.417 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
17:19:21.411 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Success to connect a server [110.42.213.184:8848], connectionId = 1727083162129_117.143.60.138_49163
17:19:21.411 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727079789410_117.143.60.138_64347
17:19:21.411 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727079789410_117.143.60.138_64347
17:19:21.411 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Notify disconnected event to listeners
17:19:21.411 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b0790c19-f153-4f45-8312-7ae5d254d4e0] Notify connected event to listeners.
17:19:21.411 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
17:19:23.592 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
19:21:50.207 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
19:21:50.211 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-system with instance: Instance{instanceId='null', ip='192.168.54.217', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
19:21:50.239 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
19:21:50.244 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
19:21:50.244 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
19:21:50.245 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
19:21:50.245 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
19:21:50.245 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
19:21:50.246 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
19:21:50.246 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
19:21:50.246 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
19:21:50.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
19:21:50.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
19:21:50.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
19:21:50.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->b0790c19-f153-4f45-8312-7ae5d254d4e0
19:21:50.248 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@7184abe9[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 9880]
19:21:50.248 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
19:21:50.249 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5a39166a[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
19:21:50.249 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727083162129_117.143.60.138_49163
19:21:50.252 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7a27b628[Running, pool size = 4, active threads = 1, queued tasks = 0, completed tasks = 5753]
19:21:50.253 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->b0790c19-f153-4f45-8312-7ae5d254d4e0
19:21:50.254 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
19:21:50.255 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
19:21:50.256 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
19:21:50.277 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
19:21:50.287 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
19:21:50.289 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
19:21:50.289 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
19:21:50.290 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
22:27:01.693 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:27:06.548 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9707"]
22:27:06.551 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:27:06.551 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:27:06.666 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:27:09.095 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
22:27:09.096 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
22:27:09.097 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
22:27:13.989 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:27:17.665 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9707"]
22:27:17.819 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:27:17.820 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:27:17.820 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:27:17.825 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:27:17.831 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
22:27:17.832 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
22:27:18.098 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 84e9c293-5fb0-455c-ba56-9f7b09ec8f73
22:27:18.099 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->84e9c293-5fb0-455c-ba56-9f7b09ec8f73
22:27:18.100 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84e9c293-5fb0-455c-ba56-9f7b09ec8f73] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:27:18.100 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84e9c293-5fb0-455c-ba56-9f7b09ec8f73] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:27:18.100 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84e9c293-5fb0-455c-ba56-9f7b09ec8f73] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:27:18.101 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84e9c293-5fb0-455c-ba56-9f7b09ec8f73] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
22:27:18.101 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:18.245 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84e9c293-5fb0-455c-ba56-9f7b09ec8f73] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727101638347_117.143.60.138_56937
22:27:18.245 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84e9c293-5fb0-455c-ba56-9f7b09ec8f73] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:27:18.245 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84e9c293-5fb0-455c-ba56-9f7b09ec8f73] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x00000227814418a8
22:27:18.245 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84e9c293-5fb0-455c-ba56-9f7b09ec8f73] Notify connected event to listeners.
22:27:18.245 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:27:18.247 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-system with instance Instance{instanceId='null', ip='10.113.37.59', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
22:27:18.262 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 10.113.37.59:9707 register finished
22:27:18.393 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 22.37 seconds (process running for 23.151)
22:27:18.406 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:27:18.406 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:27:18.407 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system+DEFAULT_GROUP
22:27:18.414 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1
22:27:18.414 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP
22:27:18.415 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP
22:27:18.415 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1
22:27:18.415 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP
22:27:18.415 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP
22:27:18.415 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1
22:27:18.415 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP
22:27:21.307 [http-nio-9707-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'

View File

@ -1,346 +1,105 @@
08:15:24.983 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
08:15:28.361 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9707"]
08:15:28.363 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
08:15:28.364 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
08:15:28.492 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
08:15:30.597 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
08:15:30.598 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
08:15:30.598 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
08:15:33.695 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
08:15:36.609 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9707"]
08:15:36.718 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
08:15:36.719 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
08:15:36.719 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
08:15:36.723 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
08:15:36.727 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
08:15:36.727 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
08:15:36.856 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 23e366a8-1635-4ce8-8a74-504fb5cdff37
08:15:36.857 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->23e366a8-1635-4ce8-8a74-504fb5cdff37
08:15:36.857 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
08:15:36.857 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
08:15:36.858 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
08:15:36.859 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
08:15:36.859 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:15:37.092 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727050537381_117.143.60.138_64091
08:15:37.093 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:15:37.093 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify connected event to listeners.
08:15:37.093 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x000001ecb042fde0
08:15:37.093 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
08:15:37.094 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-system with instance Instance{instanceId='null', ip='10.113.37.107', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
08:15:37.110 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 10.113.37.107:9707 register finished
08:15:37.220 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 15.421 seconds (process running for 16.051)
08:15:37.226 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
08:15:37.227 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
08:15:37.227 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system+DEFAULT_GROUP
08:15:37.232 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1
08:15:37.233 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP
08:15:37.233 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP
08:15:37.233 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1
08:15:37.234 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP
08:15:37.234 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP
08:15:37.234 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1
08:15:37.234 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP
08:15:48.308 [http-nio-9707-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
08:58:48.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server check success, currentServer is 110.42.213.184:8848
09:00:55.780 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Server healthy check fail, currentConnection = 1727050524678_117.143.60.138_64068
09:00:55.780 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:00:55.780 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:58.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:01.902 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:02.104 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:05.115 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:05.426 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:08.445 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:08.846 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:11.717 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053270513_117.143.60.138_58112
09:01:11.717 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050524678_117.143.60.138_64068
09:01:11.717 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050524678_117.143.60.138_64068
09:01:11.718 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify disconnected event to listeners
09:01:11.718 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] DisConnected,clear listen context...
09:01:11.718 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify connected event to listeners.
09:01:11.718 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Connected,notify listen context...
09:01:13.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:01:13.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:16.147 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:19.155 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:19.356 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:20.623 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server healthy check fail, currentConnection = 1727050537381_117.143.60.138_64091
09:01:20.623 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:01:20.623 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:22.368 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:22.677 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:23.226 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Success to connect a server [110.42.213.184:8848], connectionId = 1727053281398_117.143.60.138_58172
09:01:23.226 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050537381_117.143.60.138_64091
09:01:23.226 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050537381_117.143.60.138_64091
09:01:23.226 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify disconnected event to listeners
09:01:23.227 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify connected event to listeners.
09:01:23.227 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:01:25.691 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:26.095 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:26.126 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
09:01:29.107 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:01:29.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:01:30.477 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053290263_117.143.60.138_58205
09:01:30.477 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053270513_117.143.60.138_58112
09:01:30.477 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053270513_117.143.60.138_58112
09:01:30.477 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify disconnected event to listeners
09:01:30.477 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] DisConnected,clear listen context...
09:01:30.477 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify connected event to listeners.
09:01:30.477 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Connected,notify listen context...
09:02:15.146 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Server healthy check fail, currentConnection = 1727053290263_117.143.60.138_58205
09:02:15.146 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:02:15.146 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:18.260 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:21.272 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:02:21.475 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:24.489 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:02:24.801 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:25.759 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053345448_117.143.60.138_58461
09:02:25.759 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053290263_117.143.60.138_58205
09:02:25.759 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053290263_117.143.60.138_58205
09:02:25.759 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify disconnected event to listeners
09:02:25.759 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] DisConnected,clear listen context...
09:02:25.759 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify connected event to listeners.
09:02:25.759 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Connected,notify listen context...
09:02:34.412 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server check success, currentServer is 110.42.213.184:8848
09:02:51.937 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server healthy check fail, currentConnection = 1727053281398_117.143.60.138_58172
09:02:51.937 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:02:51.937 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:52.691 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Success to connect a server [110.42.213.184:8848], connectionId = 1727053372715_117.143.60.138_58558
09:02:52.691 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053281398_117.143.60.138_58172
09:02:52.691 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053281398_117.143.60.138_58172
09:02:52.691 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify disconnected event to listeners
09:02:52.692 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify connected event to listeners.
09:02:52.692 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:02:53.528 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
09:03:27.934 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Server healthy check fail, currentConnection = 1727053345448_117.143.60.138_58461
09:03:27.934 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:03:27.934 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:03:28.904 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053408640_117.143.60.138_51315
09:03:28.904 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053345448_117.143.60.138_58461
09:03:28.904 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053345448_117.143.60.138_58461
09:03:28.904 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify disconnected event to listeners
09:03:28.905 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] DisConnected,clear listen context...
09:03:28.905 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify connected event to listeners.
09:03:28.905 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Connected,notify listen context...
09:04:33.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server healthy check fail, currentConnection = 1727053372715_117.143.60.138_58558
09:04:33.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:04:33.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:04:36.641 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:04:37.854 [nacos-grpc-client-executor-110.42.213.184-599] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Receive server push request, request = ClientDetectionRequest, requestId = 3581
09:04:37.854 [nacos-grpc-client-executor-110.42.213.184-599] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Ack server push request, request = ClientDetectionRequest, requestId = 3581
09:04:38.305 [nacos-grpc-client-executor-110.42.213.184-600] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1727053372715_117.143.60.138_58558]Ignore complete event,isRunning:false,isAbandon=false
09:04:39.657 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:04:39.872 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:04:40.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Success to connect a server [110.42.213.184:8848], connectionId = 1727053480522_117.143.60.138_51512
09:04:40.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053372715_117.143.60.138_58558
09:04:40.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053372715_117.143.60.138_58558
09:04:40.892 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify disconnected event to listeners
09:04:40.892 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify connected event to listeners.
09:04:40.892 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:04:41.426 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:04:41.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:04:42.329 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
09:04:44.443 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:04:47.457 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:04:47.458 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:04:49.221 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Success to connect a server [110.42.213.184:8848], connectionId = 1727053489394_117.143.60.138_51569
09:04:49.221 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053480522_117.143.60.138_51512
09:04:49.221 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053480522_117.143.60.138_51512
09:04:49.221 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify disconnected event to listeners
09:04:49.222 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify connected event to listeners.
09:04:49.222 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:04:50.218 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
09:05:12.871 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server check success, currentServer is 110.42.213.184:8848
09:05:34.753 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Server healthy check fail, currentConnection = 1727053408640_117.143.60.138_51315
09:05:34.753 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:05:34.753 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:36.843 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053535444_117.143.60.138_49284
09:05:36.843 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053408640_117.143.60.138_51315
09:05:36.843 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053408640_117.143.60.138_51315
09:05:36.843 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify disconnected event to listeners
09:05:36.844 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] DisConnected,clear listen context...
09:05:36.844 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify connected event to listeners.
09:05:36.844 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Connected,notify listen context...
09:05:49.648 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Server check success, currentServer is 110.42.213.184:8848
09:05:51.368 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Server check success, currentServer is 110.42.213.184:8848
09:07:44.011 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server healthy check fail, currentConnection = 1727053489394_117.143.60.138_51569
09:07:44.011 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:07:44.011 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:07:47.139 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:07:49.664 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Success to connect a server [110.42.213.184:8848], connectionId = 1727053668847_117.143.60.138_64282
09:07:49.664 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053489394_117.143.60.138_51569
09:07:49.664 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053489394_117.143.60.138_51569
09:07:49.664 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify disconnected event to listeners
09:07:49.665 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify connected event to listeners.
09:07:49.665 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:07:50.096 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server check success, currentServer is 110.42.213.184:8848
09:07:51.249 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
09:07:56.096 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server check success, currentServer is 110.42.213.184:8848
09:07:57.264 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system
09:10:11.344 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
09:10:11.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-system with instance: Instance{instanceId='null', ip='10.113.37.107', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
09:10:11.471 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
09:10:11.472 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->23e366a8-1635-4ce8-8a74-504fb5cdff37
09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1e6410b[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1086]
09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@663c7423[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053668847_117.143.60.138_64282
09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@768aeb91[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 704]
09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->23e366a8-1635-4ce8-8a74-504fb5cdff37
09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
09:10:11.486 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
09:10:11.488 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
09:10:11.492 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
09:10:11.492 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
09:10:11.492 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
09:11:05.868 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
09:11:08.781 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9707"]
09:11:08.783 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:11:08.783 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
09:11:08.869 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:11:26.112 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
09:11:26.114 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
09:11:26.114 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:11:32.348 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:11:35.487 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9707"]
09:11:35.607 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
09:11:35.607 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
09:11:35.607 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
09:11:35.612 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
09:11:35.617 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:11:35.617 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:11:35.813 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 721d7967-ec5a-4219-ac11-78782e7a3940
09:11:35.815 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->721d7967-ec5a-4219-ac11-78782e7a3940
09:11:35.815 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:11:35.815 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:11:35.816 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:11:35.817 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
09:11:35.817 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:11:36.248 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727053896451_117.143.60.138_55969
09:11:36.248 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:11:36.248 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Notify connected event to listeners.
09:11:36.248 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x000001b1bd441470
09:11:36.248 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:11:36.249 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-system with instance Instance{instanceId='null', ip='10.113.37.107', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
09:11:36.351 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 10.113.37.107:9707 register finished
09:11:36.484 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 37.333 seconds (process running for 37.897)
09:11:36.493 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
09:11:36.494 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
09:11:36.495 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system+DEFAULT_GROUP
09:11:36.502 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1
09:11:36.503 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP
09:11:36.504 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP
09:11:36.504 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1
09:11:36.504 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP
09:11:36.504 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP
09:11:36.504 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1
09:11:36.504 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP
09:12:04.292 [http-nio-9707-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:56:12.197 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Server check success, currentServer is 110.42.213.184:8848
09:57:25.924 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Server healthy check fail, currentConnection = 1727053863838_117.143.60.138_55892
09:57:25.924 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:57:25.925 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:57:26.584 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056646782_117.143.60.138_55371
09:57:26.584 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053863838_117.143.60.138_55892
09:57:26.584 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053863838_117.143.60.138_55892
09:57:26.590 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify disconnected event to listeners
09:57:26.590 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] DisConnected,clear listen context...
09:57:26.590 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify connected event to listeners.
09:57:26.590 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Connected,notify listen context...
09:59:18.307 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Server healthy check fail, currentConnection = 1727056646782_117.143.60.138_55371
09:59:18.307 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:59:18.308 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:59:21.422 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:59:24.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
09:59:24.630 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:59:27.565 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056765429_117.143.60.138_55557
09:59:27.565 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056646782_117.143.60.138_55371
09:59:27.565 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056646782_117.143.60.138_55371
09:59:27.566 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify disconnected event to listeners
09:59:27.566 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] DisConnected,clear listen context...
09:59:27.566 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify connected event to listeners.
09:59:27.566 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Connected,notify listen context...
09:59:29.334 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Server check success, currentServer is 110.42.213.184:8848
10:01:40.312 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Server check success, currentServer is 110.42.213.184:8848
10:02:00.144 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Server check success, currentServer is 110.42.213.184:8848
10:02:24.975 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
10:02:24.975 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
10:02:25.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056945861_117.143.60.138_56043
10:02:25.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056765429_117.143.60.138_55557
10:02:25.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056765429_117.143.60.138_55557
10:02:25.892 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify disconnected event to listeners
10:02:25.892 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] DisConnected,clear listen context...
10:02:25.893 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify connected event to listeners.
10:02:25.893 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Connected,notify listen context...
10:04:21.486 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Server healthy check fail, currentConnection = 1727056945861_117.143.60.138_56043
10:04:21.486 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
10:04:21.487 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
10:04:24.608 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
10:04:25.168 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727057065384_117.143.60.138_56325
10:04:25.168 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056945861_117.143.60.138_56043
10:04:25.168 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056945861_117.143.60.138_56043
10:04:25.168 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify disconnected event to listeners
10:04:25.168 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] DisConnected,clear listen context...
10:04:25.168 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify connected event to listeners.
10:04:25.168 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Connected,notify listen context...
10:09:03.568 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
10:09:03.612 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379
10:09:03.723 [lettuce-nioEventLoop-4-3] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/<unresolved>:6379
10:37:30.264 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
10:37:30.265 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-system with instance: Instance{instanceId='null', ip='10.113.37.107', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
10:37:30.342 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
10:37:30.344 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
10:37:30.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
10:37:30.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
10:37:30.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
10:37:30.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
10:37:30.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->721d7967-ec5a-4219-ac11-78782e7a3940
10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1f2b4f55[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1713]
10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
10:37:30.347 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2ef423b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
10:37:30.347 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053896451_117.143.60.138_55969
10:37:30.347 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@72fd0743[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 1017]
10:37:30.347 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->721d7967-ec5a-4219-ac11-78782e7a3940
10:37:30.348 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
10:37:30.348 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
10:37:30.348 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
10:37:30.364 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
10:37:30.370 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
10:37:30.376 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
10:37:30.378 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
10:37:30.378 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
09:05:55.072 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
09:05:58.142 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9707"]
09:05:58.144 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:05:58.145 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
09:05:58.226 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:07:10.581 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
09:07:10.583 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
09:07:10.583 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:07:23.807 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:07:26.547 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9707"]
09:07:26.650 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
09:07:26.651 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
09:07:26.651 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
09:07:26.656 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
09:07:26.659 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:07:26.659 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:07:27.684 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of dee413cc-7529-4442-bec6-c0af0fb2cdd1
09:07:27.686 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->dee413cc-7529-4442-bec6-c0af0fb2cdd1
09:07:27.686 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dee413cc-7529-4442-bec6-c0af0fb2cdd1] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:07:27.686 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dee413cc-7529-4442-bec6-c0af0fb2cdd1] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:07:27.686 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dee413cc-7529-4442-bec6-c0af0fb2cdd1] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:07:27.687 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dee413cc-7529-4442-bec6-c0af0fb2cdd1] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
09:07:27.687 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:07:28.304 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dee413cc-7529-4442-bec6-c0af0fb2cdd1] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727140046814_117.143.60.138_65501
09:07:28.304 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dee413cc-7529-4442-bec6-c0af0fb2cdd1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:07:28.304 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dee413cc-7529-4442-bec6-c0af0fb2cdd1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x000002c6b9432be0
09:07:28.304 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dee413cc-7529-4442-bec6-c0af0fb2cdd1] Notify connected event to listeners.
09:07:28.304 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:07:28.305 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-system with instance Instance{instanceId='null', ip='10.113.37.104', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
09:07:29.115 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dee413cc-7529-4442-bec6-c0af0fb2cdd1] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:07:29.115 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:07:29.567 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Stopping ProtocolHandler ["http-nio-9707"]
09:07:29.693 [main] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
09:07:29.693 [main] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
09:07:29.693 [main] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
09:07:29.693 [main] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
09:07:29.693 [main] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
09:07:29.693 [main] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
09:07:29.694 [main] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
09:07:29.694 [main] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
09:07:29.694 [main] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
09:07:29.694 [main] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
09:07:29.694 [main] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
09:07:29.694 [main] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->dee413cc-7529-4442-bec6-c0af0fb2cdd1
09:07:29.694 [main] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@60d1b2a7[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 0]
09:07:29.694 [main] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
09:07:29.694 [main] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@42a3e521[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
09:07:29.694 [main] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727140046814_117.143.60.138_65501
09:07:29.695 [main] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@27868127[Running, pool size = 9, active threads = 0, queued tasks = 0, completed tasks = 9]
09:07:29.695 [main] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->dee413cc-7529-4442-bec6-c0af0fb2cdd1
09:07:29.695 [main] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
09:07:29.696 [main] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
09:07:29.696 [main] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
09:07:29.698 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727140046814_117.143.60.138_65501
09:07:29.705 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
09:07:29.707 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
09:07:29.713 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
09:07:29.713 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
09:07:29.713 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
09:07:29.714 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
09:07:29.812 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dee413cc-7529-4442-bec6-c0af0fb2cdd1] Client is shutdown, stop reconnect to server
09:07:30.665 [com.alibaba.nacos.client.Worker.8] INFO c.a.n.c.a.r.i.CredentialWatcher - [loadCredentialFromEnv,189] - null No credential found
09:10:42.250 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
09:10:44.915 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9707"]
09:10:44.919 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:10:44.920 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
09:10:45.001 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:10:55.624 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
09:10:55.626 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
09:10:55.626 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:11:00.459 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:11:03.284 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9707"]
09:11:03.406 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
09:11:03.407 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
09:11:03.407 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
09:11:03.411 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
09:11:03.416 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:11:03.417 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:11:03.581 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 32b9d389-8aa3-4ff5-8632-ec59d77e2373
09:11:03.584 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->32b9d389-8aa3-4ff5-8632-ec59d77e2373
09:11:03.585 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32b9d389-8aa3-4ff5-8632-ec59d77e2373] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:11:03.585 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32b9d389-8aa3-4ff5-8632-ec59d77e2373] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:11:03.587 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32b9d389-8aa3-4ff5-8632-ec59d77e2373] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:11:03.587 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32b9d389-8aa3-4ff5-8632-ec59d77e2373] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
09:11:03.588 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:11:04.206 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32b9d389-8aa3-4ff5-8632-ec59d77e2373] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727140262599_117.143.60.138_52234
09:11:04.207 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32b9d389-8aa3-4ff5-8632-ec59d77e2373] Notify connected event to listeners.
09:11:04.207 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32b9d389-8aa3-4ff5-8632-ec59d77e2373] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:11:04.207 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:11:04.207 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32b9d389-8aa3-4ff5-8632-ec59d77e2373] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x00000190c7432588
09:11:04.208 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-system with instance Instance{instanceId='null', ip='10.113.37.104', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
09:11:04.259 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 10.113.37.104:9707 register finished
09:11:04.369 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 27.089 seconds (process running for 27.748)
09:11:04.376 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
09:11:04.376 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
09:11:04.376 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system+DEFAULT_GROUP
09:11:04.381 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1
09:11:04.382 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP
09:11:04.382 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP
09:11:04.383 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1
09:11:04.383 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP
09:11:04.383 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP
09:11:04.383 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1
09:11:04.383 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP
09:11:09.136 [http-nio-9707-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,17 @@
17:22:15.739 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNjc0NjM1MH0.x7LYX36P8si_lZFdVZ9bvua8BclPu90Mz18d-xqYi_g, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0788d40714eda2fe77e3b805044b40bb, Client-RequestTS=1726737732734, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 916600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@76ff63e7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31b01b6f, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6950f22e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1e9aaa38}}}]]
17:22:15.748 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error
com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 916600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@76ff63e7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31b01b6f, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6950f22e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1e9aaa38}}}]]
at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82)
at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646)
at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221)
at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202)
at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 916600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@76ff63e7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31b01b6f, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6950f22e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1e9aaa38}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79)
... 9 common frames omitted

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,535 @@
14:45:51.869 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
14:45:54.580 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"]
14:45:54.583 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
14:45:54.583 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
14:45:54.664 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
14:45:55.266 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
14:45:58.006 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"]
14:45:58.300 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
14:45:58.301 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
14:45:58.302 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
14:45:58.310 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
14:45:58.316 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
14:45:58.316 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
14:45:58.482 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f953b79b-1508-49c2-89f9-529d8d530cfb
14:45:58.483 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->f953b79b-1508-49c2-89f9-529d8d530cfb
14:45:58.484 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
14:45:58.484 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
14:45:58.485 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
14:45:58.486 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
14:45:58.486 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:45:58.660 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1726728359028_117.143.60.138_63153
14:45:58.660 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:45:58.660 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Notify connected event to listeners.
14:45:58.661 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x000001d25f3e18a8
14:45:58.661 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
14:45:58.662 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-monitor with instance Instance{instanceId='null', ip='10.113.37.107', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
14:45:58.684 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 10.113.37.107:9101 register finished
14:45:58.715 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters:
14:45:58.716 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster:
14:45:58.751 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
14:45:58.761 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
14:45:58.965 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters:
14:45:58.965 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster:
14:45:58.981 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
14:45:58.982 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
14:45:58.990 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters:
14:45:58.990 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster:
14:45:59.013 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"ip":"10.113.37.107","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
14:45:59.014 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"ip":"10.113.37.107","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
14:45:59.023 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters:
14:45:59.023 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster:
14:45:59.040 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
14:45:59.041 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
14:45:59.050 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters:
14:45:59.050 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster:
14:45:59.069 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
14:45:59.074 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
14:45:59.091 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler.
14:45:59.125 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 10.721 seconds (process running for 11.285)
14:45:59.139 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
14:45:59.140 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
14:45:59.141 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-monitor+DEFAULT_GROUP
14:45:59.143 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1
14:45:59.143 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP
14:45:59.144 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP
14:45:59.144 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1
14:45:59.144 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP
14:45:59.146 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP
14:45:59.146 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1
14:45:59.146 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP
14:45:59.204 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
14:45:59.353 [nacos-grpc-client-executor-110.42.213.184-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Receive server push request, request = NotifySubscriberRequest, requestId = 2917
14:45:59.354 [nacos-grpc-client-executor-110.42.213.184-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Ack server push request, request = NotifySubscriberRequest, requestId = 2917
14:45:59.359 [nacos-grpc-client-executor-110.42.213.184-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Receive server push request, request = NotifySubscriberRequest, requestId = 2918
14:45:59.360 [nacos-grpc-client-executor-110.42.213.184-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Ack server push request, request = NotifySubscriberRequest, requestId = 2918
14:45:59.547 [nacos-grpc-client-executor-110.42.213.184-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Receive server push request, request = NotifySubscriberRequest, requestId = 2919
14:45:59.547 [nacos-grpc-client-executor-110.42.213.184-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Ack server push request, request = NotifySubscriberRequest, requestId = 2919
14:45:59.551 [nacos-grpc-client-executor-110.42.213.184-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Receive server push request, request = NotifySubscriberRequest, requestId = 2920
14:45:59.552 [nacos-grpc-client-executor-110.42.213.184-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Ack server push request, request = NotifySubscriberRequest, requestId = 2920
14:45:59.632 [nacos-grpc-client-executor-110.42.213.184-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Receive server push request, request = NotifySubscriberRequest, requestId = 2921
14:45:59.633 [nacos-grpc-client-executor-110.42.213.184-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Ack server push request, request = NotifySubscriberRequest, requestId = 2921
14:46:29.169 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
14:46:29.171 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
14:46:29.189 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
14:46:29.189 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
14:46:29.777 [nacos-grpc-client-executor-110.42.213.184-36] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Receive server push request, request = NotifySubscriberRequest, requestId = 2925
14:46:29.777 [nacos-grpc-client-executor-110.42.213.184-36] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Ack server push request, request = NotifySubscriberRequest, requestId = 2925
14:49:42.767 [nacos-grpc-client-executor-110.42.213.184-83] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Receive server push request, request = NotifySubscriberRequest, requestId = 2928
14:49:42.768 [nacos-grpc-client-executor-110.42.213.184-83] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
14:49:42.768 [nacos-grpc-client-executor-110.42.213.184-83] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> []
14:49:42.769 [nacos-grpc-client-executor-110.42.213.184-83] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Ack server push request, request = NotifySubscriberRequest, requestId = 2928
14:49:48.614 [reactor-http-nio-15] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=6ddfb638c3d6, version=2, registration=Registration(name=cloud-system, managementUrl=http://10.113.37.107:9701/actuator, healthUrl=http://10.113.37.107:9701/actuator/health, serviceUrl=http://10.113.37.107:9701, source=discovery), registered=true, statusInfo=StatusInfo(status=DOWN, details={}), statusTimestamp=2024-09-19T06:46:29.656848500Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:9701/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:9701/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:9701/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:9701/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:9701/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:9701/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:9701/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:9701/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:9701/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:9701/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:9701/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:9701/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:9701/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:9701/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:9701/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:9701/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:9701/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:9701/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:9701/actuator/info)}), buildVersion=null, tags=Tags(values={}))
org.springframework.web.reactive.function.client.WebClientRequestException: Connection refused: no further information: /10.113.37.107:9701
at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136)
Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException:
Error has been observed at the following site(s):
*__checkpoint ⇢ Request to GET health [DefaultWebClient]
Original Stack Trace:
at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136)
at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55)
at reactor.core.publisher.Mono.subscribe(Mono.java:4568)
at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103)
at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222)
at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222)
at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222)
at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93)
at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205)
at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124)
at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229)
at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279)
at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121)
at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327)
at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212)
at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107)
at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476)
at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620)
at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874)
at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136)
at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337)
at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136)
at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743)
at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196)
at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205)
at reactor.netty.http.client.HttpClientConnect$MonoHttpConnect$ClientTransportSubscriber.onError(HttpClientConnect.java:311)
at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205)
at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onError(DefaultPooledConnectionProvider.java:172)
at reactor.netty.internal.shaded.reactor.pool.AbstractPool$Borrower.fail(AbstractPool.java:488)
at reactor.netty.internal.shaded.reactor.pool.SimpleDequePool.lambda$drainLoop$9(SimpleDequePool.java:436)
at reactor.core.publisher.FluxDoOnEach$DoOnEachSubscriber.onError(FluxDoOnEach.java:186)
at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205)
at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer.onError(DefaultPooledConnectionProvider.java:583)
at reactor.core.publisher.MonoFlatMap$FlatMapMain.secondError(MonoFlatMap.java:241)
at reactor.core.publisher.MonoFlatMap$FlatMapInner.onError(MonoFlatMap.java:315)
at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:106)
at reactor.core.publisher.Operators.error(Operators.java:198)
at reactor.core.publisher.MonoError.subscribe(MonoError.java:53)
at reactor.core.publisher.Mono.subscribe(Mono.java:4568)
at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103)
at reactor.netty.transport.TransportConnector$MonoChannelPromise.tryFailure(TransportConnector.java:576)
at reactor.netty.transport.TransportConnector$MonoChannelPromise.setFailure(TransportConnector.java:522)
at reactor.netty.transport.TransportConnector.lambda$doConnect$7(TransportConnector.java:261)
at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590)
at io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:583)
at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:559)
at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492)
at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636)
at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629)
at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118)
at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.fulfillConnectPromise(AbstractNioChannel.java:326)
at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:342)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /10.113.37.107:9701
Caused by: java.net.ConnectException: Connection refused: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:336)
at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:339)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
14:49:59.578 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '6ddfb638c3d6' missing in DiscoveryClient services and will be removed.
14:50:11.876 [nacos-grpc-client-executor-110.42.213.184-90] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Receive server push request, request = NotifySubscriberRequest, requestId = 2930
14:50:11.876 [nacos-grpc-client-executor-110.42.213.184-90] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
14:50:11.877 [nacos-grpc-client-executor-110.42.213.184-90] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
14:50:11.878 [nacos-grpc-client-executor-110.42.213.184-90] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Ack server push request, request = NotifySubscriberRequest, requestId = 2930
17:22:17.223 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1e32b840-8e5b-4daf-8f7b-c7686a3dfa62_config-0] Server check success, currentServer is 110.42.213.184:8848
19:06:32.730 [nacos-grpc-client-executor-110.42.213.184-3249] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Receive server push request, request = NotifySubscriberRequest, requestId = 2932
19:06:32.733 [nacos-grpc-client-executor-110.42.213.184-3249] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
19:06:32.733 [nacos-grpc-client-executor-110.42.213.184-3249] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> []
19:06:32.734 [nacos-grpc-client-executor-110.42.213.184-3249] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Ack server push request, request = NotifySubscriberRequest, requestId = 2932
19:06:35.937 [nacos-grpc-client-executor-110.42.213.184-3250] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Receive server push request, request = NotifySubscriberRequest, requestId = 2933
19:06:35.938 [nacos-grpc-client-executor-110.42.213.184-3250] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
19:06:35.940 [nacos-grpc-client-executor-110.42.213.184-3250] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> []
19:06:35.941 [nacos-grpc-client-executor-110.42.213.184-3250] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Ack server push request, request = NotifySubscriberRequest, requestId = 2933
19:06:36.824 [nacos-grpc-client-executor-110.42.213.184-3252] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Receive server push request, request = NotifySubscriberRequest, requestId = 2934
19:06:36.825 [nacos-grpc-client-executor-110.42.213.184-3252] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
19:06:36.825 [nacos-grpc-client-executor-110.42.213.184-3252] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> []
19:06:36.826 [nacos-grpc-client-executor-110.42.213.184-3252] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Ack server push request, request = NotifySubscriberRequest, requestId = 2934
19:06:38.595 [reactor-http-nio-12] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=6fab02a62a90, version=2, registration=Registration(name=cloud-auth, managementUrl=http://10.113.37.107:9500/actuator, healthUrl=http://10.113.37.107:9500/actuator/health, serviceUrl=http://10.113.37.107:9500, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-19T06:45:59.467584400Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:9500/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:9500/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:9500/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:9500/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:9500/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:9500/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:9500/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:9500/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:9500/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:9500/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:9500/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:9500/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:9500/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:9500/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:9500/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:9500/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:9500/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:9500/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:9500/actuator/info)}), buildVersion=null, tags=Tags(values={}))
org.springframework.web.reactive.function.client.WebClientRequestException: Connection refused: no further information: /10.113.37.107:9500
at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136)
Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException:
Error has been observed at the following site(s):
*__checkpoint ⇢ Request to GET health [DefaultWebClient]
Original Stack Trace:
at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136)
at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55)
at reactor.core.publisher.Mono.subscribe(Mono.java:4568)
at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103)
at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222)
at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222)
at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222)
at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93)
at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205)
at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124)
at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229)
at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279)
at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121)
at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327)
at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212)
at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107)
at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476)
at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620)
at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874)
at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136)
at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337)
at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136)
at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743)
at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196)
at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205)
at reactor.netty.http.client.HttpClientConnect$MonoHttpConnect$ClientTransportSubscriber.onError(HttpClientConnect.java:311)
at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205)
at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onError(DefaultPooledConnectionProvider.java:172)
at reactor.netty.internal.shaded.reactor.pool.AbstractPool$Borrower.fail(AbstractPool.java:488)
at reactor.netty.internal.shaded.reactor.pool.SimpleDequePool.lambda$drainLoop$9(SimpleDequePool.java:436)
at reactor.core.publisher.FluxDoOnEach$DoOnEachSubscriber.onError(FluxDoOnEach.java:186)
at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205)
at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer.onError(DefaultPooledConnectionProvider.java:583)
at reactor.core.publisher.MonoFlatMap$FlatMapMain.secondError(MonoFlatMap.java:241)
at reactor.core.publisher.MonoFlatMap$FlatMapInner.onError(MonoFlatMap.java:315)
at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:106)
at reactor.core.publisher.Operators.error(Operators.java:198)
at reactor.core.publisher.MonoError.subscribe(MonoError.java:53)
at reactor.core.publisher.Mono.subscribe(Mono.java:4568)
at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103)
at reactor.netty.transport.TransportConnector$MonoChannelPromise.tryFailure(TransportConnector.java:576)
at reactor.netty.transport.TransportConnector$MonoChannelPromise.setFailure(TransportConnector.java:522)
at reactor.netty.transport.TransportConnector.lambda$doConnect$7(TransportConnector.java:261)
at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590)
at io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:583)
at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:559)
at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492)
at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636)
at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629)
at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118)
at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.fulfillConnectPromise(AbstractNioChannel.java:326)
at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:342)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /10.113.37.107:9500
Caused by: java.net.ConnectException: Connection refused: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:336)
at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:339)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:06:38.608 [reactor-http-nio-11] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=e715406138b5, version=2, registration=Registration(name=cloud-file, managementUrl=http://10.113.37.107:9300/actuator, healthUrl=http://10.113.37.107:9300/actuator/health, serviceUrl=http://10.113.37.107:9300, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-19T06:45:59.466584500Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:9300/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:9300/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:9300/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:9300/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:9300/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:9300/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:9300/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:9300/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:9300/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:9300/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:9300/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:9300/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:9300/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:9300/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:9300/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:9300/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:9300/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:9300/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:9300/actuator/info)}), buildVersion=null, tags=Tags(values={}))
org.springframework.web.reactive.function.client.WebClientRequestException: Connection refused: no further information: /10.113.37.107:9300
at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136)
Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException:
Error has been observed at the following site(s):
*__checkpoint ⇢ Request to GET health [DefaultWebClient]
Original Stack Trace:
at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136)
at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55)
at reactor.core.publisher.Mono.subscribe(Mono.java:4568)
at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103)
at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222)
at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222)
at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222)
at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93)
at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205)
at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124)
at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229)
at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279)
at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121)
at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327)
at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212)
at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107)
at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476)
at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620)
at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874)
at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136)
at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337)
at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136)
at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743)
at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196)
at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205)
at reactor.netty.http.client.HttpClientConnect$MonoHttpConnect$ClientTransportSubscriber.onError(HttpClientConnect.java:311)
at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205)
at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onError(DefaultPooledConnectionProvider.java:172)
at reactor.netty.internal.shaded.reactor.pool.AbstractPool$Borrower.fail(AbstractPool.java:488)
at reactor.netty.internal.shaded.reactor.pool.SimpleDequePool.lambda$drainLoop$9(SimpleDequePool.java:436)
at reactor.core.publisher.FluxDoOnEach$DoOnEachSubscriber.onError(FluxDoOnEach.java:186)
at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205)
at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer.onError(DefaultPooledConnectionProvider.java:583)
at reactor.core.publisher.MonoFlatMap$FlatMapMain.secondError(MonoFlatMap.java:241)
at reactor.core.publisher.MonoFlatMap$FlatMapInner.onError(MonoFlatMap.java:315)
at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:106)
at reactor.core.publisher.Operators.error(Operators.java:198)
at reactor.core.publisher.MonoError.subscribe(MonoError.java:53)
at reactor.core.publisher.Mono.subscribe(Mono.java:4568)
at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103)
at reactor.netty.transport.TransportConnector$MonoChannelPromise.tryFailure(TransportConnector.java:576)
at reactor.netty.transport.TransportConnector$MonoChannelPromise.setFailure(TransportConnector.java:522)
at reactor.netty.transport.TransportConnector.lambda$doConnect$7(TransportConnector.java:261)
at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590)
at io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:583)
at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:559)
at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492)
at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636)
at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629)
at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118)
at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.fulfillConnectPromise(AbstractNioChannel.java:326)
at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:342)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /10.113.37.107:9300
Caused by: java.net.ConnectException: Connection refused: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:336)
at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:339)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:06:38.608 [reactor-http-nio-10] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=be0f7e53e806, version=2, registration=Registration(name=cloud-gateway, managementUrl=http://10.113.37.107:8080/actuator, healthUrl=http://10.113.37.107:8080/actuator/health, serviceUrl=http://10.113.37.107:8080, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-19T06:45:59.466584500Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:8080/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:8080/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:8080/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:8080/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:8080/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:8080/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:8080/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:8080/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:8080/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:8080/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:8080/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:8080/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:8080/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:8080/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:8080/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:8080/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:8080/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:8080/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:8080/actuator/info)}), buildVersion=null, tags=Tags(values={}))
org.springframework.web.reactive.function.client.WebClientRequestException: Connection refused: no further information: /10.113.37.107:8080
at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136)
Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException:
Error has been observed at the following site(s):
*__checkpoint ⇢ Request to GET health [DefaultWebClient]
Original Stack Trace:
at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136)
at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55)
at reactor.core.publisher.Mono.subscribe(Mono.java:4568)
at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103)
at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222)
at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222)
at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222)
at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93)
at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205)
at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124)
at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229)
at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279)
at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121)
at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327)
at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212)
at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107)
at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476)
at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620)
at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874)
at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136)
at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337)
at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136)
at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743)
at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196)
at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205)
at reactor.netty.http.client.HttpClientConnect$MonoHttpConnect$ClientTransportSubscriber.onError(HttpClientConnect.java:311)
at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205)
at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onError(DefaultPooledConnectionProvider.java:172)
at reactor.netty.internal.shaded.reactor.pool.AbstractPool$Borrower.fail(AbstractPool.java:488)
at reactor.netty.internal.shaded.reactor.pool.SimpleDequePool.lambda$drainLoop$9(SimpleDequePool.java:436)
at reactor.core.publisher.FluxDoOnEach$DoOnEachSubscriber.onError(FluxDoOnEach.java:186)
at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205)
at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer.onError(DefaultPooledConnectionProvider.java:583)
at reactor.core.publisher.MonoFlatMap$FlatMapMain.secondError(MonoFlatMap.java:241)
at reactor.core.publisher.MonoFlatMap$FlatMapInner.onError(MonoFlatMap.java:315)
at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:106)
at reactor.core.publisher.Operators.error(Operators.java:198)
at reactor.core.publisher.MonoError.subscribe(MonoError.java:53)
at reactor.core.publisher.Mono.subscribe(Mono.java:4568)
at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103)
at reactor.netty.transport.TransportConnector$MonoChannelPromise.tryFailure(TransportConnector.java:576)
at reactor.netty.transport.TransportConnector$MonoChannelPromise.setFailure(TransportConnector.java:522)
at reactor.netty.transport.TransportConnector.lambda$doConnect$7(TransportConnector.java:261)
at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590)
at io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:583)
at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:559)
at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492)
at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636)
at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629)
at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118)
at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.fulfillConnectPromise(AbstractNioChannel.java:326)
at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:342)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /10.113.37.107:8080
Caused by: java.net.ConnectException: Connection refused: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:336)
at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:339)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776)
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:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
19:06:39.147 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'be0f7e53e806' missing in DiscoveryClient services and will be removed.
19:06:39.148 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e715406138b5' missing in DiscoveryClient services and will be removed.
19:06:39.148 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '6fab02a62a90' missing in DiscoveryClient services and will be removed.
19:06:41.760 [nacos-grpc-client-executor-110.42.213.184-3254] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Receive server push request, request = NotifySubscriberRequest, requestId = 2935
19:06:41.760 [nacos-grpc-client-executor-110.42.213.184-3254] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"ip":"10.113.37.107","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}]
19:06:41.760 [nacos-grpc-client-executor-110.42.213.184-3254] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> []
19:06:41.761 [nacos-grpc-client-executor-110.42.213.184-3254] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f953b79b-1508-49c2-89f9-529d8d530cfb] Ack server push request, request = NotifySubscriberRequest, requestId = 2935
19:06:43.944 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
19:06:43.944 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='10.113.37.107', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
19:06:43.960 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
19:06:43.962 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
19:06:43.962 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
19:06:43.962 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
19:06:43.962 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
19:06:43.962 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
19:06:43.963 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
19:06:43.963 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
19:06:43.963 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
19:06:43.963 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
19:06:43.963 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
19:06:43.963 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
19:06:43.963 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->f953b79b-1508-49c2-89f9-529d8d530cfb
19:06:43.963 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@5f7441c1[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 5201]
19:06:43.964 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
19:06:43.964 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@26b29a4c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
19:06:43.964 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726728359028_117.143.60.138_63153
19:06:43.968 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@43c0f19c[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 3256]
19:06:43.968 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->f953b79b-1508-49c2-89f9-529d8d530cfb
19:06:43.969 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
19:06:43.969 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
19:06:43.969 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
19:27:27.999 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
19:27:30.097 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"]
19:27:30.100 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
19:27:30.100 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
19:27:30.185 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
19:27:30.775 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
19:27:33.222 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"]
19:27:33.423 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
19:27:33.424 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
19:27:33.424 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
19:27:33.428 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
19:27:33.431 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
19:27:33.432 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
19:27:33.545 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 97545572-d55e-4725-b8d1-c40f2c779a4a
19:27:33.546 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->97545572-d55e-4725-b8d1-c40f2c779a4a
19:27:33.547 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
19:27:33.547 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
19:27:33.547 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
19:27:33.548 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848}
19:27:33.548 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:27:33.726 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1726745254373_117.143.60.138_58002
19:27:33.726 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Notify connected event to listeners.
19:27:33.726 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
19:27:33.726 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
19:27:33.726 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x000001b4353e18a8
19:27:33.728 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-monitor with instance Instance{instanceId='null', ip='10.113.37.107', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
19:27:33.754 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 10.113.37.107:9101 register finished
19:27:33.786 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters:
19:27:33.786 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster:
19:27:33.807 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:27:33.815 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:27:33.964 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters:
19:27:33.964 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster:
19:27:33.987 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:27:33.987 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:27:33.992 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters:
19:27:33.993 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster:
19:27:34.011 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"ip":"10.113.37.107","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:27:34.012 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"ip":"10.113.37.107","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:27:34.017 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters:
19:27:34.018 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster:
19:27:34.033 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:27:34.034 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:27:34.040 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters:
19:27:34.040 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster:
19:27:34.059 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:27:34.062 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:27:34.075 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler.
19:27:34.101 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 9.439 seconds (process running for 10.014)
19:27:34.115 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
19:27:34.117 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
19:27:34.117 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-monitor+DEFAULT_GROUP
19:27:34.119 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1
19:27:34.120 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP
19:27:34.120 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP
19:27:34.121 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1
19:27:34.121 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP
19:27:34.122 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP
19:27:34.123 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1
19:27:34.124 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP
19:27:34.178 [http-nio-9101-exec-2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
19:27:34.346 [nacos-grpc-client-executor-110.42.213.184-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Receive server push request, request = NotifySubscriberRequest, requestId = 2938
19:27:34.349 [nacos-grpc-client-executor-110.42.213.184-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Ack server push request, request = NotifySubscriberRequest, requestId = 2938
19:27:34.357 [nacos-grpc-client-executor-110.42.213.184-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Receive server push request, request = NotifySubscriberRequest, requestId = 2939
19:27:34.359 [nacos-grpc-client-executor-110.42.213.184-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Ack server push request, request = NotifySubscriberRequest, requestId = 2939
19:27:34.516 [nacos-grpc-client-executor-110.42.213.184-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Receive server push request, request = NotifySubscriberRequest, requestId = 2940
19:27:34.518 [nacos-grpc-client-executor-110.42.213.184-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Ack server push request, request = NotifySubscriberRequest, requestId = 2940
19:27:34.522 [nacos-grpc-client-executor-110.42.213.184-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Receive server push request, request = NotifySubscriberRequest, requestId = 2941
19:27:34.523 [nacos-grpc-client-executor-110.42.213.184-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Ack server push request, request = NotifySubscriberRequest, requestId = 2941
19:27:34.639 [nacos-grpc-client-executor-110.42.213.184-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Receive server push request, request = NotifySubscriberRequest, requestId = 2942
19:27:34.640 [nacos-grpc-client-executor-110.42.213.184-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Ack server push request, request = NotifySubscriberRequest, requestId = 2942
19:28:04.137 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
19:28:04.137 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
19:28:04.155 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:28:04.155 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:28:04.672 [nacos-grpc-client-executor-110.42.213.184-40] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Receive server push request, request = NotifySubscriberRequest, requestId = 2946
19:28:04.673 [nacos-grpc-client-executor-110.42.213.184-40] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Ack server push request, request = NotifySubscriberRequest, requestId = 2946

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,237 @@
13:31:53.082 [parallel-6] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=e346b95e8d7a, version=81, registration=Registration(name=cloud-car, managementUrl=http://10.113.37.107:10011/actuator, healthUrl=http://10.113.37.107:10011/actuator/health, serviceUrl=http://10.113.37.107:10011, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-20T13:11:23.529545200Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:10011/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:10011/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:10011/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:10011/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:10011/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:10011/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:10011/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:10011/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:10011/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:10011/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:10011/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:10011/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:10011/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:10011/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:10011/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:10011/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:10011/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:10011/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:10011/actuator/info)}), buildVersion=null, tags=Tags(values={}))
java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured)
at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296)
at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281)
at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420)
at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162)
at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270)
at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285)
at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68)
at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
13:31:53.082 [parallel-14] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=be0f7e53e806, version=6, registration=Registration(name=cloud-gateway, managementUrl=http://10.113.37.107:8080/actuator, healthUrl=http://10.113.37.107:8080/actuator/health, serviceUrl=http://10.113.37.107:8080, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-20T13:53:51.237094300Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:8080/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:8080/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:8080/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:8080/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:8080/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:8080/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:8080/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:8080/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:8080/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:8080/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:8080/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:8080/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:8080/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:8080/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:8080/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:8080/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:8080/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:8080/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:8080/actuator/info)}), buildVersion=null, tags=Tags(values={}))
java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured)
at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296)
at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281)
at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420)
at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162)
at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270)
at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285)
at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68)
at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
13:31:53.082 [parallel-2] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=6ddfb638c3d6, version=6, registration=Registration(name=cloud-system, managementUrl=http://10.113.37.107:9701/actuator, healthUrl=http://10.113.37.107:9701/actuator/health, serviceUrl=http://10.113.37.107:9701, source=discovery), registered=true, statusInfo=StatusInfo(status=DOWN, details={}), statusTimestamp=2024-09-20T13:11:19.515360500Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:9701/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:9701/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:9701/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:9701/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:9701/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:9701/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:9701/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:9701/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:9701/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:9701/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:9701/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:9701/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:9701/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:9701/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:9701/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:9701/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:9701/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:9701/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:9701/actuator/info)}), buildVersion=null, tags=Tags(values={}))
java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured)
at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296)
at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281)
at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420)
at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162)
at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270)
at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285)
at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68)
at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
13:31:53.096 [parallel-10] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=6fab02a62a90, version=6, registration=Registration(name=cloud-auth, managementUrl=http://10.113.37.107:9500/actuator, healthUrl=http://10.113.37.107:9500/actuator/health, serviceUrl=http://10.113.37.107:9500, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-20T13:53:51.249003100Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:9500/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:9500/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:9500/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:9500/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:9500/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:9500/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:9500/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:9500/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:9500/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:9500/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:9500/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:9500/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:9500/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:9500/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:9500/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:9500/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:9500/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:9500/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:9500/actuator/info)}), buildVersion=null, tags=Tags(values={}))
java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured)
at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296)
at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281)
at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420)
at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162)
at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270)
at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285)
at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68)
at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
19:13:02.924 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:13:02.932 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:03.673 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Server healthy check fail, currentConnection = 1726840419664_117.143.60.138_55892
19:13:03.676 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:13:03.678 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:03.988 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:04.268 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:04.715 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:04.721 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:04.998 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:05.000 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:05.248 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:05.303 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:05.359 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:05.413 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:05.621 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:05.642 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:05.821 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:05.830 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:06.055 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:06.065 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:06.337 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:06.349 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:06.569 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:06.583 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:06.951 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:06.960 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:06.985 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'be0f7e53e806' missing in DiscoveryClient services and will be removed.
19:13:06.986 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '4b1c83b94b45' missing in DiscoveryClient services and will be removed.
19:13:06.988 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '6ddfb638c3d6' missing in DiscoveryClient services and will be removed.
19:13:06.989 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '1a62d93d9101' missing in DiscoveryClient services and will be removed.
19:13:06.990 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e346b95e8d7a' missing in DiscoveryClient services and will be removed.
19:13:06.990 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e715406138b5' missing in DiscoveryClient services and will be removed.
19:13:06.990 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '6fab02a62a90' missing in DiscoveryClient services and will be removed.
19:13:07.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:07.203 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:07.674 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:07.682 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:07.916 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:07.921 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:08.488 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:08.492 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:08.736 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:08.739 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:09.394 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:09.398 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:09.653 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:09.657 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:10.405 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:10.408 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:10.665 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:10.667 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:11.512 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:11.517 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:11.777 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:11.783 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:12.732 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:12.742 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:12.992 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:13.000 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:14.043 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:14.308 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:17.051 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:17.321 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:18.452 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:18.728 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:21.465 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:21.740 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:22.969 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:23.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:25.985 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:26.259 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:27.593 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:27.871 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:30.604 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Fail to connect server, after trying 16 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:30.885 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:32.315 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:32.378 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Fail to connect server, after trying 17 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:32.592 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:32.848 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown
19:13:34.184 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:34.446 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Success to connect a server [110.42.213.184:8848], connectionId = 1726917215427_117.143.60.138_61206
19:13:34.446 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726840418040_117.143.60.138_55749
19:13:34.446 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726840418040_117.143.60.138_55749
19:13:34.446 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Notify disconnected event to listeners
19:13:34.447 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Notify connected event to listeners.
19:13:34.447 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
19:13:34.653 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:34.867 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726917215835_117.143.60.138_61232
19:13:34.867 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726840419664_117.143.60.138_55892
19:13:34.867 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726840419664_117.143.60.138_55892
19:13:34.868 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
19:13:34.868 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Notify disconnected event to listeners
19:13:34.869 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] DisConnected,clear listen context...
19:13:34.869 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:13:34.869 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Notify connected event to listeners.
19:13:34.869 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Connected,notify listen context...
19:13:35.098 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1726917216037_117.143.60.138_61240
19:13:35.098 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1726917215835_117.143.60.138_61232
19:13:35.098 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726917215835_117.143.60.138_61232
19:13:35.098 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Notify disconnected event to listeners
19:13:35.098 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] DisConnected,clear listen context...
19:13:35.098 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Notify connected event to listeners.
19:13:35.098 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [1c97aaa4-dd88-4b76-9667-e5d2a4024147_config-0] Connected,notify listen context...
19:13:36.529 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor
19:13:36.616 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gen#
19:13:36.695 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth#
19:13:36.712 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway#
19:13:36.724 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file#
19:13:36.744 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor#
19:13:36.787 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-car#
19:13:36.801 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system#
19:13:37.180 [nacos-grpc-client-executor-110.42.213.184-31082] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Receive server push request, request = NotifySubscriberRequest, requestId = 3314
19:13:37.181 [nacos-grpc-client-executor-110.42.213.184-31082] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Ack server push request, request = NotifySubscriberRequest, requestId = 3314
19:13:37.182 [nacos-grpc-client-executor-110.42.213.184-31083] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Receive server push request, request = NotifySubscriberRequest, requestId = 3316
19:13:37.182 [nacos-grpc-client-executor-110.42.213.184-31083] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"ip":"10.113.37.107","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:13:37.182 [nacos-grpc-client-executor-110.42.213.184-31083] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> []
19:13:37.185 [nacos-grpc-client-executor-110.42.213.184-31083] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Ack server push request, request = NotifySubscriberRequest, requestId = 3316
19:13:37.288 [nacos-grpc-client-executor-110.42.213.184-31084] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Receive server push request, request = NotifySubscriberRequest, requestId = 3317
19:13:37.288 [nacos-grpc-client-executor-110.42.213.184-31084] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Ack server push request, request = NotifySubscriberRequest, requestId = 3317
19:13:37.289 [nacos-grpc-client-executor-110.42.213.184-31085] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Receive server push request, request = NotifySubscriberRequest, requestId = 3318
19:13:37.289 [nacos-grpc-client-executor-110.42.213.184-31085] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Ack server push request, request = NotifySubscriberRequest, requestId = 3318
19:13:37.290 [nacos-grpc-client-executor-110.42.213.184-31086] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Receive server push request, request = NotifySubscriberRequest, requestId = 3319
19:13:37.291 [nacos-grpc-client-executor-110.42.213.184-31086] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Ack server push request, request = NotifySubscriberRequest, requestId = 3319
19:13:37.360 [nacos-grpc-client-executor-110.42.213.184-31087] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Receive server push request, request = NotifySubscriberRequest, requestId = 3320
19:13:37.360 [nacos-grpc-client-executor-110.42.213.184-31087] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Ack server push request, request = NotifySubscriberRequest, requestId = 3320
19:13:37.361 [nacos-grpc-client-executor-110.42.213.184-31088] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Receive server push request, request = NotifySubscriberRequest, requestId = 3321
19:13:37.361 [nacos-grpc-client-executor-110.42.213.184-31088] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Ack server push request, request = NotifySubscriberRequest, requestId = 3321
19:13:38.260 [nacos-grpc-client-executor-110.42.213.184-31089] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Receive server push request, request = NotifySubscriberRequest, requestId = 3322
19:13:38.261 [nacos-grpc-client-executor-110.42.213.184-31089] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"ip":"10.113.37.107","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:13:38.261 [nacos-grpc-client-executor-110.42.213.184-31089] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"ip":"10.113.37.107","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
19:13:38.262 [nacos-grpc-client-executor-110.42.213.184-31089] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97545572-d55e-4725-b8d1-c40f2c779a4a] Ack server push request, request = NotifySubscriberRequest, requestId = 3322
19:13:46.030 [parallel-16] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=6fab02a62a90, version=9, registration=Registration(name=cloud-auth, managementUrl=http://10.113.37.107:9500/actuator, healthUrl=http://10.113.37.107:9500/actuator/health, serviceUrl=http://10.113.37.107:9500, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-21T11:13:37.022425200Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://10.113.37.107:9500/actuator/health)}), buildVersion=null, tags=Tags(values={}))
java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured)
at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296)
at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281)
at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420)
at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162)
at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270)
at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285)
at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68)
at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
19:13:46.030 [parallel-4] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=6ddfb638c3d6, version=9, registration=Registration(name=cloud-system, managementUrl=http://10.113.37.107:9701/actuator, healthUrl=http://10.113.37.107:9701/actuator/health, serviceUrl=http://10.113.37.107:9701, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-21T11:13:37.027117900Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://10.113.37.107:9701/actuator/health)}), buildVersion=null, tags=Tags(values={}))
java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured)
at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296)
at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281)
at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420)
at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162)
at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270)
at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285)
at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68)
at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
19:13:46.045 [parallel-6] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=be0f7e53e806, version=9, registration=Registration(name=cloud-gateway, managementUrl=http://10.113.37.107:8080/actuator, healthUrl=http://10.113.37.107:8080/actuator/health, serviceUrl=http://10.113.37.107:8080, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-21T11:13:37.028558800Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://10.113.37.107:8080/actuator/health)}), buildVersion=null, tags=Tags(values={}))
java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured)
at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296)
at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281)
at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420)
at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162)
at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270)
at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285)
at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68)
at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff