客户端接口编写

master
Qin Dong Ming 2024-08-29 14:28:34 +08:00
parent e9cbc42483
commit 6477721bc1
15 changed files with 4989 additions and 359 deletions

View File

@ -17,6 +17,12 @@
<artifactId>cloud-etl-common</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.muyu</groupId>
<artifactId>cloud-etl-remote</artifactId>
<version>1.0.0</version>
<scope>compile</scope>
</dependency>
</dependencies>

View File

@ -0,0 +1,34 @@
package com.muyu.Engineclient;
import com.muyu.common.core.domain.Result;
import com.muyu.domain.EngineVersion;
import com.muyu.remote.RemoteVersionService;
import lombok.extern.log4j.Log4j2;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.ApplicationArguments;
import org.springframework.boot.ApplicationRunner;
import org.springframework.stereotype.Component;
import java.util.List;
/**
* @Authorqdm
* @Packagecom.muyu.Engineclient
* @Projectcloud-etl-engine
* @nameRuleEngineClientRunner
* @Date2024/8/29 11:05
*/
@Log4j2
@Component
public class RuleEngineClientRunner implements ApplicationRunner {
@Autowired
private RemoteVersionService remoteVersionService;
@Override
public void run(ApplicationArguments args) throws Exception {
com.muyu.domain.constants.Result<List<EngineVersion>> listResult = remoteVersionService.selectVersionList();
log.info(listResult);
List<EngineVersion> engineVersionList = listResult.getData();
RuleEngineInit.init(engineVersionList);
}
}

View File

@ -0,0 +1,26 @@
package com.muyu.Engineclient;
import com.muyu.domain.EngineVersion;
import com.muyu.domain.constants.RuleOperationConstants;
import com.muyu.dynamicLoad.DynamicLoader;
import org.springframework.stereotype.Component;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@Component
public class RuleEngineInit {
private static Map<Long, Map<String, byte[]>> engineMap = new HashMap();
public static void init(List<EngineVersion> engineVersionList){
engineVersionList.stream().forEach(engineVersion -> {
String content = engineVersion.getRuleContent().replaceAll("\r\n", "");
Map<String, byte[]> bytecode = DynamicLoader.compile(engineVersion.getVersionClass() +
RuleOperationConstants.FILE_SUFFIX, content);
engineMap.put(engineVersion.getId(), bytecode);
});
}
public static Map<String, byte[]> getEngineMap(Long ruleId) {
return engineMap.get(ruleId);
}
}

View File

@ -0,0 +1,81 @@
package com.muyu.config;
import com.muyu.Engineclient.RuleEngineInit;
import com.muyu.common.core.domain.Result;
import com.muyu.context.DataModelContextHolder;
import com.muyu.context.DataSetContextHolder;
import com.muyu.context.RecordContextHolder;
import com.muyu.domain.EngineVersion;
import com.muyu.dynamicLoad.DynamicLoader;
import com.muyu.model.DataModel;
import com.muyu.model.DataSetModel;
import com.muyu.model.RecordModel;
import com.muyu.model.process.DataProcessModel;
import com.muyu.model.process.DataSetProcessModel;
import com.muyu.model.process.RecordProcessModel;
import com.muyu.remote.RemoteVersionService;
import com.muyu.req.EngineVersionTestReq;
import lombok.extern.log4j.Log4j2;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Import;
import org.springframework.stereotype.Component;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
@Log4j2
@ComponentScan
@Component
@Import(value = {RuleEngineClientRunner.class})
public class RuleEngineClientConfig {
@Autowired
private RemoteVersionService remoteVersionService;
public Result engineVersionTest(EngineVersionTestReq testReq) {
if (testReq.getScope() == 4) {
DataProcessModel dataProcessModel = DataProcessModel.builder().dataModel(testReq.getDataModel()).build();
DataModelContextHolder.set(dataProcessModel);
} else if (testReq.getScope() == 3) {
RecordModel recordModel = RecordModel.builder().dataModels(testReq.getDataModelList()).build();
RecordProcessModel recordProcessModel = RecordProcessModel.builder()
.keys(testReq.getKeys())
.recordModel(recordModel)
.build();
RecordContextHolder.set(recordProcessModel);
} else if (testReq.getScope() == 2) {
List<RecordModel> recordModelList = new ArrayList<>();
List<List<DataModel>> dataModelLists = testReq.getDataModelLists();
dataModelLists.stream().forEach(dataModelList -> {
RecordModel recordModel = RecordModel.builder().dataModels(dataModelList).build();
recordModelList.add(recordModel);
});
DataSetModel dataSetModel = DataSetModel.builder()
.recordModels(recordModelList)
.build();
DataSetProcessModel dataSetProcessModel = DataSetProcessModel.builder()
.dataSetModel(dataSetModel)
.build();
DataSetContextHolder.set(dataSetProcessModel);
}
com.muyu.domain.constants.Result<EngineVersion> version = remoteVersionService.getVersion(testReq.getEngineVersionId());
EngineVersion engineVersion = version.getData();
Map<String, byte[]> engineMap = RuleEngineInit.getEngineMap(testReq.getEngineVersionId());
try {
@SuppressWarnings("resource")
DynamicLoader.MemoryClassLoader classLoader = new DynamicLoader.MemoryClassLoader(engineMap);
Class<?> aClass = classLoader.loadClass(engineVersion.getVersionClass());
Method method = aClass.getDeclaredMethod("execution");
Object o = aClass.newInstance();
method.invoke(o);
} catch (Exception e) {
log.info(e.getMessage());
return Result.success("程序异常: 信息[" + e.getLocalizedMessage() + "]异常");
}
return Result.success("测试正常,无异常数据返回");
}
}

View File

@ -0,0 +1,28 @@
package com.muyu.config;
import com.muyu.Engineclient.RuleEngineInit;
import com.muyu.domain.EngineVersion;
import com.muyu.domain.constants.Result;
import com.muyu.remote.RemoteVersionService;
import lombok.extern.log4j.Log4j2;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.ApplicationArguments;
import org.springframework.boot.ApplicationRunner;
import org.springframework.stereotype.Component;
import java.util.List;
@Component
@Log4j2
public class RuleEngineClientRunner implements ApplicationRunner {
@Autowired
private RemoteVersionService remoteVersionService;
@Override
public void run(ApplicationArguments args) throws Exception {
Result<List<EngineVersion>> listResult = remoteVersionService.selectVersionList();
log.info(listResult);
List<EngineVersion> engineVersionList = listResult.getData();
RuleEngineInit.init(engineVersionList);
}
}

View File

@ -1,5 +1,4 @@
package com.muyu.model;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@ -15,6 +14,7 @@ import lombok.experimental.SuperBuilder;
@NoArgsConstructor
@AllArgsConstructor
public class DataModel {
/**
*
*/

View File

@ -0,0 +1,29 @@
package com.muyu.req;
import com.muyu.model.DataModel;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
import java.util.List;
/**
*
*
* @author qdm
* on 2024/5/14
*/
@Data
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
public class EngineVersionTestReq {
private Integer scope;
private Long engineVersionId;
private List<String> keys;
private DataModel dataModel;
private List<DataModel> dataModelList;
private List<List<DataModel>> dataModelLists;
}

View File

@ -10,6 +10,7 @@ import lombok.experimental.SuperBuilder;
*
* @author qdm
*/
@Data
@SuperBuilder
@NoArgsConstructor

View File

@ -0,0 +1,30 @@
package com.muyu.remote;
import com.muyu.domain.EngineVersion;
import com.muyu.domain.constants.Result;
import com.muyu.req.EngineVersionQueryReq;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import java.util.List;
/**
* @Authorqdm
* @Packagecom.muyu.remote
* @Projectcloud-etl-engine
* @nameRemoteVersionService
* @Date2024/8/29 10:54
*/
@FeignClient(name = "cloud-etl-server")
public interface RemoteVersionService {
@GetMapping("/version/getVersion/{id}")
public Result<EngineVersion> getVersion(@PathVariable("id") Long id);
@GetMapping("/version/list")
public Result<List<EngineVersion>> list(EngineVersionQueryReq engineConfigQueryReq);
@GetMapping("/version/selectVersionList")
public Result<List<EngineVersion>> selectVersionList();
}

View File

@ -8,7 +8,6 @@ import com.muyu.domain.EngineMaintenance;
import com.muyu.domain.constants.PageResult;
import com.muyu.req.EngineMaintenanceQueryReq;
import com.muyu.req.EngineVersionListResp;
import com.muyu.resp.EngineReq;
import com.muyu.service.EngIneService;
import jakarta.servlet.http.HttpServletResponse;
import lombok.val;

View File

@ -38,6 +38,11 @@ public class EngineVersionController {
return Result.success(engineVersionService.list(EngineVersion.queryBuild(engineConfigQueryReq)));
}
@GetMapping("/selectVersionList")
public Result<List<EngineVersion>> selectVersionList() {
return Result.success(engineVersionService.list());
}
@PostMapping("/insert")
public Result<EngineVersion> insert(@RequestBody EngineVersion engineVersion) {
return engineVersionService.add(engineVersion);

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,188 @@
18:45:50.807 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
18:45:53.782 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
18:45:53.783 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
18:45:53.871 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
18:45:55.307 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
18:45:55.308 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
18:45:55.309 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
18:45:56.693 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
18:46:04.158 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
18:46:04.159 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
18:46:04.159 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
18:46:04.165 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
18:46:04.170 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
18:46:04.171 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
18:46:04.272 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 9083b8f1-5396-4c79-9a6e-bf1f81d05e57
18:46:04.275 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->9083b8f1-5396-4c79-9a6e-bf1f81d05e57
18:46:04.276 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
18:46:04.276 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
18:46:04.276 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
18:46:04.276 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
18:46:04.277 [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}
18:46:04.329 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724841968809_139.224.212.27_63217
18:46:04.329 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:46:04.329 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Notify connected event to listeners.
18:46:04.329 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000002dfd54e0228
18:46:04.329 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
18:46:04.331 [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}}
18:46:04.346 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
18:46:05.522 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 20.218 seconds (process running for 21.67)
18:46:05.533 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
18:46:05.533 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
18:46:05.533 [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
18:46:05.545 [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
18:46:05.545 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
18:46:05.546 [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
18:46:05.546 [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
18:46:05.546 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
18:46:05.548 [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
18:46:05.548 [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
18:46:05.548 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
18:46:06.140 [RMI TCP Connection(3)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
18:46:16.056 [http-nio-9703-exec-5] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 720 ms
18:48:44.116 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Server healthy check fail, currentConnection = 1724841968809_139.224.212.27_63217
18:48:44.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Try to reconnect to a new server, server is not appointed, will choose a random server.
18:48:44.118 [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}
18:48:44.334 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] Server healthy check fail, currentConnection = 1724841954803_139.224.212.27_63173
18:48:44.334 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
18:48:44.334 [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}
18:48:47.239 [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}
18:48:47.458 [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}
18:48:50.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
18:48:50.448 [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}
18:48:50.463 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
18:48:50.666 [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}
18:48:52.671 [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)
18:48:52.701 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
18:48:52.704 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
18:48:52.790 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /172.13.1.1:6379
18:48:53.004 [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}
18:48:53.005 [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}
18:48:53.117 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1724842137543_117.143.60.22_52232
18:48:53.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1724841954803_139.224.212.27_63173
18:48:53.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724841954803_139.224.212.27_63173
18:48:53.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Success to connect a server [47.116.184.54:8848], connectionId = 1724842137542_117.143.60.22_52231
18:48:53.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1724841968809_139.224.212.27_63217
18:48:53.118 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] Notify disconnected event to listeners
18:48:53.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724841968809_139.224.212.27_63217
18:48:53.118 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] DisConnected,clear listen context...
18:48:53.118 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Notify disconnected event to listeners
18:48:53.118 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] Notify connected event to listeners.
18:48:53.118 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] Connected,notify listen context...
18:48:53.119 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Notify connected event to listeners.
18:48:53.119 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
18:48:55.783 [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
18:49:02.885 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:49:12.979 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:49:23.080 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:49:33.180 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:49:43.279 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:49:53.381 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:50:03.580 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:50:13.881 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:50:24.479 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:50:35.591 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:50:47.689 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:51:01.883 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
19:08:15.961 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
19:08:18.626 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
19:08:18.626 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
19:08:18.715 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
19:08:21.188 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
19:08:21.189 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
19:08:21.189 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
19:08:22.491 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
19:08:29.985 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
19:08:29.985 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
19:08:29.986 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
19:08:29.992 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
19:08:29.998 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
19:08:29.998 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
19:08:30.113 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 4d81c59e-318c-494e-ad88-b2869ab588c3
19:08:30.116 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->4d81c59e-318c-494e-ad88-b2869ab588c3
19:08:30.116 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4d81c59e-318c-494e-ad88-b2869ab588c3] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
19:08:30.116 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4d81c59e-318c-494e-ad88-b2869ab588c3] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
19:08:30.116 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4d81c59e-318c-494e-ad88-b2869ab588c3] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
19:08:30.117 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4d81c59e-318c-494e-ad88-b2869ab588c3] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
19:08:30.117 [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}
19:08:30.204 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4d81c59e-318c-494e-ad88-b2869ab588c3] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724843314651_139.224.212.27_62948
19:08:30.204 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4d81c59e-318c-494e-ad88-b2869ab588c3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
19:08:30.204 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4d81c59e-318c-494e-ad88-b2869ab588c3] Notify connected event to listeners.
19:08:30.204 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4d81c59e-318c-494e-ad88-b2869ab588c3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000025dbf4d12a0
19:08:30.205 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
19:08:30.206 [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}}
19:08:30.231 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
19:08:31.413 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 21.521 seconds (process running for 22.55)
19:08:31.424 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
19:08:31.424 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
19:08:31.425 [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
19:08:31.438 [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
19:08:31.439 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
19:08:31.439 [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
19:08:31.439 [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
19:08:31.440 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
19:08:31.442 [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
19:08:31.442 [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
19:08:31.442 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
19:08:31.496 [RMI TCP Connection(4)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
19:10:20.334 [http-nio-9703-exec-5] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 396 ms
19:13:30.207 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
21:59:39.122 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
21:59:42.229 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
21:59:42.230 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
21:59:42.331 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
21:59:44.198 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
21:59:44.199 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
21:59:44.200 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
21:59:45.635 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
21:59:53.273 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
21:59:53.273 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
21:59:53.273 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
21:59:53.279 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
21:59:53.284 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
21:59:53.284 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
21:59:53.382 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of a724871f-a36e-4495-aad0-61379e68db7a
21:59:53.385 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->a724871f-a36e-4495-aad0-61379e68db7a
21:59:53.385 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a724871f-a36e-4495-aad0-61379e68db7a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
21:59:53.385 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a724871f-a36e-4495-aad0-61379e68db7a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
21:59:53.386 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a724871f-a36e-4495-aad0-61379e68db7a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
21:59:53.386 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a724871f-a36e-4495-aad0-61379e68db7a] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
21:59:53.387 [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}
21:59:53.427 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a724871f-a36e-4495-aad0-61379e68db7a] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724853597920_139.224.212.27_61843
21:59:53.427 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a724871f-a36e-4495-aad0-61379e68db7a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
21:59:53.427 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a724871f-a36e-4495-aad0-61379e68db7a] Notify connected event to listeners.
21:59:53.427 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a724871f-a36e-4495-aad0-61379e68db7a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000019f8a4cf060
21:59:53.427 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
21:59:53.429 [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}}
21:59:53.452 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
21:59:54.635 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 21.002 seconds (process running for 22.388)
21:59:54.645 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
21:59:54.646 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
21:59:54.646 [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
21:59:54.659 [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
21:59:54.660 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
21:59:54.660 [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
21:59:54.660 [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
21:59:54.661 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
21:59:54.663 [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
21:59:54.663 [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
21:59:54.663 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
21:59:55.064 [RMI TCP Connection(3)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
22:00:01.030 [http-nio-9703-exec-4] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 407 ms
22:33:41.237 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:33:41.237 [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={}}

View File

@ -1,144 +1,106 @@
18:45:50.807 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
18:45:53.782 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
18:45:53.783 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
18:45:53.871 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
18:45:55.307 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
18:45:55.308 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
18:45:55.309 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
18:45:56.693 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
18:46:04.158 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
18:46:04.159 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
18:46:04.159 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
18:46:04.165 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
18:46:04.170 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
18:46:04.171 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
18:46:04.272 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 9083b8f1-5396-4c79-9a6e-bf1f81d05e57
18:46:04.275 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->9083b8f1-5396-4c79-9a6e-bf1f81d05e57
18:46:04.276 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
18:46:04.276 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
18:46:04.276 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
18:46:04.276 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
18:46:04.277 [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}
18:46:04.329 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724841968809_139.224.212.27_63217
18:46:04.329 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:46:04.329 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Notify connected event to listeners.
18:46:04.329 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000002dfd54e0228
18:46:04.329 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
18:46:04.331 [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}}
18:46:04.346 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
18:46:05.522 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 20.218 seconds (process running for 21.67)
18:46:05.533 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
18:46:05.533 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
18:46:05.533 [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
18:46:05.545 [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
18:46:05.545 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
18:46:05.546 [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
18:46:05.546 [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
18:46:05.546 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
18:46:05.548 [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
18:46:05.548 [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
18:46:05.548 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
18:46:06.140 [RMI TCP Connection(3)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
18:46:16.056 [http-nio-9703-exec-5] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 720 ms
18:48:44.116 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Server healthy check fail, currentConnection = 1724841968809_139.224.212.27_63217
18:48:44.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Try to reconnect to a new server, server is not appointed, will choose a random server.
18:48:44.118 [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}
18:48:44.334 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] Server healthy check fail, currentConnection = 1724841954803_139.224.212.27_63173
18:48:44.334 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
18:48:44.334 [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}
18:48:47.239 [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}
18:48:47.458 [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}
18:48:50.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
18:48:50.448 [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}
18:48:50.463 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
18:48:50.666 [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}
18:48:52.671 [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)
18:48:52.701 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
18:48:52.704 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
18:48:52.790 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /172.13.1.1:6379
18:48:53.004 [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}
18:48:53.005 [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}
18:48:53.117 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1724842137543_117.143.60.22_52232
18:48:53.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1724841954803_139.224.212.27_63173
18:48:53.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724841954803_139.224.212.27_63173
18:48:53.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Success to connect a server [47.116.184.54:8848], connectionId = 1724842137542_117.143.60.22_52231
18:48:53.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1724841968809_139.224.212.27_63217
18:48:53.118 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] Notify disconnected event to listeners
18:48:53.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724841968809_139.224.212.27_63217
18:48:53.118 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] DisConnected,clear listen context...
18:48:53.118 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Notify disconnected event to listeners
18:48:53.118 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] Notify connected event to listeners.
18:48:53.118 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [60381ee2-fd02-4a58-8cde-9d373477018c_config-0] Connected,notify listen context...
18:48:53.119 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9083b8f1-5396-4c79-9a6e-bf1f81d05e57] Notify connected event to listeners.
18:48:53.119 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
18:48:55.783 [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
18:49:02.885 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:49:12.979 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:49:23.080 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:49:33.180 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:49:43.279 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:49:53.381 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:50:03.580 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:50:13.881 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:50:24.479 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:50:35.591 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:50:47.689 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
18:51:01.883 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
19:08:15.961 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
19:08:18.626 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
19:08:18.626 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
19:08:18.715 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
19:08:21.188 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
19:08:21.189 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
19:08:21.189 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
19:08:22.491 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
19:08:29.985 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
19:08:29.985 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
19:08:29.986 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
19:08:29.992 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
19:08:29.998 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
19:08:29.998 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
19:08:30.113 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 4d81c59e-318c-494e-ad88-b2869ab588c3
19:08:30.116 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->4d81c59e-318c-494e-ad88-b2869ab588c3
19:08:30.116 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4d81c59e-318c-494e-ad88-b2869ab588c3] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
19:08:30.116 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4d81c59e-318c-494e-ad88-b2869ab588c3] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
19:08:30.116 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4d81c59e-318c-494e-ad88-b2869ab588c3] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
19:08:30.117 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4d81c59e-318c-494e-ad88-b2869ab588c3] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
19:08:30.117 [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}
19:08:30.204 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4d81c59e-318c-494e-ad88-b2869ab588c3] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724843314651_139.224.212.27_62948
19:08:30.204 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4d81c59e-318c-494e-ad88-b2869ab588c3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
19:08:30.204 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4d81c59e-318c-494e-ad88-b2869ab588c3] Notify connected event to listeners.
19:08:30.204 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4d81c59e-318c-494e-ad88-b2869ab588c3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000025dbf4d12a0
19:08:30.205 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
19:08:30.206 [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}}
19:08:30.231 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
19:08:31.413 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 21.521 seconds (process running for 22.55)
19:08:31.424 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
19:08:31.424 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
19:08:31.425 [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
19:08:31.438 [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
19:08:31.439 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
19:08:31.439 [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
19:08:31.439 [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
19:08:31.440 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
19:08:31.442 [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
19:08:31.442 [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
19:08:31.442 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
19:08:31.496 [RMI TCP Connection(4)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
19:10:20.334 [http-nio-9703-exec-5] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 396 ms
19:13:30.207 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
11:21:21.807 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
11:21:25.467 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
11:21:25.467 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
11:21:25.555 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
11:21:47.175 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
11:21:47.177 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
14:01:09.950 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
14:01:12.577 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
14:01:12.577 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
14:01:12.656 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
14:01:12.819 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
14:01:13.035 [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}
14:01:16.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
14:01:16.348 [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}
14:01:19.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
14:01:19.767 [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}
14:01:22.783 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
14:01:23.297 [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}
14:01:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
14:01:26.905 [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}
14:01:29.909 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
14:01:30.611 [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}
14:01:33.621 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
14:01:34.227 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
14:01:34.229 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
14:18:54.448 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
14:18:57.256 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9703"]
14:18:57.258 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
14:18:57.258 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
14:18:57.274 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
14:18:57.349 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
14:18:57.489 [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}
14:19:00.503 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
14:19:00.816 [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}
14:19:03.825 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
14:19:04.232 [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}
14:19:07.243 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
14:19:07.756 [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}
14:19:10.764 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
14:19:11.373 [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}
14:19:14.387 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
14:19:15.101 [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}
14:19:18.109 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
14:19:18.914 [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}
14:19:18.974 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
14:19:18.976 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
14:24:19.448 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
14:24:22.468 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
14:24:22.468 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
14:24:22.552 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
14:24:39.991 [nacos-grpc-client-executor-47.116.184.54-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 2600
14:24:39.991 [nacos-grpc-client-executor-47.116.184.54-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 2600
14:24:40.250 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Server healthy check fail, currentConnection = 1724912666053_117.143.60.22_53732
14:24:40.251 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
14:24:40.251 [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}
14:24:40.327 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1724912687476_139.224.212.27_63135
14:24:40.327 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1724912666053_117.143.60.22_53732
14:24:40.327 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724912666053_117.143.60.22_53732
14:24:40.336 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Notify disconnected event to listeners
14:24:40.336 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] DisConnected,clear listen context...
14:24:40.336 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Notify connected event to listeners.
14:24:40.336 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Connected,notify listen context...
14:24:44.186 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
14:24:44.188 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
14:26:22.402 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
14:26:25.187 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
14:26:25.188 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
14:26:25.272 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
14:26:27.496 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
14:26:27.497 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
14:26:27.497 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
14:26:28.874 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
14:26:36.622 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
14:26:36.623 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
14:26:36.623 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
14:26:36.629 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
14:26:36.634 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
14:26:36.634 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
14:26:36.732 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of ee0662ff-efa1-4bd9-a668-7036f4a30b6c
14:26:36.734 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->ee0662ff-efa1-4bd9-a668-7036f4a30b6c
14:26:36.734 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
14:26:36.736 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
14:26:36.736 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
14:26:36.736 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
14:26:36.737 [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}
14:26:36.827 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724912803970_139.224.212.27_61891
14:26:36.827 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:26:36.827 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Notify connected event to listeners.
14:26:36.827 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001f5424d1928
14:26:36.827 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
14:26:36.829 [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}}
14:26:36.853 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
14:26:38.066 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 21.141 seconds (process running for 22.11)
14:26:38.076 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
14:26:38.076 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
14:26:38.077 [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
14:26:38.089 [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
14:26:38.090 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
14:26:38.091 [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
14:26:38.091 [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
14:26:38.091 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
14:26:38.093 [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
14:26:38.094 [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
14:26:38.094 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
14:26:39.353 [RMI TCP Connection(17)-172.16.0.2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
14:26:50.570 [http-nio-9703-exec-5] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 397 ms