生成引擎类工具类

master
Qin Dong Ming 2024-09-02 21:02:20 +08:00
parent 421cf5ada6
commit 76f8b6dce7
6 changed files with 1710 additions and 30 deletions

View File

@ -7,47 +7,48 @@ import org.springframework.stereotype.Component;
import java.text.SimpleDateFormat;
import java.util.Date;
@Component
public class GenerateConstant {
public static final String DATA_FIELD = "DataEngineValueActuator";
public static final String DATA_RECORD = "DataEngineRecordActuator";
public static final String DATA_SET = "DataEngineSetActuator";
public static final String ACTION_IMPORT = "import com.muyu.rule.engine.action.ActionDiscard;\n";
public static final String SCOPE_IMPORT = "import com.muyu.rule.engine.scope.DataModelEngine";
public static final String PACKAGE_PATH = "package com.muyu.generate;";
public static final String DATA_FIELD = "DataEngineValueActuator";
public static final String DATA_RECORD = "DataEngineRecordActuator";
public static final String DATA_SET = "DataEngineSetActuator";
public static final String ACTION_IMPORT = "import com.muyu.abstracts.DataValue;";
public static final String SCOPE_IMPORT = "import com.muyu.engine.basic.abstracts.";
public static final String PACKAGE_PATH = "package com.muyu.generate;\n";
public static String getClassName(String versionCode){
public static String getClassName(String versionCode) {
String[] splits = versionCode.split("_");
String className="";
String className = "";
for (String split : splits) {
className += split.substring(0,1).toUpperCase()+split.substring(1);
className += split.substring(0, 1).toUpperCase() + split.substring(1);
}
return className;
}
public static String generateConstant(EngineMaintenance ruleData, EngineVersion ruleVersion){
public static String generateConstant(EngineMaintenance ruleData, EngineVersion ruleVersion) {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
String format = simpleDateFormat.format(new Date());
String level = selectType(ruleData.getScope());
return PACKAGE_PATH + "\n" +
return PACKAGE_PATH + "\n" +
ACTION_IMPORT + "\n" +
SCOPE_IMPORT+level+";\n" +
SCOPE_IMPORT + level + ";\n" +
"\n" +
"/**\n" +
" * @Author: "+ SecurityUtils.getUsername() +"\n" +
" * @date: "+format+"\n" +
" * @Description: "+ruleVersion.getName()+"_"+ruleVersion.getVersionCode()+"\n" +
" * @Author: " + SecurityUtils.getUsername() + "\n" +
" * @date: " + format + "\n" +
" * @Description: " + ruleVersion.getName() + "_" + ruleVersion.getVersionCode() + "\n" +
" * @Version: 1.0\n" +
" */\n" +
"public class "+getClassName(ruleVersion.getName()) + " extends "+level+" {\n" +
"public class " + getClassName(ruleVersion.getVersionClass()) + " extends " + level + " {\n" +
" @Override\n" +
" public void run () {\n" +
" }\n" +
"}";
}
public static String selectType(String level){
public static String selectType(String level) {
String type = "";
switch (level) {
case "F":
@ -62,4 +63,5 @@ public class GenerateConstant {
}
return type;
}
}

View File

@ -1,10 +0,0 @@
import com.muyu.ruleEngine.engine.action.ActionDiscard;
import com.muyu.ruleEngine.engine.scope.engineScope;
public class name extends engineScope {
@Override
public void execution() {
}
}

View File

@ -8,7 +8,6 @@ import java.io.IOException;
import java.io.Writer;
import java.util.Arrays;
/**
* @Authorqdm
* @Packagecom.muyu.calss

View File

@ -208,8 +208,9 @@ public class EngIneController extends BaseController {
* @return
*/
@PostMapping("/generate")
public EngineVersion generate(EngineVersion engineVersion){
EngineMaintenance byId = engIneService.selectById(engineVersion.getId());
public EngineVersion generate(@RequestBody EngineVersion engineVersion){
EngineVersion byId1 = engineVersionService.getById(engineVersion.getId());
EngineMaintenance byId = engIneService.selectById(byId1.getId());
byId.setName("generate"+"_"+byId.getEngineCode()+"_"+engineVersion.getVersionCode());
engineVersion.setRuleContent(GenerateConstant.generateConstant(byId,engineVersion));
return engineVersion;

File diff suppressed because it is too large Load Diff

View File

@ -212,3 +212,429 @@ java.net.SocketException: Connection reset
19:06:15.676 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
19:06:15.773 [RMI TCP Connection(3)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
19:06:58.179 [http-nio-9703-exec-3] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 438 ms
20:31:17.187 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
20:31:20.359 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:31:20.359 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
20:31:20.449 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:31:22.698 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
20:31:22.700 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
20:31:22.700 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
20:31:24.211 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:31:32.023 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
20:31:32.024 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
20:31:32.024 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
20:31:32.030 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
20:31:32.035 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
20:31:32.035 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
20:31:32.138 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 5d696e8a-c618-446e-8431-612ecb9e063b
20:31:32.140 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->5d696e8a-c618-446e-8431-612ecb9e063b
20:31:32.140 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
20:31:32.140 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
20:31:32.141 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
20:31:32.141 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
20:31:32.142 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:31:32.193 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725280306725_139.224.212.27_63694
20:31:32.194 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:31:32.194 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Notify connected event to listeners.
20:31:32.194 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000014f515092a0
20:31:32.194 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
20:31:32.195 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-engine with instance Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
20:31:32.210 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
20:31:33.429 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 21.863 seconds (process running for 23.168)
20:31:33.440 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
20:31:33.440 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
20:31:33.441 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine.yml+DEFAULT_GROUP+cloud-2112
20:31:33.453 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine.yml, group=DEFAULT_GROUP, cnt=1
20:31:33.453 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
20:31:33.454 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine+DEFAULT_GROUP+cloud-2112
20:31:33.454 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1
20:31:33.454 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
20:31:33.456 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine-dev.yml+DEFAULT_GROUP+cloud-2112
20:31:33.456 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP, cnt=1
20:31:33.456 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
20:31:33.877 [RMI TCP Connection(7)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
20:31:50.189 [http-nio-9703-exec-5] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 412 ms
20:32:45.574 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
20:32:48.442 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:32:48.442 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
20:32:48.541 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:32:49.933 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
20:32:49.934 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
20:32:49.934 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
20:32:51.387 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:32:58.976 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
20:32:58.976 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
20:32:58.977 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
20:32:58.983 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
20:32:58.987 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
20:32:58.988 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
20:32:59.083 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of fafeb84a-fe1e-488a-9594-265e3635ed5c
20:32:59.086 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->fafeb84a-fe1e-488a-9594-265e3635ed5c
20:32:59.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
20:32:59.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
20:32:59.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
20:32:59.088 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
20:32:59.088 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:32:59.381 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725280393764_139.224.212.27_62404
20:32:59.381 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:32:59.381 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Notify connected event to listeners.
20:32:59.381 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000235814d2150
20:32:59.381 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
20:32:59.383 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-engine with instance Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
20:32:59.402 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
20:33:00.605 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 20.645 seconds (process running for 21.605)
20:33:00.615 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
20:33:00.616 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
20:33:00.617 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine.yml+DEFAULT_GROUP+cloud-2112
20:33:00.628 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine.yml, group=DEFAULT_GROUP, cnt=1
20:33:00.628 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
20:33:00.629 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine+DEFAULT_GROUP+cloud-2112
20:33:00.629 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1
20:33:00.629 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
20:33:00.632 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine-dev.yml+DEFAULT_GROUP+cloud-2112
20:33:00.632 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP, cnt=1
20:33:00.632 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
20:33:01.150 [RMI TCP Connection(6)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
20:33:27.012 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
20:33:27.013 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-engine with instance: Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
20:33:27.028 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
20:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
20:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
20:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
20:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
20:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
20:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
20:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->fafeb84a-fe1e-488a-9594-265e3635ed5c
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@732567b3[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 9]
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
20:33:27.031 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7e8284f4[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
20:33:27.031 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725280393764_139.224.212.27_62404
20:33:27.036 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@20a7885[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 13]
20:33:27.036 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->fafeb84a-fe1e-488a-9594-265e3635ed5c
20:33:27.036 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
20:33:27.036 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
20:33:27.036 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
20:33:27.043 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
20:33:27.046 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
20:33:27.050 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
20:33:27.050 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
20:33:27.050 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
20:35:43.670 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
20:35:46.407 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:35:46.408 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
20:35:46.497 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:35:48.069 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
20:35:48.070 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
20:35:48.070 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
20:35:49.413 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:35:56.907 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
20:35:56.907 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
20:35:56.907 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
20:35:56.913 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
20:35:56.920 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
20:35:56.920 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
20:35:57.017 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f85f7d19-4f5b-41a8-bd27-b7ea6712eb24
20:35:57.019 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->f85f7d19-4f5b-41a8-bd27-b7ea6712eb24
20:35:57.021 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
20:35:57.021 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
20:35:57.021 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
20:35:57.022 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
20:35:57.022 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:35:57.068 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725280571602_139.224.212.27_63232
20:35:57.068 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:35:57.068 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Notify connected event to listeners.
20:35:57.068 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001cc874d12a0
20:35:57.068 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
20:35:57.072 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-engine with instance Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
20:35:57.087 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
20:35:58.293 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 20.029 seconds (process running for 21.04)
20:35:58.304 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
20:35:58.305 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
20:35:58.305 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine.yml+DEFAULT_GROUP+cloud-2112
20:35:58.317 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine.yml, group=DEFAULT_GROUP, cnt=1
20:35:58.317 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
20:35:58.318 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine+DEFAULT_GROUP+cloud-2112
20:35:58.318 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1
20:35:58.318 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
20:35:58.320 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine-dev.yml+DEFAULT_GROUP+cloud-2112
20:35:58.321 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP, cnt=1
20:35:58.321 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
20:35:58.601 [RMI TCP Connection(4)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
20:39:48.241 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
20:39:51.131 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:39:51.131 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
20:39:51.244 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:39:57.408 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
20:39:57.409 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
20:39:57.409 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
20:39:58.833 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:40:06.199 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
20:40:06.199 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
20:40:06.200 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
20:40:06.205 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
20:40:06.211 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
20:40:06.211 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
20:40:06.389 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of bb9834b2-198f-4e10-a9c8-c6780ed1f0cd
20:40:06.392 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->bb9834b2-198f-4e10-a9c8-c6780ed1f0cd
20:40:06.392 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
20:40:06.392 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
20:40:06.392 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
20:40:06.393 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
20:40:06.393 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:40:06.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725280820986_139.224.212.27_62849
20:40:06.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:40:06.576 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify connected event to listeners.
20:40:06.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000025f3b4d2150
20:40:06.576 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
20:40:06.578 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-engine with instance Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
20:40:06.599 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
20:40:07.794 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 25.629 seconds (process running for 26.594)
20:40:07.804 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
20:40:07.804 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
20:40:07.805 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine.yml+DEFAULT_GROUP+cloud-2112
20:40:07.816 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine.yml, group=DEFAULT_GROUP, cnt=1
20:40:07.816 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
20:40:07.817 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine+DEFAULT_GROUP+cloud-2112
20:40:07.817 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1
20:40:07.817 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
20:40:07.819 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine-dev.yml+DEFAULT_GROUP+cloud-2112
20:40:07.819 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP, cnt=1
20:40:07.819 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
20:40:08.245 [RMI TCP Connection(10)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
20:48:55.694 [http-nio-9703-exec-3] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 432 ms
20:50:28.368 [nacos-grpc-client-executor-47.116.184.54-127] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 3885
20:50:28.368 [nacos-grpc-client-executor-47.116.184.54-127] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 3885
20:50:28.368 [nacos-grpc-client-executor-47.116.184.54-113] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Receive server push request, request = ClientDetectionRequest, requestId = 3886
20:50:28.368 [nacos-grpc-client-executor-47.116.184.54-113] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Ack server push request, request = ClientDetectionRequest, requestId = 3886
20:50:28.460 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Server healthy check fail, currentConnection = 1725280820986_139.224.212.27_62849
20:50:28.460 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Server healthy check fail, currentConnection = 1725280802025_139.224.212.27_62791
20:50:28.461 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Try to reconnect to a new server, server is not appointed, will choose a random server.
20:50:28.461 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
20:50:28.461 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:50:28.461 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:50:28.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Success to connect a server [47.116.184.54:8848], connectionId = 1725281443045_139.224.212.27_62047
20:50:28.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281443045_139.224.212.27_62046
20:50:28.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725280820986_139.224.212.27_62849
20:50:28.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725280802025_139.224.212.27_62791
20:50:28.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725280820986_139.224.212.27_62849
20:50:28.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725280802025_139.224.212.27_62791
20:50:28.520 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Try to reconnect to a new server, server is not appointed, will choose a random server.
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify disconnected event to listeners
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify disconnected event to listeners
20:50:28.520 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
20:50:28.520 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] DisConnected,clear listen context...
20:50:28.520 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify connected event to listeners.
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Connected,notify listen context...
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify connected event to listeners.
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
20:50:28.619 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281443135_139.224.212.27_62048
20:50:28.619 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281443045_139.224.212.27_62046
20:50:28.619 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281443045_139.224.212.27_62046
20:50:28.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Success to connect a server [47.116.184.54:8848], connectionId = 1725281443135_139.224.212.27_62050
20:50:28.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281443045_139.224.212.27_62047
20:50:28.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281443045_139.224.212.27_62047
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify disconnected event to listeners
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify disconnected event to listeners
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] DisConnected,clear listen context...
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify connected event to listeners.
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify connected event to listeners.
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Connected,notify listen context...
20:50:31.376 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-engine
20:52:13.596 [nacos-grpc-client-executor-47.116.184.54-157] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 3889
20:52:13.595 [nacos-grpc-client-executor-47.116.184.54-141] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Receive server push request, request = ClientDetectionRequest, requestId = 3890
20:52:13.596 [nacos-grpc-client-executor-47.116.184.54-157] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 3889
20:52:13.596 [nacos-grpc-client-executor-47.116.184.54-141] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Ack server push request, request = ClientDetectionRequest, requestId = 3890
20:52:13.678 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Server healthy check fail, currentConnection = 1725281443135_139.224.212.27_62048
20:52:13.678 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
20:52:13.679 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:52:13.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281548259_139.224.212.27_62271
20:52:13.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281443135_139.224.212.27_62048
20:52:13.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281443135_139.224.212.27_62048
20:52:13.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
20:52:13.735 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify disconnected event to listeners
20:52:13.736 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] DisConnected,clear listen context...
20:52:13.736 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:52:13.736 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify connected event to listeners.
20:52:13.736 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Connected,notify listen context...
20:52:13.771 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
20:52:13.771 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-engine with instance: Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
20:52:13.796 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281548316_139.224.212.27_62273
20:52:13.796 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281548259_139.224.212.27_62271
20:52:13.796 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281548259_139.224.212.27_62271
20:52:13.797 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify disconnected event to listeners
20:52:13.797 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] DisConnected,clear listen context...
20:52:13.797 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify connected event to listeners.
20:52:13.797 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Connected,notify listen context...
20:52:14.151 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Server healthy check fail, currentConnection = 1725281443135_139.224.212.27_62050
20:52:14.152 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Try to reconnect to a new server, server is not appointed, will choose a random server.
20:52:14.152 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:52:14.190 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Success to connect a server [47.116.184.54:8848], connectionId = 1725281548733_139.224.212.27_62276
20:52:14.190 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281443135_139.224.212.27_62050
20:52:14.190 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281443135_139.224.212.27_62050
20:52:14.190 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Try to reconnect to a new server, server is not appointed, will choose a random server.
20:52:14.190 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify disconnected event to listeners
20:52:14.191 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:52:14.191 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify connected event to listeners.
20:52:14.191 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
20:52:14.194 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
20:52:14.195 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->bb9834b2-198f-4e10-a9c8-c6780ed1f0cd
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@5a243271[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 203]
20:52:14.197 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
20:52:14.197 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@67a9b155[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
20:52:14.197 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281548733_139.224.212.27_62276
20:52:14.197 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@17659ed2[Running, pool size = 11, active threads = 0, queued tasks = 0, completed tasks = 152]
20:52:14.197 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->bb9834b2-198f-4e10-a9c8-c6780ed1f0cd
20:52:14.197 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
20:52:14.198 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
20:52:14.198 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
20:52:14.200 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281548733_139.224.212.27_62276
20:52:14.203 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
20:52:14.206 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
20:52:14.209 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
20:52:14.210 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
20:52:14.210 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
20:52:24.615 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
20:52:27.357 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:52:27.358 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
20:52:27.446 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:52:29.528 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
20:52:29.529 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
20:52:29.529 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
20:52:30.884 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:52:38.468 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
20:52:38.468 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
20:52:38.468 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
20:52:38.475 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
20:52:38.480 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
20:52:38.480 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
20:52:38.573 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of eaa84ec3-a592-4301-8619-5cb3256d7462
20:52:38.575 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->eaa84ec3-a592-4301-8619-5cb3256d7462
20:52:38.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
20:52:38.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
20:52:38.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
20:52:38.577 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
20:52:38.577 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:52:38.611 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725281573161_139.224.212.27_62353
20:52:38.613 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:52:38.613 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify connected event to listeners.
20:52:38.613 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001681f4e14f8
20:52:38.613 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
20:52:38.615 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-engine with instance Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
20:52:38.628 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
20:52:39.836 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 20.413 seconds (process running for 21.354)
20:52:39.846 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
20:52:39.847 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
20:52:39.847 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine.yml+DEFAULT_GROUP+cloud-2112
20:52:39.858 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine.yml, group=DEFAULT_GROUP, cnt=1
20:52:39.858 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
20:52:39.860 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine+DEFAULT_GROUP+cloud-2112
20:52:39.860 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1
20:52:39.860 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
20:52:39.862 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine-dev.yml+DEFAULT_GROUP+cloud-2112
20:52:39.862 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP, cnt=1
20:52:39.862 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
20:52:40.385 [RMI TCP Connection(3)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
20:53:07.046 [http-nio-9703-exec-3] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 478 ms
20:54:25.329 [nacos-grpc-client-executor-47.116.184.54-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Receive server push request, request = ClientDetectionRequest, requestId = 3893
20:54:25.331 [nacos-grpc-client-executor-47.116.184.54-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Ack server push request, request = ClientDetectionRequest, requestId = 3893
20:54:49.211 [nacos-grpc-client-executor-47.116.184.54-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 3895
20:54:49.211 [nacos-grpc-client-executor-47.116.184.54-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Receive server push request, request = ClientDetectionRequest, requestId = 3894
20:54:49.212 [nacos-grpc-client-executor-47.116.184.54-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 3895
20:54:49.212 [nacos-grpc-client-executor-47.116.184.54-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Ack server push request, request = ClientDetectionRequest, requestId = 3894
20:55:26.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Server healthy check fail, currentConnection = 1725281558693_139.224.212.27_62310
20:55:26.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Server healthy check fail, currentConnection = 1725281573161_139.224.212.27_62353
20:55:26.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
20:55:26.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Try to reconnect to a new server, server is not appointed, will choose a random server.
20:55:26.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:55:26.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:55:26.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281740780_139.224.212.27_62616
20:55:26.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Success to connect a server [47.116.184.54:8848], connectionId = 1725281740780_139.224.212.27_62617
20:55:26.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281558693_139.224.212.27_62310
20:55:26.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281573161_139.224.212.27_62353
20:55:26.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281558693_139.224.212.27_62310
20:55:26.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281573161_139.224.212.27_62353
20:55:26.249 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Try to reconnect to a new server, server is not appointed, will choose a random server.
20:55:26.249 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify disconnected event to listeners
20:55:26.249 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
20:55:26.249 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify disconnected event to listeners
20:55:26.250 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:55:26.250 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] DisConnected,clear listen context...
20:55:26.250 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:55:26.250 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify connected event to listeners.
20:55:26.250 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Connected,notify listen context...
20:55:26.251 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify connected event to listeners.
20:55:26.251 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
20:55:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Success to connect a server [47.116.184.54:8848], connectionId = 1725281740845_139.224.212.27_62618
20:55:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281740845_139.224.212.27_62619
20:55:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281740780_139.224.212.27_62617
20:55:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281740780_139.224.212.27_62616
20:55:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281740780_139.224.212.27_62617
20:55:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281740780_139.224.212.27_62616
20:55:26.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify disconnected event to listeners
20:55:26.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify disconnected event to listeners
20:55:26.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] DisConnected,clear listen context...
20:55:26.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify connected event to listeners.
20:55:26.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify connected event to listeners.
20:55:26.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
20:55:26.302 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Connected,notify listen context...
20:55:27.190 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-engine
20:59:02.913 [nacos-grpc-client-executor-47.116.184.54-45] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Receive server push request, request = ClientDetectionRequest, requestId = 3898
20:59:02.912 [nacos-grpc-client-executor-47.116.184.54-60] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 3899
20:59:02.913 [nacos-grpc-client-executor-47.116.184.54-60] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 3899
20:59:02.913 [nacos-grpc-client-executor-47.116.184.54-45] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Ack server push request, request = ClientDetectionRequest, requestId = 3898
20:59:03.170 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Server healthy check fail, currentConnection = 1725281740845_139.224.212.27_62618
20:59:03.170 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Try to reconnect to a new server, server is not appointed, will choose a random server.
20:59:03.170 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:59:03.216 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Success to connect a server [47.116.184.54:8848], connectionId = 1725281957753_139.224.212.27_62991
20:59:03.216 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281740845_139.224.212.27_62618
20:59:03.217 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281740845_139.224.212.27_62618
20:59:03.217 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify disconnected event to listeners
20:59:03.217 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Try to reconnect to a new server, server is not appointed, will choose a random server.
20:59:03.217 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify connected event to listeners.
20:59:03.217 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:59:03.217 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
20:59:03.255 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Success to connect a server [47.116.184.54:8848], connectionId = 1725281957801_139.224.212.27_62992
20:59:03.255 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281957753_139.224.212.27_62991
20:59:03.256 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281957753_139.224.212.27_62991
20:59:03.256 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify disconnected event to listeners
20:59:03.256 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify connected event to listeners.
20:59:03.256 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
20:59:03.385 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Server healthy check fail, currentConnection = 1725281740845_139.224.212.27_62619
20:59:03.385 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
20:59:03.385 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:59:03.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281957969_139.224.212.27_62993
20:59:03.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281740845_139.224.212.27_62619
20:59:03.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281740845_139.224.212.27_62619
20:59:03.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
20:59:03.427 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify disconnected event to listeners
20:59:03.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
20:59:03.427 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] DisConnected,clear listen context...
20:59:03.427 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify connected event to listeners.
20:59:03.427 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Connected,notify listen context...
20:59:03.494 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281958016_139.224.212.27_62994
20:59:03.495 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281957969_139.224.212.27_62993
20:59:03.495 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281957969_139.224.212.27_62993
20:59:03.495 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify disconnected event to listeners
20:59:03.495 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] DisConnected,clear listen context...
20:59:03.495 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify connected event to listeners.
20:59:03.495 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Connected,notify listen context...
20:59:05.914 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-engine