编写实体类
parent
e7b0cc27d2
commit
59e2a2830f
|
@ -1 +0,0 @@
|
|||
public class HelloWorld { public static void main(String[] args) { System.out.println("Hello, world!"); } }
|
|
@ -0,0 +1,23 @@
|
|||
package com.muyu.test;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.URL;
|
||||
import java.net.URLClassLoader;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Path;
|
||||
|
||||
public class ExternalClassLoader extends URLClassLoader {
|
||||
|
||||
public ExternalClassLoader(URL[] urls) {
|
||||
super(urls, Thread.currentThread().getContextClassLoader());
|
||||
}
|
||||
|
||||
public Class<?> defineClassFromBytes(byte[] classBytes, String className) throws IOException {
|
||||
return super.defineClass(className, classBytes, 0, classBytes.length);
|
||||
}
|
||||
|
||||
public Class<?> loadClassFromPath(Path classFilePath, String className) throws IOException {
|
||||
byte[] classData = Files.readAllBytes(classFilePath);
|
||||
return defineClassFromBytes(classData, className);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
package com.muyu.test;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* @Author: DongZeLiang
|
||||
* @date: 2024/9/4
|
||||
* @Description: 测试
|
||||
* @Version: 1.0
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/test")
|
||||
public class TestController {
|
||||
|
||||
@Autowired
|
||||
private TestService testService;
|
||||
|
||||
@GetMapping
|
||||
public String test() {
|
||||
testService.test();
|
||||
return "Hello World";
|
||||
}
|
||||
|
||||
@GetMapping("/1")
|
||||
public String test1() {
|
||||
testService.test();
|
||||
return "Hello World";
|
||||
}
|
||||
}
|
|
@ -0,0 +1,121 @@
|
|||
package com.muyu.test;
|
||||
|
||||
import com.muyu.access.data.base.DataValue;
|
||||
import com.muyu.basic.BasicEngine;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.tools.JavaCompiler;
|
||||
import javax.tools.ToolProvider;
|
||||
import java.io.*;
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.net.URL;
|
||||
import java.nio.file.Path;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.Arrays;
|
||||
import java.util.Map;
|
||||
import java.util.concurrent.ConcurrentHashMap;
|
||||
|
||||
/**
|
||||
* @Author: DongZeLiang
|
||||
* @date: 2024/8/29
|
||||
* @Description: 测试类
|
||||
* @Version: 1.0
|
||||
*/
|
||||
@Service
|
||||
public class TestService {
|
||||
|
||||
static Map<String, BasicEngine<DataValue>> engineMap = new ConcurrentHashMap<>();
|
||||
|
||||
public static final String engineWorkSourcePath = "D:\\work\\teaching\\2112A\\engine";
|
||||
public static final String engineWorkClassPath = engineWorkSourcePath;
|
||||
public static final String className = "com.muyu.data.engine.service.ENGINE_VALUE_JDIES979972_V2";
|
||||
|
||||
|
||||
// package com.muyu.data.engine.service;
|
||||
public static final String code =
|
||||
"""
|
||||
package com.muyu.data.engine.service;
|
||||
|
||||
import com.muyu.data.engine.basic.abstracts.DataEngineValueActuator;
|
||||
import com.muyu.etl.core.domain.DataValue;
|
||||
|
||||
/**
|
||||
* @Author: DongZeLiang
|
||||
* @date: 2024/8/29
|
||||
* @Description: 判空
|
||||
* @Version: 1.0
|
||||
*/
|
||||
public class ENGINE_VALUE_JDIES979972_V2 extends DataEngineValueActuator {
|
||||
|
||||
@Override
|
||||
public void run () {
|
||||
DataValue dataValue = get();
|
||||
if (dataValue.getValue() == null){
|
||||
System.out.println("数据为空,需要丢弃");
|
||||
}else{
|
||||
System.out.println("数据非空:"+dataValue.getValue());
|
||||
}
|
||||
}
|
||||
}
|
||||
""";
|
||||
|
||||
|
||||
public void test() {
|
||||
try {
|
||||
FileWriter writer;
|
||||
writer = new FileWriter(engineWorkSourcePath + "\\ENGINE_VALUE_JDIES979972_V2.java");
|
||||
writer.write(code);
|
||||
writer.flush();
|
||||
writer.close();
|
||||
// 获取java编译器
|
||||
JavaCompiler javaCompiler = ToolProvider.getSystemJavaCompiler();
|
||||
InputStream first = null; // 程序的输入 null 用 system.in
|
||||
OutputStream second = null; // 程序的输出 null 用 system.out
|
||||
OutputStream third = null; // 程序的错误输出 .,null 用 system.err
|
||||
// 程序编译参数 注意 我们编译目录是我们的项目目录
|
||||
String[] strings = {"-classpath", engineWorkSourcePath, "-verbose", "-d", engineWorkSourcePath, engineWorkSourcePath + "\\ENGINE_VALUE_JDIES979972_V2.java"};
|
||||
// 0 表示成功, 其他表示出现了错误
|
||||
System.out.println(Arrays.toString(strings));
|
||||
int i = javaCompiler.run(first, second, third, strings);
|
||||
if (i == 0) {
|
||||
System.out.println("成功");
|
||||
} else {
|
||||
System.out.println("错误");
|
||||
}
|
||||
// 假设这是你的外部类文件路径
|
||||
String externalClassFilePath =
|
||||
engineWorkSourcePath + "\\com\\muyu\\data\\engine\\service\\ENGINE_VALUE_JDIES979972_V2.class";
|
||||
Path classFilePath = Paths.get(externalClassFilePath);
|
||||
// 获取外部类所在的目录
|
||||
String externalClassDir = externalClassFilePath.substring(0, externalClassFilePath.lastIndexOf('\\'));
|
||||
URL[] urls = new URL[]{new File(externalClassDir).toURI().toURL()
|
||||
};
|
||||
|
||||
// 创建自定义类加载器
|
||||
ExternalClassLoader externalClassLoader = new ExternalClassLoader(urls);
|
||||
|
||||
// 加载类
|
||||
// 注意类名必须是完全限定名(包括包名)
|
||||
Class<?> clazz = externalClassLoader.loadClassFromPath(classFilePath, className);
|
||||
// Class<?> clazz = customClassLoader.defineClassFromBytes(externalClassBytes);
|
||||
// 创建类的实例
|
||||
Object instance = clazz.getDeclaredConstructor().newInstance();
|
||||
|
||||
engineMap.put("ENGINE_VALUE_JDIES979972_V2", (BasicEngine<DataValue>) instance);
|
||||
|
||||
} catch (IllegalAccessException | IOException | InstantiationException |
|
||||
NoSuchMethodException | InvocationTargetException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
DataValue dataValue = DataValue.builder()
|
||||
.type("String")
|
||||
.label("姓名")
|
||||
.key("name")
|
||||
.value("张三")
|
||||
.build();
|
||||
|
||||
BasicEngine<DataValue> engine = engineMap.get("ENGINE_VALUE_JDIES979972_V2");
|
||||
engine.set(dataValue);
|
||||
engine.execution();
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -382,3 +382,757 @@ java.net.SocketException: Connection reset
|
|||
20:05:10.198 [http-nio-9706-exec-4] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 415 ms
|
||||
20:05:15.375 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
||||
20:05:15.375 [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=9706, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
|
||||
20:36:11.850 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||
20:36:14.703 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||
20:36:14.704 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||
20:36:14.792 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||
20:36:17.949 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||
20:36:17.950 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||
20:36:17.951 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||
20:36:19.408 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||
20:36:29.403 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||
20:36:29.404 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||
20:36:29.405 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||
20:36:29.413 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||
20:36:29.419 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||
20:36:29.420 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||
20:36:29.638 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 7e3961ac-2b80-4525-a605-b68aff5aa3f3
|
||||
20:36:29.642 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->7e3961ac-2b80-4525-a605-b68aff5aa3f3
|
||||
20:36:29.642 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e3961ac-2b80-4525-a605-b68aff5aa3f3] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||
20:36:29.643 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e3961ac-2b80-4525-a605-b68aff5aa3f3] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||
20:36:29.643 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e3961ac-2b80-4525-a605-b68aff5aa3f3] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||
20:36:29.644 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e3961ac-2b80-4525-a605-b68aff5aa3f3] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
||||
20:36:29.644 [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:36:29.841 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e3961ac-2b80-4525-a605-b68aff5aa3f3] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725453410276_139.224.212.27_63298
|
||||
20:36:29.842 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e3961ac-2b80-4525-a605-b68aff5aa3f3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||
20:36:29.842 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e3961ac-2b80-4525-a605-b68aff5aa3f3] Notify connected event to listeners.
|
||||
20:36:29.842 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e3961ac-2b80-4525-a605-b68aff5aa3f3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001d2524d0d88
|
||||
20:36:29.842 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||
20:36:29.843 [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=9706, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8f45:476:2757:da74:cc8d:2026], preserved.register.source=SPRING_CLOUD}}
|
||||
20:36:29.892 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9706 register finished
|
||||
20:36:31.211 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 25.314 seconds (process running for 26.373)
|
||||
20:36:31.222 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||
20:36:31.223 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||
20:36:31.223 [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:36:31.235 [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:36:31.236 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
||||
20:36:31.236 [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:36:31.236 [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:36:31.236 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
||||
20:36:31.241 [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:36:31.241 [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:36:31.241 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
||||
20:36:31.748 [RMI TCP Connection(8)-172.16.0.8] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||
20:37:52.057 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
||||
20:37:52.057 [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=9706, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
|
||||
20:37:52.106 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
||||
20:37:52.107 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
||||
20:37:52.107 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
||||
20:37:52.108 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
||||
20:37:52.108 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
||||
20:37:52.108 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
||||
20:37:52.108 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
||||
20:37:52.108 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
||||
20:37:52.108 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
||||
20:37:52.108 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
||||
20:37:52.109 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
||||
20:37:52.109 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
||||
20:37:52.109 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->7e3961ac-2b80-4525-a605-b68aff5aa3f3
|
||||
20:37:52.109 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@35c5027c[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 27]
|
||||
20:37:52.109 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
||||
20:37:52.109 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6c24d47a[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
||||
20:37:52.109 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725453410276_139.224.212.27_63298
|
||||
20:37:52.115 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@21889296[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 25]
|
||||
20:37:52.115 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->7e3961ac-2b80-4525-a605-b68aff5aa3f3
|
||||
20:37:52.116 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
||||
20:37:52.116 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
||||
20:37:52.116 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
||||
20:37:52.121 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
|
||||
20:37:52.125 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
|
||||
20:37:52.131 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
|
||||
20:37:52.131 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
|
||||
20:37:52.132 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
|
||||
20:38:04.999 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||
20:38:07.788 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||
20:38:07.788 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||
20:38:07.870 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||
20:38:10.917 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||
20:38:10.919 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||
20:38:10.919 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||
20:38:12.406 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||
20:38:20.241 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||
20:38:20.241 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||
20:38:20.241 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||
20:38:20.247 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||
20:38:20.254 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||
20:38:20.254 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||
20:38:20.392 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of b8874fd3-8b40-4ccc-b153-4c6f0bd5071b
|
||||
20:38:20.395 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->b8874fd3-8b40-4ccc-b153-4c6f0bd5071b
|
||||
20:38:20.395 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b8874fd3-8b40-4ccc-b153-4c6f0bd5071b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||
20:38:20.396 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b8874fd3-8b40-4ccc-b153-4c6f0bd5071b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||
20:38:20.396 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b8874fd3-8b40-4ccc-b153-4c6f0bd5071b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||
20:38:20.396 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b8874fd3-8b40-4ccc-b153-4c6f0bd5071b] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
||||
20:38:20.397 [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:38:20.581 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b8874fd3-8b40-4ccc-b153-4c6f0bd5071b] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725453521046_139.224.212.27_61827
|
||||
20:38:20.581 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b8874fd3-8b40-4ccc-b153-4c6f0bd5071b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||
20:38:20.581 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b8874fd3-8b40-4ccc-b153-4c6f0bd5071b] Notify connected event to listeners.
|
||||
20:38:20.581 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b8874fd3-8b40-4ccc-b153-4c6f0bd5071b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000026c3e4d2da0
|
||||
20:38:20.581 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||
20:38:20.581 [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=9706, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8f45:476:2757:da74:cc8d:2026], preserved.register.source=SPRING_CLOUD}}
|
||||
20:38:20.618 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9706 register finished
|
||||
20:38:21.856 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 22.748 seconds (process running for 23.758)
|
||||
20:38:21.865 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||
20:38:21.865 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||
20:38:21.865 [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:38:21.877 [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:38:21.877 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
||||
20:38:21.877 [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:38:21.877 [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:38:21.882 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
||||
20:38:21.883 [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:38:21.883 [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:38:21.883 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
||||
20:38:22.108 [RMI TCP Connection(6)-172.16.0.8] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||
20:57:17.170 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||
20:57:19.906 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||
20:57:19.908 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||
20:57:19.987 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||
20:57:23.298 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||
20:57:23.300 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||
20:57:23.301 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||
20:57:24.625 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||
20:57:34.050 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||
20:57:34.051 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||
20:57:34.051 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||
20:57:34.057 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||
20:57:34.062 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||
20:57:34.062 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||
20:57:34.190 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 6f5b9c40-ca1a-4e68-87f5-074dd56bd1df
|
||||
20:57:34.192 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->6f5b9c40-ca1a-4e68-87f5-074dd56bd1df
|
||||
20:57:34.192 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6f5b9c40-ca1a-4e68-87f5-074dd56bd1df] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||
20:57:34.192 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6f5b9c40-ca1a-4e68-87f5-074dd56bd1df] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||
20:57:34.193 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6f5b9c40-ca1a-4e68-87f5-074dd56bd1df] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||
20:57:34.193 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6f5b9c40-ca1a-4e68-87f5-074dd56bd1df] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
||||
20:57:34.193 [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:57:34.404 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6f5b9c40-ca1a-4e68-87f5-074dd56bd1df] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725454674846_139.224.212.27_62953
|
||||
20:57:34.404 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6f5b9c40-ca1a-4e68-87f5-074dd56bd1df] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||
20:57:34.404 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6f5b9c40-ca1a-4e68-87f5-074dd56bd1df] Notify connected event to listeners.
|
||||
20:57:34.404 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6f5b9c40-ca1a-4e68-87f5-074dd56bd1df] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000298d54d12a0
|
||||
20:57:34.404 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||
20:57:34.405 [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=9706, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8f45:476:2757:da74:cc8d:2026], preserved.register.source=SPRING_CLOUD}}
|
||||
20:57:34.455 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9706 register finished
|
||||
20:57:35.666 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 24.053 seconds (process running for 25.082)
|
||||
20:57:35.677 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||
20:57:35.677 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||
20:57:35.678 [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:57:35.688 [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:57:35.688 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
||||
20:57:35.689 [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:57:35.689 [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:57:35.689 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
||||
20:57:35.691 [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:57:35.692 [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:57:35.692 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
||||
20:57:36.148 [RMI TCP Connection(1)-172.16.0.8] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||
20:59:03.491 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
||||
20:59:03.491 [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=9706, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
|
||||
20:59:03.540 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
||||
20:59:03.541 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
||||
20:59:03.542 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
||||
20:59:03.542 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
||||
20:59:03.542 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
||||
20:59:03.542 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
||||
20:59:03.542 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
||||
20:59:03.542 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
||||
20:59:03.542 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
||||
20:59:03.543 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
||||
20:59:03.543 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
||||
20:59:03.543 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
||||
20:59:03.543 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->6f5b9c40-ca1a-4e68-87f5-074dd56bd1df
|
||||
20:59:03.543 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@4109ed37[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 29]
|
||||
20:59:03.543 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
||||
20:59:03.543 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@70d28e03[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
||||
20:59:03.543 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725454674846_139.224.212.27_62953
|
||||
20:59:03.548 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@36ef1647[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 25]
|
||||
20:59:03.548 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->6f5b9c40-ca1a-4e68-87f5-074dd56bd1df
|
||||
20:59:03.548 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
||||
20:59:03.548 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
||||
20:59:03.549 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
||||
20:59:03.554 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
|
||||
20:59:03.558 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
|
||||
20:59:03.562 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
|
||||
20:59:03.562 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
|
||||
20:59:03.562 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
|
||||
20:59:11.958 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||
20:59:14.765 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||
20:59:14.766 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||
20:59:14.847 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||
20:59:17.789 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||
20:59:17.790 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||
20:59:17.791 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||
20:59:19.186 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||
20:59:27.797 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||
20:59:27.797 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||
20:59:27.797 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||
20:59:27.804 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||
20:59:27.809 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||
20:59:27.809 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||
20:59:27.930 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of daa83068-ca44-4932-8bb2-d9edeb1a6534
|
||||
20:59:27.932 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->daa83068-ca44-4932-8bb2-d9edeb1a6534
|
||||
20:59:27.932 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||
20:59:27.932 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||
20:59:27.933 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||
20:59:27.933 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
||||
20:59:27.933 [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:59:28.086 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725454788551_139.224.212.27_63303
|
||||
20:59:28.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||
20:59:28.087 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Notify connected event to listeners.
|
||||
20:59:28.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001a9504d2da0
|
||||
20:59:28.087 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||
20:59:28.089 [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=9706, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8f45:476:2757:da74:cc8d:2026], preserved.register.source=SPRING_CLOUD}}
|
||||
20:59:28.137 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9706 register finished
|
||||
20:59:29.343 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 22.973 seconds (process running for 23.919)
|
||||
20:59:29.353 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||
20:59:29.353 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||
20:59:29.354 [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:59:29.365 [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:59:29.366 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
||||
20:59:29.366 [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:59:29.366 [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:59:29.367 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
||||
20:59:29.368 [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:59:29.368 [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:59:29.369 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
||||
20:59:29.638 [RMI TCP Connection(6)-172.16.0.8] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||
21:13:02.911 [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)
|
||||
21:13:02.935 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||
21:13:02.936 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
||||
21:13:02.938 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||
21:13:02.938 [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}
|
||||
21:13:02.982 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /172.13.1.1:6379
|
||||
21:13:03.192 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Success to connect a server [47.116.184.54:8848], connectionId = 1725455603650_39.144.103.255_9866
|
||||
21:13:03.193 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725454788551_139.224.212.27_63303
|
||||
21:13:03.193 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725454788551_139.224.212.27_63303
|
||||
21:13:03.195 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725455603650_39.144.103.255_9865
|
||||
21:13:03.195 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725454771751_139.224.212.27_63231
|
||||
21:13:03.195 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725454771751_139.224.212.27_63231
|
||||
21:13:03.198 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Notify disconnected event to listeners
|
||||
21:13:03.198 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Notify disconnected event to listeners
|
||||
21:13:03.199 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] DisConnected,clear listen context...
|
||||
21:13:03.199 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Notify connected event to listeners.
|
||||
21:13:03.199 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Connected,notify listen context...
|
||||
21:13:03.200 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Notify connected event to listeners.
|
||||
21:13:03.200 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||
21:13:06.063 [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
|
||||
21:13:13.060 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:13:23.154 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:13:33.250 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:13:43.353 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:13:53.453 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:14:03.552 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:14:13.752 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:14:24.049 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:14:34.648 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:14:45.757 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:14:57.848 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:15:12.054 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:15:30.350 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:15:56.748 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:16:36.852 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:17:16.951 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:17:57.050 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:18:37.152 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:19:17.248 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:19:57.351 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:20:37.453 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:21:17.549 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:21:57.651 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:22:37.753 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:23:17.849 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:23:57.952 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:24:38.048 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:25:18.150 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:25:58.252 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:26:38.348 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:27:18.450 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:27:58.562 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:28:38.655 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:29:18.752 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:29:58.853 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:30:38.955 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:31:19.051 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:31:59.153 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:32:39.261 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:33:19.352 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:33:59.451 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:34:39.550 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:35:19.652 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:35:59.748 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:36:39.857 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:37:19.953 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:38:00.049 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:38:40.151 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:39:20.251 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:40:00.349 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:40:40.451 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:41:20.563 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:42:00.653 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:42:40.752 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:43:20.848 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:44:00.950 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:44:41.065 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:45:21.148 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:46:01.251 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:46:41.362 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:47:21.455 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:48:01.551 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:48:41.660 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:49:21.749 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:50:01.852 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:50:41.954 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:51:22.050 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:52:02.158 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:52:42.248 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:53:22.350 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:54:02.453 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:54:42.549 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:55:22.651 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:56:02.753 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:56:42.860 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:57:22.951 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:58:03.053 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:58:43.150 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
21:59:23.263 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:00:03.357 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:00:43.450 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:01:23.564 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:02:03.648 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:02:43.764 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:03:23.853 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:03:31.428 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Server healthy check fail, currentConnection = 1725455603650_39.144.103.255_9866
|
||||
22:03:31.428 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||
22:03:31.428 [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}
|
||||
22:03:31.846 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Server healthy check fail, currentConnection = 1725455603650_39.144.103.255_9865
|
||||
22:03:31.846 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||
22:03:31.846 [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}
|
||||
22:03:34.562 [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}
|
||||
22:03:34.955 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
||||
22:03:37.568 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:03:37.781 [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}
|
||||
22:03:37.965 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:03:38.177 [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}
|
||||
22:03:40.796 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:03:41.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}
|
||||
22:03:41.180 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:03:41.483 [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}
|
||||
22:03:44.107 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:03:44.489 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:03:44.519 [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}
|
||||
22:03:44.891 [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}
|
||||
22:03:47.531 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:03:47.901 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:03:48.034 [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}
|
||||
22:03:48.407 [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}
|
||||
22:03:51.046 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:03:51.416 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:03:51.657 [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}
|
||||
22:03:52.022 [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}
|
||||
22:03:54.674 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:03:55.252 [nacos-grpc-client-executor-47.116.184.54-788] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 4539
|
||||
22:03:55.252 [nacos-grpc-client-executor-47.116.184.54-788] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 4539
|
||||
22:03:55.252 [nacos-grpc-client-executor-47.116.184.54-772] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Receive server push request, request = ClientDetectionRequest, requestId = 4538
|
||||
22:03:55.252 [nacos-grpc-client-executor-47.116.184.54-772] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Ack server push request, request = ClientDetectionRequest, requestId = 4538
|
||||
22:03:55.388 [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}
|
||||
22:03:55.400 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725458653411_39.144.103.255_9895
|
||||
22:03:55.400 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725455603650_39.144.103.255_9865
|
||||
22:03:55.400 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725455603650_39.144.103.255_9865
|
||||
22:03:55.400 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Notify disconnected event to listeners
|
||||
22:03:55.400 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] DisConnected,clear listen context...
|
||||
22:03:55.400 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Notify connected event to listeners.
|
||||
22:03:55.400 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Connected,notify listen context...
|
||||
22:03:56.029 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Success to connect a server [47.116.184.54:8848], connectionId = 1725458656496_39.144.103.255_9898
|
||||
22:03:56.029 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725455603650_39.144.103.255_9866
|
||||
22:03:56.029 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725455603650_39.144.103.255_9866
|
||||
22:03:56.030 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Notify disconnected event to listeners
|
||||
22:03:56.030 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Notify connected event to listeners.
|
||||
22:03:56.030 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||
22:03:57.646 [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
|
||||
22:04:03.949 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:04:44.058 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:05:24.151 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:06:04.262 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:06:44.362 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:07:24.453 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:08:04.548 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:08:44.657 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:09:24.755 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:10:04.848 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:10:44.953 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:11:25.058 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:11:26.804 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Server healthy check fail, currentConnection = 1725458656496_39.144.103.255_9898
|
||||
22:11:26.804 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||
22:11:26.804 [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}
|
||||
22:11:28.472 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Server healthy check fail, currentConnection = 1725458653411_39.144.103.255_9895
|
||||
22:11:28.472 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||
22:11:28.472 [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}
|
||||
22:11:29.918 [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}
|
||||
22:11:31.596 [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}
|
||||
22:11:32.929 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:11:33.145 [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}
|
||||
22:11:34.612 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:11:34.813 [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}
|
||||
22:11:36.165 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:11:36.476 [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}
|
||||
22:11:37.820 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:11:38.129 [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}
|
||||
22:11:39.482 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:11:39.897 [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}
|
||||
22:11:41.136 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:11:41.538 [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}
|
||||
22:11:42.908 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:11:43.415 [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}
|
||||
22:11:44.551 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:11:45.062 [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}
|
||||
22:11:46.422 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:11:47.027 [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}
|
||||
22:11:48.076 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:11:48.685 [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}
|
||||
22:11:50.030 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:11:50.743 [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}
|
||||
22:11:51.692 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:11:52.403 [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}
|
||||
22:11:52.448 [nacos-grpc-client-executor-47.116.184.54-888] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Receive server push request, request = ClientDetectionRequest, requestId = 4546
|
||||
22:11:52.448 [nacos-grpc-client-executor-47.116.184.54-888] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Ack server push request, request = ClientDetectionRequest, requestId = 4546
|
||||
22:11:53.754 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:11:54.570 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
||||
22:11:55.416 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:11:56.222 [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}
|
||||
22:11:57.580 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:11:58.493 [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}
|
||||
22:11:59.237 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:00.145 [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}
|
||||
22:12:01.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:02.157 [nacos-grpc-client-executor-47.116.184.54-896] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1725458656496_39.144.103.255_9898]Ignore complete event,isRunning:false,isAbandon=false
|
||||
22:12:02.522 [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}
|
||||
22:12:03.155 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:04.166 [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}
|
||||
22:12:05.157 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:12:05.529 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:06.559 [nacos-grpc-client-executor-47.116.184.54-910] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 4550
|
||||
22:12:06.560 [nacos-grpc-client-executor-47.116.184.54-910] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 4550
|
||||
22:12:06.643 [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}
|
||||
22:12:07.168 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:08.284 [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}
|
||||
22:12:09.652 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:10.860 [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}
|
||||
22:12:11.294 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:12.501 [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}
|
||||
22:12:13.865 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:15.176 [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}
|
||||
22:12:15.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:16.829 [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}
|
||||
22:12:18.191 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:19.596 [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}
|
||||
22:12:19.843 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:21.245 [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}
|
||||
22:12:22.605 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:24.111 [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}
|
||||
22:12:24.249 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:25.763 [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}
|
||||
22:12:27.124 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:28.732 [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}
|
||||
22:12:28.779 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:30.382 [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}
|
||||
22:12:31.748 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 16 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:33.393 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:33.453 [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}
|
||||
22:12:35.095 [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}
|
||||
22:12:36.466 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 17 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:38.108 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:38.277 [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}
|
||||
22:12:39.923 [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}
|
||||
22:12:41.281 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 18 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:42.929 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 18 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:43.190 [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}
|
||||
22:12:44.843 [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}
|
||||
22:12:45.261 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:12:46.202 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 19 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:46.541 [nacos-grpc-client-executor-47.116.184.54-938] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1725458653411_39.144.103.255_9895]Ignore complete event,isRunning:false,isAbandon=false
|
||||
22:12:47.851 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 19 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:48.207 [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}
|
||||
22:12:49.859 [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}
|
||||
22:12:51.218 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 20 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:52.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 20 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:53.333 [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}
|
||||
22:12:54.984 [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}
|
||||
22:12:56.342 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 21 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:58.000 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 21 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:12:58.554 [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}
|
||||
22:13:00.209 [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}
|
||||
22:13:01.571 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 22 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:03.226 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 22 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:03.878 [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}
|
||||
22:13:05.529 [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}
|
||||
22:13:06.888 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 23 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:08.545 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 23 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:09.296 [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}
|
||||
22:13:10.947 [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}
|
||||
22:13:12.314 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 24 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:13.957 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 24 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:14.826 [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}
|
||||
22:13:16.466 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
||||
22:13:17.836 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 25 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:19.476 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 25 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:20.451 [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}
|
||||
22:13:22.080 [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}
|
||||
22:13:23.467 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 26 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:25.091 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 26 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:25.353 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:13:26.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}
|
||||
22:13:27.798 [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}
|
||||
22:13:29.177 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 27 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:30.811 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 27 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:31.993 [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}
|
||||
22:13:33.613 [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}
|
||||
22:13:35.006 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 28 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:36.625 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 28 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:37.906 [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}
|
||||
22:13:39.541 [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}
|
||||
22:13:40.917 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 29 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:42.559 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 29 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:43.933 [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}
|
||||
22:13:45.566 [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}
|
||||
22:13:46.947 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 30 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:48.571 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 30 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:50.055 [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}
|
||||
22:13:51.683 [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}
|
||||
22:13:53.058 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 31 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:54.698 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 31 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:13:56.265 [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}
|
||||
22:13:57.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}
|
||||
22:13:59.269 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 32 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:00.922 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 32 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:02.585 [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}
|
||||
22:14:04.235 [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}
|
||||
22:14:05.450 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:14:05.590 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 33 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:07.247 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 33 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:09.001 [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}
|
||||
22:14:10.656 [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}
|
||||
22:14:12.013 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 34 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:13.665 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 34 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:15.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}
|
||||
22:14:17.178 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
||||
22:14:18.523 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 35 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:20.183 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 35 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:22.131 [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}
|
||||
22:14:23.788 [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}
|
||||
22:14:25.135 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 36 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:26.801 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 36 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:28.848 [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}
|
||||
22:14:30.517 [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}
|
||||
22:14:30.711 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725459291123_117.143.60.22_58465
|
||||
22:14:30.711 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725458653411_39.144.103.255_9895
|
||||
22:14:30.711 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725458653411_39.144.103.255_9895
|
||||
22:14:30.711 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Notify disconnected event to listeners
|
||||
22:14:30.711 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] DisConnected,clear listen context...
|
||||
22:14:30.711 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Notify connected event to listeners.
|
||||
22:14:30.711 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Connected,notify listen context...
|
||||
22:14:30.947 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Server check success, currentServer is 47.116.184.54:8848
|
||||
22:14:31.864 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 37 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:35.672 [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}
|
||||
22:14:35.688 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 38 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:39.601 [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}
|
||||
22:14:39.606 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 39 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:43.619 [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}
|
||||
22:14:43.622 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 40 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:45.552 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:14:47.728 [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}
|
||||
22:14:47.732 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 41 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:48.173 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Server healthy check fail, currentConnection = 1725459291123_117.143.60.22_58465
|
||||
22:14:48.173 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||
22:14:48.173 [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}
|
||||
22:14:48.279 [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}
|
||||
22:14:48.282 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:14:48.497 [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}
|
||||
22:14:48.502 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:14:48.809 [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}
|
||||
22:14:48.813 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:14:49.229 [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}
|
||||
22:14:49.233 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:14:49.745 [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}
|
||||
22:14:49.752 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:14:50.365 [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}
|
||||
22:14:50.368 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:14:51.071 [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}
|
||||
22:14:51.074 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:14:51.884 [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}
|
||||
22:14:51.886 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:51.946 [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}
|
||||
22:14:51.952 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 42 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:52.802 [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}
|
||||
22:14:52.807 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:53.818 [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}
|
||||
22:14:53.821 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:14:54.937 [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}
|
||||
22:14:55.601 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725459315952_101.82.83.139_13573
|
||||
22:14:55.601 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725459291123_117.143.60.22_58465
|
||||
22:14:55.601 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725459291123_117.143.60.22_58465
|
||||
22:14:55.601 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Notify disconnected event to listeners
|
||||
22:14:55.601 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] DisConnected,clear listen context...
|
||||
22:14:55.601 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Notify connected event to listeners.
|
||||
22:14:55.601 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Connected,notify listen context...
|
||||
22:14:56.256 [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}
|
||||
22:14:57.063 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Success to connect a server [47.116.184.54:8848], connectionId = 1725459317220_101.82.83.139_13320
|
||||
22:14:57.063 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725458656496_39.144.103.255_9898
|
||||
22:14:57.063 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725458656496_39.144.103.255_9898
|
||||
22:14:57.063 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Notify disconnected event to listeners
|
||||
22:14:57.063 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Notify connected event to listeners.
|
||||
22:14:57.063 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||
22:14:59.257 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-engine
|
||||
22:15:15.653 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:15:31.572 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Server healthy check fail, currentConnection = 1725459317220_101.82.83.139_13320
|
||||
22:15:31.572 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||
22:15:31.572 [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}
|
||||
22:15:34.687 [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}
|
||||
22:15:37.139 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Server healthy check fail, currentConnection = 1725459315952_101.82.83.139_13573
|
||||
22:15:37.139 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||
22:15:37.139 [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}
|
||||
22:15:37.697 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:15:37.912 [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}
|
||||
22:15: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}
|
||||
22:15:40.927 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:15:41.236 [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}
|
||||
22:15:43.255 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:15:43.471 [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}
|
||||
22:15:44.246 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:15:44.648 [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}
|
||||
22:15:46.481 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:15:46.788 [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}
|
||||
22:15:47.660 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:15:48.171 [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}
|
||||
22:15:49.378 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Success to connect a server [47.116.184.54:8848], connectionId = 1725459369457_101.82.83.139_13374
|
||||
22:15:49.378 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725459317220_101.82.83.139_13320
|
||||
22:15:49.378 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725459317220_101.82.83.139_13320
|
||||
22:15:49.378 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Notify disconnected event to listeners
|
||||
22:15:49.378 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Notify connected event to listeners.
|
||||
22:15:49.378 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||
22:15:49.792 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:15:50.197 [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}
|
||||
22:15:50.453 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725459370905_101.82.83.139_13624
|
||||
22:15:50.453 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725459315952_101.82.83.139_13573
|
||||
22:15:50.453 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725459315952_101.82.83.139_13573
|
||||
22:15:50.453 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Notify disconnected event to listeners
|
||||
22:15:50.454 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] DisConnected,clear listen context...
|
||||
22:15:50.454 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Notify connected event to listeners.
|
||||
22:15:50.454 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Connected,notify listen context...
|
||||
22:15:51.029 [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
|
||||
22:15:55.760 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:16:11.721 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Server healthy check fail, currentConnection = 1725459369457_101.82.83.139_13374
|
||||
22:16:11.721 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||
22:16:11.721 [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}
|
||||
22:16:12.576 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Server healthy check fail, currentConnection = 1725459370905_101.82.83.139_13624
|
||||
22:16:12.576 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||
22:16:12.576 [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}
|
||||
22:16:14.840 [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}
|
||||
22:16:15.691 [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}
|
||||
22:16:17.846 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:16:18.047 [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}
|
||||
22:16:18.697 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:16:18.899 [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}
|
||||
22:16:21.056 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:16:21.368 [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}
|
||||
22:16:21.912 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:16:22.216 [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}
|
||||
22:16:24.383 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:16:24.797 [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}
|
||||
22:16:25.232 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:16:25.634 [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}
|
||||
22:16:27.802 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:16:28.314 [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}
|
||||
22:16:28.641 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:16:29.150 [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}
|
||||
22:16:31.320 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:16:31.923 [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}
|
||||
22:16:32.156 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:16:32.765 [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}
|
||||
22:16:34.933 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:16:35.642 [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}
|
||||
22:16:35.781 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:16:35.859 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:16:36.482 [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}
|
||||
22:16:38.652 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:16:39.453 [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}
|
||||
22:16:39.501 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_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
|
||||
22:16:40.017 [nacos-grpc-client-executor-47.116.184.54-1086] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 4557
|
||||
22:16:40.017 [nacos-grpc-client-executor-47.116.184.54-1086] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 4557
|
||||
22:16:40.304 [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}
|
||||
22:16:42.460 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:16:43.314 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:16:43.362 [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}
|
||||
22:16:44.229 [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}
|
||||
22:16:46.368 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:16:47.237 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:16:47.375 [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}
|
||||
22:16:48.240 [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}
|
||||
22:16:50.383 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:16:51.252 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:16:51.484 [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}
|
||||
22:16:52.185 [nacos-grpc-client-executor-47.116.184.54-1076] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Receive server push request, request = ClientDetectionRequest, requestId = 4558
|
||||
22:16:52.185 [nacos-grpc-client-executor-47.116.184.54-1076] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Ack server push request, request = ClientDetectionRequest, requestId = 4558
|
||||
22:16:52.186 [nacos-grpc-client-executor-47.116.184.54-1076] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1725459369457_101.82.83.139_13374]Ignore complete event,isRunning:false,isAbandon=false
|
||||
22:16:52.367 [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}
|
||||
22:16:53.129 [nacos-grpc-client-executor-47.116.184.54-1098] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1725459370905_101.82.83.139_13624]Ignore complete event,isRunning:false,isAbandon=false
|
||||
22:16:54.491 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:16:55.369 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:16:55.697 [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}
|
||||
22:16:56.581 [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}
|
||||
22:16:58.703 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:16:59.593 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:17:00.013 [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}
|
||||
22:17:00.895 [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}
|
||||
22:17:03.019 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:17:03.904 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:17:04.429 [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}
|
||||
22:17:05.309 [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}
|
||||
22:17:07.443 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:17:08.312 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:17:08.945 [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}
|
||||
22:17:09.822 [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}
|
||||
22:17:11.949 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:17:12.831 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
|
||||
22:17:13.559 [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}
|
||||
22:17:13.854 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Success to connect a server [47.116.184.54:8848], connectionId = 1725459454241_101.82.83.139_13707
|
||||
22:17:13.855 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725459369457_101.82.83.139_13374
|
||||
22:17:13.855 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725459369457_101.82.83.139_13374
|
||||
22:17:13.855 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Notify disconnected event to listeners
|
||||
22:17:13.855 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa83068-ca44-4932-8bb2-d9edeb1a6534] Notify connected event to listeners.
|
||||
22:17:13.855 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||
22:17:14.438 [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}
|
||||
22:17:14.791 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725459455191_101.82.83.139_13709
|
||||
22:17:14.792 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725459370905_101.82.83.139_13624
|
||||
22:17:14.792 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725459370905_101.82.83.139_13624
|
||||
22:17:14.792 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Notify disconnected event to listeners
|
||||
22:17:14.792 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] DisConnected,clear listen context...
|
||||
22:17:14.792 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Notify connected event to listeners.
|
||||
22:17:14.792 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [41db1386-aa3c-476e-99cc-100fbc9a78fb_config-0] Connected,notify listen context...
|
||||
22:17:15.322 [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
|
||||
22:17:15.954 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:17:56.049 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||
22:18:20.999 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
||||
22:18:21.000 [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=9706, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
|
||||
|
|
Loading…
Reference in New Issue