master
zzh 2024-08-21 19:04:27 +08:00
parent 66df925400
commit 602d30c514
14 changed files with 3702 additions and 17 deletions

View File

@ -5,6 +5,10 @@ import com.baomidou.mybatisplus.annotation.TableName;
import com.muyu.common.core.web.domain.BaseEntity; import com.muyu.common.core.web.domain.BaseEntity;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Data; import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
import java.util.Date; import java.util.Date;
/** /**
@ -14,29 +18,42 @@ import java.util.Date;
*/ */
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor
@SuperBuilder
@EqualsAndHashCode(callSuper = true)
@TableName(value="data_sources") @TableName(value="data_sources")
public class DataSources extends BaseEntity { public class DataSources extends BaseEntity {
/** id */ /** id */
@TableId @TableId
private Integer id ; private Integer id ;
/** 数据来源类型 */ /** 数据来源类型 */
private String type ; private String type ;
/** 数据来源名称 */ /** 数据来源名称 */
private String name ; private String name ;
/** 数据来源地址 */ /** 数据来源地址 */
private String url ; private String url ;
/** 来源地址端口号 */ /** 来源地址端口号 */
private String port ; private String port ;
/** 存放数据库名称 */ /** 存放数据库名称 */
private String databaseName ; private String databaseName ;
/** 数据库登录名 */ /** 数据库登录名 */
private String userName ; private String userName ;
/** 数据库登录密码 */ /** 数据库登录密码 */
private String userPwd ; private String userPwd ;
/** 字符集编码 */ /** 字符集编码 */
private String param ; private String param ;
/** 状态 1启用 2禁用 */ /** 状态 1启用 2禁用 */
private String status ; private String status ;
/** 注释 */ /** 注释 */
private String remark ; private String remark ;

View File

@ -0,0 +1,17 @@
package com.muyu.etl.common.domain;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.AllArgsConstructor;
import lombok.Data;
/**
* @Authorzhangzhihao
* @nameDataType
* @Date2024/8/21 15:09
*
*/
@Data
@AllArgsConstructor
@TableName(value="data_type")
public class DataType {
}

View File

@ -1,13 +0,0 @@
package com.muyu;
/**
* @Authorzhangzhihao
* @name${NAME}
* @Date2024/8/20 18:29
*
*/
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}

View File

@ -0,0 +1,21 @@
package com.muyu.etl.server;
import com.muyu.common.security.annotation.EnableCustomConfig;
import com.muyu.common.security.annotation.EnableMyFeignClients;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* @Authorzhangzhihao
* @nameDataSourcesApplication
* @Date2024/8/21 14:37
*
*/
@EnableCustomConfig
@EnableMyFeignClients
@SpringBootApplication
public class DataSourcesApplication {
public static void main(String[] args) {
SpringApplication.run(DataSourcesApplication.class);
}
}

View File

@ -0,0 +1,71 @@
package com.muyu.etl.server.controller;
import com.muyu.common.core.domain.Result;
import com.muyu.etl.common.domain.DataSources;
import com.muyu.etl.server.service.DataSourcesService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.PageImpl;
import org.springframework.data.domain.PageRequest;
import org.springframework.web.bind.annotation.*;
import java.util.List;
/**
* @Authorzhangzhihao
* @nameDataSourcesController
* @Date2024/8/21 14:47
*
*/
@RestController
@RequestMapping("etl")
public class DataSourcesController {
@Autowired
private DataSourcesService dataSourcesService;
/**
* ID
* @param id
* @return
*/
@GetMapping("{id}")
public Result<DataSources> queryById(@PathVariable Integer id){
return Result.success(dataSourcesService.getById(id));
}
/**
*
* @param dataSources
* @return
*/
@PostMapping
public Result<DataSources> add(DataSources dataSources){
dataSourcesService.save(dataSources);
return Result.success();
}
/**
*
*
* @param dataSources
* @return
*/
@PutMapping
public Result<DataSources> edit(DataSources dataSources){
dataSourcesService.update(dataSources);
return Result.success();
}
/**
*
*
* @param id
* @return
*/
@DeleteMapping("{id}")
public Result<Boolean> deleteById(@PathVariable Integer id){
return Result.success(dataSourcesService.removeById(id));
}
}

View File

@ -0,0 +1,18 @@
package com.muyu.etl.server.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.muyu.etl.common.domain.DataSources;
import org.apache.ibatis.annotations.Mapper;
/**
* @Authorzhangzhihao
* @nameDataSourcesMapper
* @Date2024/8/21 14:40
*
*/
@Mapper
public interface DataSourcesMapper extends BaseMapper<DataSources> {
}

View File

@ -0,0 +1,14 @@
package com.muyu.etl.server.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.muyu.etl.common.domain.DataSources;
/**
* @Authorzhangzhihao
* @nameDataSourcesService
* @Date2024/8/21 14:35
*
*/
public interface DataSourcesService extends IService<DataSources> {
boolean update(DataSources dataSources);
}

View File

@ -0,0 +1,38 @@
package com.muyu.etl.server.service.impl;
import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.muyu.etl.common.domain.DataSources;
import com.muyu.etl.server.mapper.DataSourcesMapper;
import com.muyu.etl.server.service.DataSourcesService;
import lombok.extern.log4j.Log4j2;
import org.springframework.stereotype.Service;
/**
* @Authorzhangzhihao
* @nameDataSourcesServiceImpl
* @Date2024/8/21 14:35
*
*/
@Log4j2
@Service
public class DataSourcesServiceImpl extends ServiceImpl<DataSourcesMapper, DataSources> implements DataSourcesService {
/**
*
* @param dataSources
* @return
*/
@Override
public boolean save(DataSources dataSources) {
return super.save(dataSources);
}
@Override
public boolean update(DataSources dataSources) {
LambdaUpdateWrapper<DataSources> updateWrapper = new LambdaUpdateWrapper<>();
return this.update(updateWrapper);
}
}

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<configuration scan="true" scanPeriod="60 seconds" debug="false"> <configuration scan="true" scanPeriod="60 seconds" debug="false">
<!-- 日志存放路径 --> <!-- 日志存放路径 -->
<property name="log.path" value="logs/cloud-pay"/> <property name="log.path" value="logs/cloud-etl"/>
<!-- 日志输出格式 --> <!-- 日志输出格式 -->
<property name="log.pattern" value="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"/> <property name="log.pattern" value="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<configuration scan="true" scanPeriod="60 seconds" debug="false"> <configuration scan="true" scanPeriod="60 seconds" debug="false">
<!-- 日志存放路径 --> <!-- 日志存放路径 -->
<property name="log.path" value="logs/cloud-pay"/> <property name="log.path" value="logs/cloud-etl"/>
<!-- 日志输出格式 --> <!-- 日志输出格式 -->
<property name="log.pattern" value="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"/> <property name="log.pattern" value="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"/>
<property name="log.sky.pattern" value="%d{HH:mm:ss.SSS} %yellow([%tid]) [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"/> <property name="log.sky.pattern" value="%d{HH:mm:ss.SSS} %yellow([%tid]) [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<configuration scan="true" scanPeriod="60 seconds" debug="false"> <configuration scan="true" scanPeriod="60 seconds" debug="false">
<!-- 日志存放路径 --> <!-- 日志存放路径 -->
<property name="log.path" value="logs/cloud-pay"/> <property name="log.path" value="logs/cloud-etl"/>
<!-- 日志输出格式 --> <!-- 日志输出格式 -->
<property name="log.pattern" value="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"/> <property name="log.pattern" value="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"/>
<property name="log.sky.pattern" value="%d{HH:mm:ss.SSS} %yellow([%tid]) [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"/> <property name="log.sky.pattern" value="%d{HH:mm:ss.SSS} %yellow([%tid]) [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"/>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,368 @@
16:29:05.357 [main] INFO c.m.e.s.DataSourcesApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
16:29:06.882 [main] INFO c.d.f.s.ClassPathClientScanner - [processBeanDefinitions,153] - [Forest] Created Forest Client Bean with name 'nacosServiceRemote' and Proxy of 'com.muyu.common.nacos.remote.NacosServiceRemote' client interface
16:29:07.175 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:29:07.175 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
16:29:07.253 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:29:07.529 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
16:29:08.039 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:29:11.928 [main] INFO c.m.c.r.RabbitConfig - [init,26] - rabbit启动成功
16:29:12.198 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
16:29:14.212 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@1d0e2c96[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
16:29:14.212 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@7fa498b3[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
16:29:14.398 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999
16:29:15.439 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
16:29:15.440 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
16:29:15.440 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
16:29:15.444 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
16:29:15.447 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
16:29:15.448 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
16:29:16.687 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of adf78395-1cf2-41bd-bc12-58804a21b85f
16:29:16.690 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->adf78395-1cf2-41bd-bc12-58804a21b85f
16:29:16.690 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:29:16.690 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:29:16.690 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:29:16.690 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Try to connect to server on start up, server: {serverIp = '12.2.0.252', server main port = 8848}
16:29:16.690 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:29:18.071 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Success to connect to server [12.2.0.252:8848] on start up, connectionId = 1724228957072_12.2.0.3_62810
16:29:18.071 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:29:18.071 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x000002021152ba80
16:29:18.071 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Notify connected event to listeners.
16:29:18.071 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
16:29:18.072 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] muyu-cloud registering service cloud-etl with instance Instance{instanceId='null', ip='192.168.110.1', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
16:29:18.132 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-etl 192.168.110.1:9701 register finished
16:29:19.282 [main] INFO c.m.e.s.DataSourcesApplication - [logStarted,56] - Started DataSourcesApplication in 31.944 seconds (process running for 32.536)
16:29:19.290 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
16:29:19.291 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
16:29:19.291 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-muyu-cloud-12.2.0.252_8848] [subscribe] cloud-etl+DEFAULT_GROUP+muyu-cloud
16:29:19.297 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-muyu-cloud-12.2.0.252_8848] [add-listener] ok, tenant=muyu-cloud, dataId=cloud-etl, group=DEFAULT_GROUP, cnt=1
16:29:19.297 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-etl, group=DEFAULT_GROUP
16:29:19.297 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-muyu-cloud-12.2.0.252_8848] [subscribe] cloud-etl-dev.yml+DEFAULT_GROUP+muyu-cloud
16:29:19.297 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-muyu-cloud-12.2.0.252_8848] [add-listener] ok, tenant=muyu-cloud, dataId=cloud-etl-dev.yml, group=DEFAULT_GROUP, cnt=1
16:29:19.297 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-etl-dev.yml, group=DEFAULT_GROUP
16:29:19.297 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-muyu-cloud-12.2.0.252_8848] [subscribe] cloud-etl.yml+DEFAULT_GROUP+muyu-cloud
16:29:19.297 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-muyu-cloud-12.2.0.252_8848] [add-listener] ok, tenant=muyu-cloud, dataId=cloud-etl.yml, group=DEFAULT_GROUP, cnt=1
16:29:19.297 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-etl.yml, group=DEFAULT_GROUP
16:29:19.735 [RMI TCP Connection(3)-192.168.43.169] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:29:49.509 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-etl', registryValue='http://192.168.43.169:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.103.41.248:20800/api/registry, content=null]
16:29:57.866 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Server healthy check fail, currentConnection = 1724228957072_12.2.0.3_62810
16:29:57.867 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:29:57.867 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:30:00.549 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Server healthy check fail, currentConnection = 1724228944687_12.2.0.3_62781
16:30:00.549 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:30:00.549 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:30:00.830 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Success to connect a server [12.2.0.252:8848], connectionId = 1724229000962_12.2.0.3_62892
16:30:00.830 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Abandon prev connection, server is 12.2.0.252:8848, connectionId is 1724228944687_12.2.0.3_62781
16:30:00.830 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724228944687_12.2.0.3_62781
16:30:00.830 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Notify disconnected event to listeners
16:30:00.830 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] DisConnected,clear listen context...
16:30:00.830 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Notify connected event to listeners.
16:30:00.830 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Connected,notify listen context...
16:30:00.983 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:30:01.486 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Success to connect a server [12.2.0.252:8848], connectionId = 1724229001266_12.2.0.3_62895
16:30:01.486 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Abandon prev connection, server is 12.2.0.252:8848, connectionId is 1724228957072_12.2.0.3_62810
16:30:01.486 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724228957072_12.2.0.3_62810
16:30:01.487 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Notify disconnected event to listeners
16:30:01.488 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Notify connected event to listeners.
16:30:01.488 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
16:30:01.822 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-etl
16:30:07.848 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-etl
16:30:10.853 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-etl
16:30:13.868 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-etl
16:30:15.853 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Server check success, currentServer is 12.2.0.252:8848
16:30:16.869 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-etl
16:30:22.526 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-etl', registryValue='http://192.168.43.169:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.103.41.248:20800/api/registry, content=null]
16:30:22.883 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-etl
16:30:25.895 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-etl
16:30:27.230 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Server check success, currentServer is 12.2.0.252:8848
16:30:28.907 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-etl
16:31:16.602 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Server healthy check fail, currentConnection = 1724229000962_12.2.0.3_62892
16:31:16.602 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:31:16.602 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:19.721 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:21.454 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Server healthy check fail, currentConnection = 1724229001266_12.2.0.3_62895
16:31:21.454 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:31:21.454 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:22.729 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:22.943 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:24.567 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:25.947 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:26.258 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:26.741 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-etl', registryValue='http://192.168.43.169:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.103.41.248:20800/api/registry, content=null]
16:31:27.582 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 1 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:27.784 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:29.265 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:29.667 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:30.802 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 2 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:31.110 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:32.678 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:33.189 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:34.120 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 3 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:34.521 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:36.203 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:36.817 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:37.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 4 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:38.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:39.823 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:40.154 [nacos-grpc-client-executor-12.2.0.252-65] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Receive server push request, request = ClientDetectionRequest, requestId = 35
16:31:40.155 [nacos-grpc-client-executor-12.2.0.252-65] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Ack server push request, request = ClientDetectionRequest, requestId = 35
16:31:40.156 [nacos-grpc-client-executor-12.2.0.252-82] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 36
16:31:40.156 [nacos-grpc-client-executor-12.2.0.252-82] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 36
16:31:40.537 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:41.049 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 5 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:41.658 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:43.546 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:44.349 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:44.672 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 6 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:45.374 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:47.353 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:48.255 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:48.379 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 7 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:49.185 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:51.270 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:52.199 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 8 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:52.275 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:53.111 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:55.290 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:56.122 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 9 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:56.401 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:57.133 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:31:59.412 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:31:59.753 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-etl', registryValue='http://192.168.43.169:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.103.41.248:20800/api/registry, content=null]
16:32:00.141 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 10 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:32:00.614 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:32:01.243 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:32:01.515 [nacos-grpc-client-executor-12.2.0.252-84] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Receive server push request, request = ClientDetectionRequest, requestId = 37
16:32:01.515 [nacos-grpc-client-executor-12.2.0.252-84] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Ack server push request, request = ClientDetectionRequest, requestId = 37
16:32:01.517 [nacos-grpc-client-executor-12.2.0.252-100] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 38
16:32:01.517 [nacos-grpc-client-executor-12.2.0.252-100] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 38
16:32:03.627 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:32:04.259 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 11 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:32:04.940 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:32:05.469 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:32:07.952 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:32:08.482 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 12 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:32:09.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:32:09.793 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:32:11.612 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Success to connect a server [12.2.0.252:8848], connectionId = 1724229130627_12.2.0.3_63241
16:32:11.612 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Abandon prev connection, server is 12.2.0.252:8848, connectionId is 1724229000962_12.2.0.3_62892
16:32:11.612 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724229000962_12.2.0.3_62892
16:32:11.612 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Notify disconnected event to listeners
16:32:11.612 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] DisConnected,clear listen context...
16:32:11.612 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Notify connected event to listeners.
16:32:11.612 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Connected,notify listen context...
16:32:11.672 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Success to connect a server [12.2.0.252:8848], connectionId = 1724229131681_12.2.0.3_63244
16:32:11.672 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Abandon prev connection, server is 12.2.0.252:8848, connectionId is 1724229001266_12.2.0.3_62895
16:32:11.672 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724229001266_12.2.0.3_62895
16:32:11.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Notify disconnected event to listeners
16:32:11.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Notify connected event to listeners.
16:32:11.673 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
16:32:14.430 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-etl
16:33:51.549 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Server healthy check fail, currentConnection = 1724229130627_12.2.0.3_63241
16:33:51.549 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:33:51.549 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:33:51.838 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Server healthy check fail, currentConnection = 1724229131681_12.2.0.3_63244
16:33:51.838 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:33:51.838 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:33:54.664 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:33:54.958 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:33:56.697 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Success to connect a server [12.2.0.252:8848], connectionId = 1724229235677_12.2.0.3_63542
16:33:56.697 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Abandon prev connection, server is 12.2.0.252:8848, connectionId is 1724229131681_12.2.0.3_63244
16:33:56.697 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724229131681_12.2.0.3_63244
16:33:56.697 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Notify disconnected event to listeners
16:33:56.697 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Notify connected event to listeners.
16:33:56.697 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
16:33:56.809 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-etl
16:33:57.673 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:33:57.889 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:00.894 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:34:01.205 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:02.826 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-etl
16:34:04.219 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:34:04.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:05.835 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-etl
16:34:07.098 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-etl', registryValue='http://192.168.43.169:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.103.41.248:20800/api/registry, content=null]
16:34:07.624 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:34:08.134 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:08.844 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-etl
16:34:11.150 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:34:11.766 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:11.859 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-etl
16:34:12.318 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:34:12.318 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:14.704 [nacos-grpc-client-executor-12.2.0.252-153] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 43
16:34:14.704 [nacos-grpc-client-executor-12.2.0.252-153] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 43
16:34:14.769 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:34:14.862 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-etl
16:34:15.430 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:15.477 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:16.654 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Success to connect a server [12.2.0.252:8848], connectionId = 1724229256168_12.2.0.3_63693
16:34:16.654 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Success to connect a server [12.2.0.252:8848], connectionId = 1724229256168_12.2.0.3_63694
16:34:16.654 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Abandon prev connection, server is 12.2.0.252:8848, connectionId is 1724229130627_12.2.0.3_63241
16:34:16.654 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Abandon prev connection, server is 12.2.0.252:8848, connectionId is 1724229235677_12.2.0.3_63542
16:34:16.654 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724229130627_12.2.0.3_63241
16:34:16.654 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724229235677_12.2.0.3_63542
16:34:16.654 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Notify disconnected event to listeners
16:34:16.654 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Notify disconnected event to listeners
16:34:16.655 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] DisConnected,clear listen context...
16:34:16.655 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Notify connected event to listeners.
16:34:16.655 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Connected,notify listen context...
16:34:16.655 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Notify connected event to listeners.
16:34:16.655 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
16:34:17.866 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-etl
16:34:39.117 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Server healthy check fail, currentConnection = 1724229256168_12.2.0.3_63694
16:34:39.117 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:34:39.117 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:39.177 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Server healthy check fail, currentConnection = 1724229256168_12.2.0.3_63693
16:34:39.177 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:34:39.177 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:40.108 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-etl', registryValue='http://192.168.43.169:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.103.41.248:20800/api/registry, content=null]
16:34:42.234 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:42.296 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:45.239 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:34:45.300 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 1 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:34:45.452 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:45.501 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:48.467 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:34:48.514 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 2 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:34:48.779 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:48.816 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:51.794 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:34:51.826 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 3 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:34:52.198 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:52.230 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:55.201 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:34:55.231 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 4 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:34:55.714 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:55.745 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:58.716 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:34:58.761 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 5 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:34:59.319 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:34:59.366 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:35:02.331 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:35:02.378 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 6 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:35:03.039 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:35:03.086 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:35:06.051 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:35:06.097 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 7 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:35:06.855 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:35:06.899 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:35:09.866 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:35:09.912 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 8 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:35:09.977 [nacos-grpc-client-executor-12.2.0.252-194] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 46
16:35:09.977 [nacos-grpc-client-executor-12.2.0.252-194] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 46
16:35:09.977 [nacos-grpc-client-executor-12.2.0.252-194] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1724229256168_12.2.0.3_63694]Ignore complete event,isRunning:false,isAbandon=false
16:35:10.781 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:35:10.814 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:35:11.027 [nacos-grpc-client-executor-12.2.0.252-177] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Receive server push request, request = ClientDetectionRequest, requestId = 47
16:35:11.029 [nacos-grpc-client-executor-12.2.0.252-177] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Ack server push request, request = ClientDetectionRequest, requestId = 47
16:35:11.029 [nacos-grpc-client-executor-12.2.0.252-177] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1724229256168_12.2.0.3_63693]Ignore complete event,isRunning:false,isAbandon=false
16:35:13.785 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:35:13.816 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 9 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:35:14.791 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:35:14.817 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:35:16.980 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Success to connect a server [12.2.0.252:8848], connectionId = 1724229315883_12.2.0.3_63904
16:35:16.980 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Success to connect a server [12.2.0.252:8848], connectionId = 1724229315882_12.2.0.3_63907
16:35:16.980 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Abandon prev connection, server is 12.2.0.252:8848, connectionId is 1724229256168_12.2.0.3_63693
16:35:16.980 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Abandon prev connection, server is 12.2.0.252:8848, connectionId is 1724229256168_12.2.0.3_63694
16:35:16.980 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724229256168_12.2.0.3_63693
16:35:16.980 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724229256168_12.2.0.3_63694
16:35:16.980 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Notify disconnected event to listeners
16:35:16.980 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Notify disconnected event to listeners
16:35:16.980 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Notify connected event to listeners.
16:35:16.980 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
16:35:16.980 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] DisConnected,clear listen context...
16:35:16.980 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Notify connected event to listeners.
16:35:16.980 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Connected,notify listen context...
16:35:18.809 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-etl
16:47:49.471 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-etl', registryValue='http://192.168.43.169:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.103.41.248:20800/api/registry, content=null]
16:48:49.417 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Server healthy check fail, currentConnection = 1724229315882_12.2.0.3_63907
16:48:49.417 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:48:49.417 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:48:49.602 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Server healthy check fail, currentConnection = 1724229315883_12.2.0.3_63904
16:48:49.602 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
16:48:49.602 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:48:52.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:48:52.712 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:48:53.934 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-etl', registryValue='http://192.168.43.169:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.103.41.248:20800/api/registry, content=null]
16:48:55.543 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 1 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:48:55.714 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:48:55.747 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:48:55.918 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:48:58.758 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 2 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:48:58.930 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:48:59.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:48:59.237 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:49:02.070 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 3 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:49:02.242 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:49:02.477 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:49:02.648 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:49:05.490 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 4 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:49:05.659 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:49:05.996 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:49:06.167 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:49:09.004 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 5 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:49:09.173 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:49:09.617 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:49:09.787 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:49:12.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Fail to connect server, after trying 6 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:49:12.805 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '12.2.0.252', server main port = 8848}, error = unknown
16:49:13.324 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:49:13.511 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:12.2.0.252 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:49:15.511 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Success to connect a server [12.2.0.252:8848], connectionId = 1724230154147_12.2.0.3_64015
16:49:15.511 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Abandon prev connection, server is 12.2.0.252:8848, connectionId is 1724229315882_12.2.0.3_63907
16:49:15.511 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724229315882_12.2.0.3_63907
16:49:15.511 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Notify disconnected event to listeners
16:49:15.511 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [adf78395-1cf2-41bd-bc12-58804a21b85f] Notify connected event to listeners.
16:49:15.511 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
16:49:15.929 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Success to connect a server [12.2.0.252:8848], connectionId = 1724230154167_12.2.0.3_64016
16:49:15.929 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Abandon prev connection, server is 12.2.0.252:8848, connectionId is 1724229315883_12.2.0.3_63904
16:49:15.929 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724229315883_12.2.0.3_63904
16:49:15.929 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Notify disconnected event to listeners
16:49:15.929 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] DisConnected,clear listen context...
16:49:15.929 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Notify connected event to listeners.
16:49:15.929 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Connected,notify listen context...
16:49:16.331 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-etl
16:50:07.190 [nacos-grpc-client-executor-12.2.0.252-399] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Receive server push request, request = ConfigChangeNotifyRequest, requestId = 58
16:50:07.191 [nacos-grpc-client-executor-12.2.0.252-399] INFO c.a.n.c.c.i.ClientWorker - [handleConfigChangeNotifyRequest,666] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] [server-push] config changed. dataId=cloud-etl-dev.yml, group=DEFAULT_GROUP,tenant=muyu-cloud
16:50:07.191 [nacos-grpc-client-executor-12.2.0.252-399] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eead501d-2d1c-4d7e-8206-eb31add828d7_config-0] Ack server push request, request = ConfigChangeNotifyRequest, requestId = 58
16:50:07.794 [nacos.client.config.listener.task-0] INFO c.a.n.c.c.i.ClientWorker - [refreshContentAndCheck,939] - [fixed-muyu-cloud-12.2.0.252_8848] [data-received] dataId=cloud-etl-dev.yml, group=DEFAULT_GROUP, tenant=muyu-cloud, md5=e8239cb55cb6d1a7a7813e708fea93d3, content=# spring配置
spring:
data:
redis:
host: ${redis.host}
port: ${redis.port}
pass..., type=yaml
16:50:07.795 [nacos.client.config.listener.task-0] INFO c.a.n.c.c.i.CacheData - [safeNotifyListener,480] - [fixed-muyu-cloud-12.2.0.252_8848] [notify-listener] task execute in nacos thread, dataId=cloud-etl-dev.yml, group=DEFAULT_GROUP,tenant=muyu-cloud, md5=e8239cb55cb6d1a7a7813e708fea93d3, listener=com.alibaba.cloud.nacos.refresh.NacosContextRefresher$1@7d359b7e
16:50:07.795 [nacos.client.config.listener.task-0] INFO c.a.n.c.c.i.CacheData - [run,420] - [fixed-muyu-cloud-12.2.0.252_8848] [notify-context] dataId=cloud-etl-dev.yml, group=DEFAULT_GROUP,tenant=muyu-cloud, md5=e8239cb55cb6d1a7a7813e708fea93d3
16:50:09.451 [nacos.client.config.listener.task-0] INFO c.a.n.c.c.i.CacheData - [run,451] - [fixed-muyu-cloud-12.2.0.252_8848] [notify-ok] dataId=cloud-etl-dev.yml, group=DEFAULT_GROUP,tenant=muyu-cloud, md5=e8239cb55cb6d1a7a7813e708fea93d3, listener=com.alibaba.cloud.nacos.refresh.NacosContextRefresher$1@7d359b7e ,job run cost=1656 millis.
16:51:39.262 [main] INFO c.m.e.s.DataSourcesApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
16:52:50.732 [main] INFO c.m.e.s.DataSourcesApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
16:52:52.449 [main] INFO c.d.f.s.ClassPathClientScanner - [processBeanDefinitions,153] - [Forest] Created Forest Client Bean with name 'nacosServiceRemote' and Proxy of 'com.muyu.common.nacos.remote.NacosServiceRemote' client interface
16:52:52.766 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:52:52.766 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
16:52:52.847 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:52:53.282 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
16:52:53.283 [Druid-ConnectionPool-Create-1424200964] INFO c.a.d.p.DruidAbstractDataSource - [setFailContinuous,1900] - {dataSource-1} failContinuous is true
16:52:53.284 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
16:54:46.186 [main] INFO c.m.e.s.DataSourcesApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
16:54:47.722 [main] INFO c.d.f.s.ClassPathClientScanner - [processBeanDefinitions,153] - [Forest] Created Forest Client Bean with name 'nacosServiceRemote' and Proxy of 'com.muyu.common.nacos.remote.NacosServiceRemote' client interface
16:54:48.021 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:54:48.021 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
16:54:48.103 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:54:50.103 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
16:54:50.105 [Druid-ConnectionPool-Create-1439915898] INFO c.a.d.p.DruidAbstractDataSource - [setFailContinuous,1900] - {dataSource-1} failContinuous is true
16:54:50.105 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
17:11:35.607 [main] INFO c.m.e.s.DataSourcesApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
17:11:37.130 [main] INFO c.d.f.s.ClassPathClientScanner - [processBeanDefinitions,153] - [Forest] Created Forest Client Bean with name 'nacosServiceRemote' and Proxy of 'com.muyu.common.nacos.remote.NacosServiceRemote' client interface
17:11:37.436 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
17:11:37.436 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
17:11:37.516 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
17:11:58.919 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
17:11:58.921 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
17:34:02.154 [main] INFO c.m.e.s.DataSourcesApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
17:34:03.664 [main] INFO c.d.f.s.ClassPathClientScanner - [processBeanDefinitions,153] - [Forest] Created Forest Client Bean with name 'nacosServiceRemote' and Proxy of 'com.muyu.common.nacos.remote.NacosServiceRemote' client interface
17:34:03.981 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
17:34:03.982 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
17:34:04.059 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
17:34:06.980 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
17:34:06.983 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]