master
Yueng 2024-09-02 20:10:35 +08:00
parent b12db85034
commit bb5b177cfd
7 changed files with 49692 additions and 4044 deletions

View File

@ -67,6 +67,12 @@ public class TableFie{
@TableField(exist = false)
private String dataField;
/**
*
*/
// @TableField(exist = false)
private String dataMapping;
public static TableFie customerBuild(TableFie tableFie, Supplier<TableFie> function) {
return TableFie.builder()
.id(tableFie.getId())
@ -77,6 +83,7 @@ public class TableFie{
.primarys(tableFie.getPrimarys())
.annotation(tableFie.getAnnotation())
.tableId(tableFie.getTableId())
.dataField(tableFie.getDataField())
.build();
}
@ -133,6 +140,8 @@ public class TableFie{
.primarys(tableFie.getPrimarys())
.annotation(tableFie.getAnnotation())
.tableId(tableFie.getTableId())
.dataField(tableFie.getDataField())
.build();
}
}

View File

@ -4,12 +4,18 @@ import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.extern.log4j.Log4j2;
import org.apache.commons.lang3.StringUtils;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
/**
* @Authoryang
@ -20,6 +26,7 @@ import java.util.ArrayList;
*/
@Data
@Builder
@Log4j2
@AllArgsConstructor
@NoArgsConstructor
@TableName("table_name")

View File

@ -2,6 +2,7 @@ package com.muyu.server.service.impl;
import com.alibaba.druid.pool.DruidDataSource;
import com.alibaba.druid.pool.DruidPooledConnection;
import com.alibaba.nacos.api.common.Constants;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.muyu.common.domain.*;
import com.muyu.common.domain.enums.DataType;
@ -17,6 +18,8 @@ import org.springframework.util.CollectionUtils;
import java.sql.*;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
/**
* @Authoryang
@ -106,45 +109,95 @@ public class DataRunNameServiceImpl implements DataRunNameService {
@Override
public List<DataName> getDataBaseTableName() {
//数据库名称查询
List<DataName> dataNameList = dataNameService.list().stream()
.map(DataName::dataNameBuild).toList();
//遍历获取数据数据库名称对象
dataNameList.forEach(dataName -> {
//判断getId不为空
if (StringUtils.isNotBlank(String.valueOf(dataName.getId()))) {
//在取数据数据遍历里获取表名称查询方法
List<TableNames> tableNamesList = tableRunNameService.list(new LambdaQueryWrapper<TableNames>()
.eq(TableNames::getDataId, dataName.getId()))
.stream()
.map(TableNames::tableNamesBuild)
.toList();
.stream()
.map(TableNames::tableNamesBuild)
.toList();
//判断tableNamesList查询数据为空直接返回
if (CollectionUtils.isEmpty(tableNamesList)) {
return;
}
//在每一次循环中创建一个新的集合
ArrayList<TableNames> namesArrayList = new ArrayList<>(tableNamesList);
dataName.setTableNames(namesArrayList);
List<TableNames> tableNames1 = dataName.getTableNames();
log.info("数据库表名称:{}",tableNames1);
if (CollectionUtils.isEmpty(tableNames1)) {
return;
}
tableNames1.forEach(tableName1 -> {
System.out.println(tableName1);
if (StringUtils.isNotBlank(String.valueOf(tableName1.getId()))) {
List<TableFie> tableFieList = tableFieldService.list(new LambdaQueryWrapper<TableFie>()
.eq(TableFie::getTableId, tableName1.getId()))
.stream()
.map(TableFie::tableFieBuild).toList();
System.out.println(tableFieList);
ArrayList<TableFie> fieArrayList = new ArrayList<>(tableFieList);
tableName1.setTableFie(fieArrayList);
}
});
//添加到数据库实体类集合字段上
dataName.setTableNames(namesArrayList);
//将添加好的实体类集合进行遍历操作
log.info("数据库表名称:{}",dataName.getTableNames());
if (CollectionUtils.isEmpty(dataName.getTableNames())) {return;}
//在内部封装方法
dataName.getTableNames().forEach(tableName1 -> {this.tableNameRun(tableName1,dataName);});
}
});
//返回所有数据
return dataNameList;
}
/**
*
* @param tableName1
* @param dataName
*/
public void tableNameRun(TableNames tableName1, DataName dataName) {
if (StringUtils.isNotBlank(String.valueOf(tableName1.getId()))) {
List<TableFie> tableFieList = tableFieldService.list(new LambdaQueryWrapper<TableFie>()
.eq(TableFie::getTableId, tableName1.getId()))
.stream()
.map(TableFie::tableFieBuild).toList();
log.info("字段类型名称集合:{}", tableFieList);
ArrayList<TableFie> fieArrayList = new ArrayList<>(tableFieList);
tableName1.setTableFie(fieArrayList);
//创建线程池
ExecutorService executorService = Executors.newFixedThreadPool(500);
List<DataValue> tableValue = this.findTableValue(String.valueOf(dataName.getId()), tableName1.getName());
// fieArrayList.stream().filter(item->item.getField().equals(tableValue.stream().filter(key -> key.getKey()!=null).toList()))
// .forEach(item->{
// item.setDataMapping(item.getType());
// });
fieArrayList.forEach(tableFy -> {
executorService.submit(
new Runnable() {
@Override
public void run() {
log.info("字段数据对象:{}", tableFy);
for (DataValue dataValue : tableValue) {
if (tableFy.getField().equals(dataValue.getKey())) {
tableFy.setDataMapping(dataValue.getType());
}
}
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
}
});
});
log.info("字段数据信息:{}", fieArrayList);
}
}
/**
*
* @para ID

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,916 @@
01:30:41.078 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 749 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:30:41.078 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 750 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:30:46.080 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:30:46.080 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:30:49.088 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 750 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:30:49.088 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 751 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:30:54.101 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:30:54.102 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:30:57.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 751 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:30:57.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 752 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:31:02.131 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:31:02.131 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:31:05.148 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 752 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:31:05.148 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 753 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:31:10.151 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:31:10.151 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:31:10.510 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:31:13.157 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 753 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:31:13.158 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 754 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:31:18.160 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:31:18.160 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:31:21.178 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 755 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:31:21.179 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 754 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:31:26.191 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:31:26.191 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:31:29.199 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 755 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:31:29.199 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 756 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:31:34.205 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:31:34.205 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:31:37.211 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 756 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:31:37.211 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 757 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:31:42.225 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:31:42.225 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:31:45.233 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 757 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:31:45.233 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 758 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:31:50.240 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:31:50.240 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:31:50.606 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:31:53.256 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 759 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:31:53.256 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 758 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:31:58.261 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:31:58.261 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:32:01.271 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 759 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:32:01.271 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 760 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:32:06.288 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:32:06.288 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:32:09.302 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 760 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:32:09.302 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 761 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:32:14.303 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:32:14.303 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:32:17.320 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 762 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:32:17.321 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 761 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:32:22.332 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:32:22.332 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:32:25.351 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 763 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:32:25.353 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 762 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:32:30.359 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:32:30.359 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:32:30.714 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:32:33.372 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 764 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:32:33.374 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 763 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:32:38.385 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:32:38.385 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:32:41.399 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 764 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:32:41.400 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 765 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:32:46.407 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:32:46.407 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:32:49.415 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 765 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:32:49.414 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 766 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:32:54.421 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:32:54.421 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:32:57.437 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 766 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:32:57.438 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 767 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:33:02.446 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:33:02.446 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:33:05.464 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 768 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:33:05.464 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 767 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:33:10.467 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:33:10.467 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:33:10.807 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:33:13.481 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 769 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:33:13.481 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 768 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:33:18.490 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:33:18.490 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:33:21.500 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 769 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:33:21.500 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 770 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:33:26.504 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:33:26.504 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:33:29.509 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 770 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:33:29.509 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 771 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:33:34.518 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:33:34.524 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:33:37.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 771 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:33:37.541 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 772 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:33:42.541 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:33:42.557 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:33:45.559 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 772 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:33:45.574 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 773 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:33:50.572 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:33:50.588 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:33:50.907 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:33:53.580 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 773 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:33:53.595 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 774 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:33:58.589 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:33:58.605 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:34:01.603 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 774 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:34:01.624 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 775 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:34:06.607 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:34:06.639 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:34:09.617 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 775 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:34:09.648 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 776 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:34:14.623 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:34:14.660 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:34:17.631 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 776 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:34:17.667 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 777 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:34:22.637 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:34:22.669 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:34:25.643 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 777 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:34:25.674 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 778 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:34:30.648 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:34:30.679 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:34:31.007 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:34:33.662 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 778 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:34:33.693 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 779 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:34:38.670 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:34:38.702 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:34:41.674 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 779 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:34:41.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 780 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:34:46.685 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:34:46.717 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:34:49.689 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 780 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:34:49.723 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 781 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:34:54.697 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:34:54.729 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:34:57.711 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 781 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:34:57.744 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 782 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:35:02.724 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:35:02.755 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:35:05.744 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 782 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:35:05.759 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 783 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:35:10.785 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:35:10.799 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:35:11.118 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:35:13.799 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 784 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:35:13.814 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 783 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:35:18.815 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:35:18.815 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:35:21.831 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 785 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:35:21.832 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 784 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:35:26.839 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:35:26.839 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:35:29.847 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 786 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:35:29.847 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 785 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:35:34.850 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:35:34.850 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:35:37.854 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 786 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:35:37.854 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 787 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:35:42.862 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:35:42.862 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:35:45.878 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 788 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:35:45.878 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 787 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:35:50.887 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:35:50.887 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:35:51.210 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:35:53.898 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 789 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:35:53.899 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 788 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:35:58.899 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:35:58.899 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:36:01.904 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 789 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:36:01.907 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 790 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:36:06.918 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:36:06.918 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:36:09.930 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 790 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:36:09.931 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 791 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:36:14.938 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:36:14.938 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:36:17.955 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 791 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:36:17.955 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 792 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:36:22.957 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:36:22.957 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:36:25.965 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 793 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:36:25.965 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 792 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:36:30.975 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:36:30.975 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:36:31.322 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:36:33.985 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 794 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:36:33.994 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 793 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:36:38.998 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:36:38.996 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:36:42.005 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 795 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:36:42.006 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 794 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:36:47.007 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:36:47.008 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:36:50.021 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 795 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:36:50.021 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 796 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:36:55.027 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:36:55.027 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:36:58.033 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 797 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:36:58.033 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 796 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:37:03.039 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:37:03.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:37:06.057 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 797 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:37:06.059 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 798 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:37:11.072 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:37:11.072 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:37:11.408 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:37:14.082 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 799 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:37:14.082 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 798 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:37:19.091 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:37:19.091 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:37:22.098 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 800 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:37:22.098 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 799 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:37:27.100 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:37:27.100 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:37:30.104 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 801 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:37:30.110 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 800 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:37:35.120 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:37:35.120 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:37:38.125 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 802 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:37:38.125 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 801 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:37:43.139 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:37:43.139 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:37:46.150 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 802 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:37:46.150 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 803 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:37:51.152 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:37:51.152 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:37:51.510 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:37:54.168 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 804 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:37:54.168 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 803 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:37:59.177 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:37:59.177 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:38:02.186 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 804 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:38:02.188 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 805 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:38:07.189 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:38:07.208 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:38:10.203 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 805 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:38:10.238 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 806 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:38:15.204 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:38:15.252 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:38:18.208 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 806 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:38:18.255 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 807 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:38:23.215 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:38:23.262 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:38:26.249 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 807 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:38:26.360 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 808 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:38:31.250 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:38:31.373 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:38:31.608 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:38:34.258 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 808 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:38:34.381 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 809 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:38:39.275 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:38:39.396 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:38:42.290 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 809 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:38:42.415 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 810 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:38:47.297 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:38:47.423 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:38:50.315 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 810 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:38:50.440 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 811 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:38:55.326 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:38:55.451 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:38:58.332 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 811 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:38:58.457 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 812 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:39:03.338 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:39:03.464 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:39:06.350 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 812 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:39:06.481 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 813 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:39:11.358 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:39:11.483 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:39:11.707 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:39:14.365 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 813 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:39:14.490 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 814 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:39:19.371 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:39:19.494 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:39:22.623 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 815 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:39:22.623 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 814 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:39:27.624 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:39:27.624 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:39:30.635 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 816 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:39:30.634 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 815 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:39:35.636 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:39:35.636 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:39:38.653 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 816 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:39:38.653 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 817 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:39:43.659 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:39:43.659 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:39:46.665 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 818 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:39:46.665 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 817 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:39:51.671 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:39:51.671 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:39:51.812 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:39:54.685 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 818 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:39:54.690 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 819 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:39:59.696 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:39:59.696 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:40:02.709 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 819 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:40:02.720 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 820 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:40:07.717 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:40:07.733 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:40:10.726 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 820 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:40:10.742 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 821 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:40:15.741 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:40:15.756 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:40:18.749 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 821 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:40:18.763 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 822 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:40:23.759 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:40:23.774 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:40:26.772 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 822 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:40:26.789 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 823 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:40:31.780 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:40:31.794 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:40:31.907 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:40:34.798 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 823 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:40:34.814 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 824 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:40:39.803 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:40:39.819 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:40:42.814 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 824 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:40:42.828 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 825 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:40:47.825 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:40:47.840 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:40:50.836 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 825 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:40:50.849 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 826 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:40:55.846 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:40:55.861 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:40:58.853 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 826 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:40:58.873 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 827 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:41:03.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:41:03.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:41:06.895 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 828 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:41:06.895 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 827 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:41:11.897 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:41:11.897 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:41:12.011 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:41:14.901 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 828 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:41:14.901 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 829 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:41:19.912 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:41:19.912 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:41:22.923 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 829 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:41:22.923 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 830 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:41:27.939 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:41:27.939 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:41:30.945 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 831 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:41:30.945 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 830 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:41:35.995 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:41:35.999 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:41:39.008 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 831 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:41:39.008 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 832 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:41:44.015 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:41:44.015 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:41:47.025 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 832 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:41:47.026 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 833 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:41:52.032 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:41:52.032 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:41:52.109 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:41:55.041 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 833 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:41:55.041 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 834 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:42:00.043 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:42:00.043 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:42:03.054 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 834 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:42:03.054 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 835 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:42:08.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:42:08.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:42:11.073 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 836 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:42:11.073 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 835 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:42:16.076 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:42:16.076 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:42:19.084 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 836 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:42:19.084 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 837 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:42:24.093 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:42:24.093 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:42:27.102 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 838 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:42:27.102 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 837 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:42:32.104 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:42:32.105 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:42:32.215 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:42:35.110 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 838 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:42:35.124 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 839 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:42:40.123 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:42:40.138 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:42:43.136 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 839 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:42:43.151 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 840 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:42:48.150 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:42:48.166 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:42:51.162 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 840 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:42:51.178 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 841 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:42:56.177 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:42:56.192 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:42:59.190 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 841 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:42:59.205 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 842 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:43:04.203 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:43:04.219 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:43:07.213 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 842 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:43:07.228 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 843 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:43:12.220 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:43:12.236 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:43:12.319 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:43:15.230 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 843 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:43:15.245 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 844 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:43:20.238 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:43:20.253 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:43:23.248 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 844 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:43:23.264 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 845 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:43:28.253 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:43:28.270 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:43:31.260 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 845 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:43:31.276 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 846 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:43:36.272 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:43:36.277 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:43:39.282 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 846 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:43:39.284 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 847 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:43:44.291 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:43:44.291 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:43:47.303 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 848 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:43:47.304 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 847 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:43:52.304 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:43:52.320 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:43:52.412 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:43:55.312 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 849 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:43:55.328 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 848 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:44:00.322 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:44:00.336 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:44:03.336 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 850 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:44:03.352 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 849 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:44:08.348 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:44:08.365 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:44:11.430 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 850 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:44:11.437 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 851 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:44:16.443 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:44:16.443 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:44:19.484 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Fail to connect server, after trying 852 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:44:19.484 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Fail to connect server, after trying 851 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown
01:44:24.491 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:44:24.491 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:44:24.788 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Success to connect a server [21.12.0.8:8848], connectionId = 1725126264312_21.12.0.11_62590
01:44:24.789 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1725109626171_21.12.0.11_62168
01:44:24.789 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725109626171_21.12.0.11_62168
01:44:24.789 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Try to reconnect to a new server, server is not appointed, will choose a random server.
01:44:24.789 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Notify disconnected event to listeners
01:44:24.789 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:44:24.790 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Notify connected event to listeners.
01:44:24.790 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
01:44:24.811 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Success to connect a server [21.12.0.8:8848], connectionId = 1725126264357_21.12.0.11_62589
01:44:24.811 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1725109626064_21.12.0.11_62167
01:44:24.811 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725109626064_21.12.0.11_62167
01:44:24.814 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
01:44:24.814 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:44:24.817 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Notify disconnected event to listeners
01:44:24.818 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] DisConnected,clear listen context...
01:44:24.818 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Notify connected event to listeners.
01:44:24.818 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Connected,notify listen context...
01:44:25.072 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Success to connect a server [21.12.0.8:8848], connectionId = 1725126264502_21.12.0.11_62596
01:44:25.072 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1725126264312_21.12.0.11_62590
01:44:25.072 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725126264312_21.12.0.11_62590
01:44:25.073 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Notify disconnected event to listeners
01:44:25.073 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7f026ac8-901b-47b3-a8cd-24b58be45a7c] Notify connected event to listeners.
01:44:25.073 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
01:44:25.099 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Success to connect a server [21.12.0.8:8848], connectionId = 1725126264640_21.12.0.11_62597
01:44:25.099 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1725126264357_21.12.0.11_62589
01:44:25.099 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725126264357_21.12.0.11_62589
01:44:25.099 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Notify disconnected event to listeners
01:44:25.099 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] DisConnected,clear listen context...
01:44:25.099 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Notify connected event to listeners.
01:44:25.099 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [38fcbbf8-3b7d-4aad-aeb3-f7a4f514b143_config-0] Connected,notify listen context...
01:44:26.025 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-property
01:44:32.522 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/<unresolved>:6379
01:44:32.660 [lettuce-nioEventLoop-4-3] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 21.12.0.10/<unresolved>:6379
02:03:47.632 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
02:03:47.634 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 deregistering service cloud-property with instance: Instance{instanceId='null', ip='192.168.1.101', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
02:03:47.697 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
02:03:47.701 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
02:03:47.701 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
02:03:47.702 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
02:03:47.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
02:03:47.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
02:03:47.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
02:03:47.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
02:03:47.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
02:03:47.706 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
02:03:47.706 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
02:03:47.707 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
02:03:47.707 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->7f026ac8-901b-47b3-a8cd-24b58be45a7c
02:03:47.707 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1601500e[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 2676]
02:03:47.707 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
02:03:47.708 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@20e04802[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
02:03:47.708 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725126264502_21.12.0.11_62596
02:03:47.708 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5360540e[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 3650]
02:03:47.709 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->7f026ac8-901b-47b3-a8cd-24b58be45a7c
02:03:47.710 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
02:03:47.713 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
02:03:47.714 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
02:03:47.723 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
02:03:47.736 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
02:03:47.756 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
02:03:47.757 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
02:03:47.757 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
10:46:42.473 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
10:46:45.228 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
10:46:45.229 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
10:46:45.305 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
10:46:50.104 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
10:46:50.106 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
10:46:50.106 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
10:46:51.055 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
10:46:55.814 [main] INFO c.m.r.RabbitConfig - [init,29] - rabbitMQ启动成功
10:46:58.918 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
10:46:58.918 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
10:46:58.919 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
10:46:58.922 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
10:46:58.928 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
10:46:58.928 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
10:46:59.281 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb
10:46:59.283 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb
10:46:59.283 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
10:46:59.283 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
10:46:59.283 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
10:46:59.284 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb] Try to connect to server on start up, server: {serverIp = '21.12.0.8', server main port = 8848}
10:46:59.284 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
10:46:59.534 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb] Success to connect to server [21.12.0.8:8848] on start up, connectionId = 1725158818251_21.12.0.11_63204
10:46:59.535 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
10:46:59.535 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb] Notify connected event to listeners.
10:46:59.536 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x000001b44b4d2150
10:46:59.536 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
10:46:59.537 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 registering service cloud-property with instance Instance{instanceId='null', ip='192.168.70.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
10:46:59.580 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-property 192.168.70.139:9701 register finished
10:47:00.762 [main] INFO c.m.s.IntegrationApplication - [logStarted,56] - Started IntegrationApplication in 24.359 seconds (process running for 27.573)
10:47:00.774 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
10:47:00.774 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
10:47:00.774 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
10:47:00.780 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property.yml, group=DEFAULT_GROUP, cnt=1
10:47:00.780 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property.yml, group=DEFAULT_GROUP
10:47:00.781 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
10:47:00.781 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property, group=DEFAULT_GROUP, cnt=1
10:47:00.781 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property, group=DEFAULT_GROUP
10:47:00.783 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property-dev.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
10:47:00.783 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property-dev.yml, group=DEFAULT_GROUP, cnt=1
10:47:00.783 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property-dev.yml, group=DEFAULT_GROUP
10:47:01.276 [RMI TCP Connection(4)-192.168.70.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
10:47:53.780 [http-nio-9701-exec-1] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-2} inited
10:49:12.023 [nacos-grpc-client-executor-21.12.0.8-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb] Receive server push request, request = ClientDetectionRequest, requestId = 212
10:49:12.023 [nacos-grpc-client-executor-21.12.0.8-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d8b6b725-5d75-4d85-8d87-14916a3ad60e_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 211
10:49:12.024 [nacos-grpc-client-executor-21.12.0.8-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d8b6b725-5d75-4d85-8d87-14916a3ad60e_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 211
10:49:12.024 [nacos-grpc-client-executor-21.12.0.8-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb] Ack server push request, request = ClientDetectionRequest, requestId = 212
10:54:27.149 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d8b6b725-5d75-4d85-8d87-14916a3ad60e_config-0] Server healthy check fail, currentConnection = 1725158800083_21.12.0.11_63121
10:54:27.149 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb] Server healthy check fail, currentConnection = 1725158818251_21.12.0.11_63204
10:54:27.150 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d8b6b725-5d75-4d85-8d87-14916a3ad60e_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
10:54:27.150 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb] Try to reconnect to a new server, server is not appointed, will choose a random server.
10:54:27.150 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
10:54:27.150 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
10:54:27.205 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
10:54:27.211 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 deregistering service cloud-property with instance: Instance{instanceId='null', ip='192.168.70.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
10:54:27.344 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb] Success to connect a server [21.12.0.8:8848], connectionId = 1725159266071_21.12.0.11_62483
10:54:27.345 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1725158818251_21.12.0.11_63204
10:54:27.345 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725158818251_21.12.0.11_63204
10:54:27.355 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb] Try to reconnect to a new server, server is not appointed, will choose a random server.
10:54:27.355 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb] Notify disconnected event to listeners
10:54:27.356 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
10:54:27.359 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb] Notify connected event to listeners.
10:54:27.359 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
10:54:27.436 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d8b6b725-5d75-4d85-8d87-14916a3ad60e_config-0] Success to connect a server [21.12.0.8:8848], connectionId = 1725159266093_21.12.0.11_62484
10:54:27.437 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d8b6b725-5d75-4d85-8d87-14916a3ad60e_config-0] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1725158800083_21.12.0.11_63121
10:54:27.437 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725158800083_21.12.0.11_63121
10:54:27.438 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d8b6b725-5d75-4d85-8d87-14916a3ad60e_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
10:54:27.438 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d8b6b725-5d75-4d85-8d87-14916a3ad60e_config-0] Notify disconnected event to listeners
10:54:27.438 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [d8b6b725-5d75-4d85-8d87-14916a3ad60e_config-0] DisConnected,clear listen context...
10:54:27.438 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
10:54:27.468 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d8b6b725-5d75-4d85-8d87-14916a3ad60e_config-0] Notify connected event to listeners.
10:54:27.469 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [d8b6b725-5d75-4d85-8d87-14916a3ad60e_config-0] Connected,notify listen context...
10:54:27.518 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
10:54:27.519 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
10:54:27.519 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
10:54:27.519 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
10:54:27.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
10:54:27.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
10:54:27.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
10:54:27.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
10:54:27.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
10:54:27.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
10:54:27.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
10:54:27.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
10:54:27.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb
10:54:27.522 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@20e8d560[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 19]
10:54:27.523 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
10:54:27.523 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7cce6e65[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
10:54:27.523 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725159266071_21.12.0.11_62483
10:54:27.524 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1f634b6b[Running, pool size = 21, active threads = 0, queued tasks = 0, completed tasks = 40]
10:54:27.524 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->ba0caed8-7ba1-4f70-a51d-4b1feb9bf7eb
10:54:27.526 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
10:54:27.530 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725159266071_21.12.0.11_62483
10:54:27.530 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
10:54:27.542 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
10:54:27.552 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
10:54:27.562 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
10:54:27.598 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
10:54:27.599 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
10:54:27.599 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
10:54:55.481 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
10:54:57.290 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
10:54:57.290 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
10:54:57.366 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
10:55:01.480 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
10:55:01.481 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
10:55:01.482 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
10:55:02.456 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
10:55:06.574 [main] INFO c.m.r.RabbitConfig - [init,29] - rabbitMQ启动成功
10:55:09.653 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
10:55:09.654 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
10:55:09.654 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
10:55:09.659 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
10:55:09.663 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
10:55:09.663 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
10:55:09.821 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 2d568b9a-c4b0-4c2e-9256-ef37008d9476
10:55:09.825 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->2d568b9a-c4b0-4c2e-9256-ef37008d9476
10:55:09.825 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2d568b9a-c4b0-4c2e-9256-ef37008d9476] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
10:55:09.826 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2d568b9a-c4b0-4c2e-9256-ef37008d9476] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
10:55:09.826 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2d568b9a-c4b0-4c2e-9256-ef37008d9476] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
10:55:09.827 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2d568b9a-c4b0-4c2e-9256-ef37008d9476] Try to connect to server on start up, server: {serverIp = '21.12.0.8', server main port = 8848}
10:55:09.827 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
10:55:10.022 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2d568b9a-c4b0-4c2e-9256-ef37008d9476] Success to connect to server [21.12.0.8:8848] on start up, connectionId = 1725159308782_21.12.0.11_62587
10:55:10.023 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2d568b9a-c4b0-4c2e-9256-ef37008d9476] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
10:55:10.023 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2d568b9a-c4b0-4c2e-9256-ef37008d9476] Notify connected event to listeners.
10:55:10.024 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2d568b9a-c4b0-4c2e-9256-ef37008d9476] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x000001ed354f0870
10:55:10.024 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
10:55:10.026 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 registering service cloud-property with instance Instance{instanceId='null', ip='192.168.70.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
10:55:10.084 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-property 192.168.70.139:9701 register finished
10:55:11.242 [main] INFO c.m.s.IntegrationApplication - [logStarted,56] - Started IntegrationApplication in 20.593 seconds (process running for 21.223)
10:55:11.250 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
10:55:11.250 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
10:55:11.251 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
10:55:11.256 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property.yml, group=DEFAULT_GROUP, cnt=1
10:55:11.256 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property.yml, group=DEFAULT_GROUP
10:55:11.257 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
10:55:11.257 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property, group=DEFAULT_GROUP, cnt=1
10:55:11.257 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property, group=DEFAULT_GROUP
10:55:11.258 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property-dev.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
10:55:11.259 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property-dev.yml, group=DEFAULT_GROUP, cnt=1
10:55:11.259 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property-dev.yml, group=DEFAULT_GROUP
10:55:11.715 [RMI TCP Connection(7)-192.168.70.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
10:56:15.685 [http-nio-9701-exec-4] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-2} inited
10:57:44.121 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
10:57:44.123 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 deregistering service cloud-property with instance: Instance{instanceId='null', ip='192.168.70.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
10:57:44.171 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
10:57:44.173 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
10:57:44.173 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
10:57:44.174 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
10:57:44.174 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
10:57:44.174 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
10:57:44.174 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
10:57:44.174 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
10:57:44.175 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
10:57:44.176 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
10:57:44.176 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
10:57:44.176 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
10:57:44.176 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->2d568b9a-c4b0-4c2e-9256-ef37008d9476
10:57:44.176 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@4743ee08[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 48]
10:57:44.176 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
10:57:44.176 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@202a9810[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
10:57:44.176 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725159308782_21.12.0.11_62587
10:57:44.183 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5b491939[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 38]
10:57:44.183 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->2d568b9a-c4b0-4c2e-9256-ef37008d9476
10:57:44.184 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
10:57:44.184 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
10:57:44.184 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
10:57:44.187 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
10:57:44.190 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
10:57:44.194 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
10:57:44.194 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
10:57:44.195 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
10:57:53.447 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
10:57:55.197 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
10:57:55.197 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
10:57:55.250 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
10:57:58.966 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
10:57:58.968 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
10:57:58.969 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
10:57:59.789 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
10:58:03.718 [main] INFO c.m.r.RabbitConfig - [init,29] - rabbitMQ启动成功
10:58:06.753 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
10:58:06.754 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
10:58:06.755 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
10:58:06.762 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
10:58:06.766 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
10:58:06.767 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
10:58:06.958 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 051f691d-1a56-47ee-adeb-2522fe442955
10:58:06.960 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->051f691d-1a56-47ee-adeb-2522fe442955
10:58:06.960 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [051f691d-1a56-47ee-adeb-2522fe442955] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
10:58:06.960 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [051f691d-1a56-47ee-adeb-2522fe442955] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
10:58:06.960 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [051f691d-1a56-47ee-adeb-2522fe442955] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
10:58:06.960 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [051f691d-1a56-47ee-adeb-2522fe442955] Try to connect to server on start up, server: {serverIp = '21.12.0.8', server main port = 8848}
10:58:06.961 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
10:58:07.370 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [051f691d-1a56-47ee-adeb-2522fe442955] Success to connect to server [21.12.0.8:8848] on start up, connectionId = 1725159486020_21.12.0.11_62894
10:58:07.370 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [051f691d-1a56-47ee-adeb-2522fe442955] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
10:58:07.370 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [051f691d-1a56-47ee-adeb-2522fe442955] Notify connected event to listeners.
10:58:07.371 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [051f691d-1a56-47ee-adeb-2522fe442955] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x0000022f2a4f2770
10:58:07.371 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
10:58:07.373 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 registering service cloud-property with instance Instance{instanceId='null', ip='192.168.70.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
10:58:07.432 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-property 192.168.70.139:9701 register finished
10:58:08.592 [main] INFO c.m.s.IntegrationApplication - [logStarted,56] - Started IntegrationApplication in 19.825 seconds (process running for 20.431)
10:58:08.600 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
10:58:08.601 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
10:58:08.601 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
10:58:08.606 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property.yml, group=DEFAULT_GROUP, cnt=1
10:58:08.606 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property.yml, group=DEFAULT_GROUP
10:58:08.606 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
10:58:08.606 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property, group=DEFAULT_GROUP, cnt=1
10:58:08.607 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property, group=DEFAULT_GROUP
10:58:08.608 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property-dev.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
10:58:08.608 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property-dev.yml, group=DEFAULT_GROUP, cnt=1
10:58:08.608 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property-dev.yml, group=DEFAULT_GROUP
10:58:08.822 [RMI TCP Connection(4)-192.168.70.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
10:58:21.912 [http-nio-9701-exec-1] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-2} inited
10:58:30.066 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:主键
10:58:34.609 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:表名
10:58:34.756 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:ip地址
10:58:34.875 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:端口号地址
10:58:37.760 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:接入源名称
10:58:37.952 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:数据来源系统名称
10:58:38.142 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:数据库名称
10:58:38.254 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:数据接入类型
10:58:38.391 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:连接用户账号
10:58:38.566 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:链接密码
10:58:38.688 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:是否初始化
10:58:38.811 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:备注
10:58:38.929 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:数据连接参数
10:58:39.057 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:初始连接数量
10:58:39.169 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:最大连接数量
10:58:39.275 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:最大等待时间
10:58:39.386 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:最大等待次数
10:58:39.526 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:主键
10:58:39.692 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:表名
10:58:39.851 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:ip地址
10:58:39.953 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:端口号地址
10:58:40.046 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:接入源名称
10:58:40.150 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:数据来源系统名称
10:58:40.258 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:数据库名称
10:58:40.352 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:数据接入类型
10:58:40.488 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:连接用户账号
10:58:40.607 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:链接密码
10:58:40.709 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:是否初始化
10:58:40.806 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:备注
10:58:40.922 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:数据连接参数
10:58:41.070 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:初始连接数量
10:58:41.210 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:最大连接数量
10:58:41.311 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:最大等待时间
10:58:41.428 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:最大等待次数
11:00:12.334 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
11:00:12.335 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 deregistering service cloud-property with instance: Instance{instanceId='null', ip='192.168.70.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
11:00:12.462 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
11:00:12.464 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
11:00:12.464 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
11:00:12.464 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
11:00:12.465 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
11:00:12.465 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
11:00:12.465 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
11:00:12.466 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
11:00:12.466 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
11:00:12.466 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
11:00:12.467 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
11:00:12.467 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
11:00:12.468 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->051f691d-1a56-47ee-adeb-2522fe442955
11:00:12.468 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@2af0322[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 41]
11:00:12.469 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
11:00:12.469 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@41fec19[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
11:00:12.469 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725159486020_21.12.0.11_62894
11:00:12.477 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@fd2ae6b[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 30]
11:00:12.477 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->051f691d-1a56-47ee-adeb-2522fe442955
11:00:12.478 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
11:00:12.478 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
11:00:12.478 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
11:00:12.482 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
11:00:12.485 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
11:00:12.492 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
11:00:12.493 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
11:00:12.493 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
11:04:40.400 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
11:04:42.160 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
11:04:42.160 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
11:04:42.213 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
11:04:48.843 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
11:04:48.844 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
11:04:48.844 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
11:04:49.702 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
11:04:53.684 [main] INFO c.m.r.RabbitConfig - [init,29] - rabbitMQ启动成功
11:04:56.774 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
11:04:56.774 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
11:04:56.774 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
11:04:56.778 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
11:04:56.782 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
11:04:56.783 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
11:04:56.966 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 35729462-4f64-428b-9d01-9baadc773a22
11:04:56.969 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->35729462-4f64-428b-9d01-9baadc773a22
11:04:56.970 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [35729462-4f64-428b-9d01-9baadc773a22] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
11:04:56.970 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [35729462-4f64-428b-9d01-9baadc773a22] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
11:04:56.970 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [35729462-4f64-428b-9d01-9baadc773a22] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
11:04:56.971 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [35729462-4f64-428b-9d01-9baadc773a22] Try to connect to server on start up, server: {serverIp = '21.12.0.8', server main port = 8848}
11:04:56.971 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
11:04:57.498 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [35729462-4f64-428b-9d01-9baadc773a22] Success to connect to server [21.12.0.8:8848] on start up, connectionId = 1725159895970_21.12.0.11_63616
11:04:57.499 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [35729462-4f64-428b-9d01-9baadc773a22] Notify connected event to listeners.
11:04:57.499 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [35729462-4f64-428b-9d01-9baadc773a22] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:04:57.499 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
11:04:57.499 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [35729462-4f64-428b-9d01-9baadc773a22] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x000001a4ad4f0228
11:04:57.502 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 registering service cloud-property with instance Instance{instanceId='null', ip='192.168.70.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
11:04:57.606 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-property 192.168.70.139:9701 register finished
11:04:58.786 [main] INFO c.m.s.IntegrationApplication - [logStarted,56] - Started IntegrationApplication in 24.747 seconds (process running for 25.895)
11:04:58.794 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
11:04:58.794 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
11:04:58.795 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
11:04:58.801 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property.yml, group=DEFAULT_GROUP, cnt=1
11:04:58.801 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property.yml, group=DEFAULT_GROUP
11:04:58.803 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
11:04:58.803 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property, group=DEFAULT_GROUP, cnt=1
11:04:58.803 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property, group=DEFAULT_GROUP
11:04:58.804 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property-dev.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
11:04:58.804 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property-dev.yml, group=DEFAULT_GROUP, cnt=1
11:04:58.804 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property-dev.yml, group=DEFAULT_GROUP
11:04:58.952 [RMI TCP Connection(4)-192.168.70.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
11:05:32.789 [http-nio-9701-exec-1] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-2} inited
11:05:34.864 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [findTableValue,187] - 字段备注:主键
11:07:34.901 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
11:07:34.901 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 deregistering service cloud-property with instance: Instance{instanceId='null', ip='192.168.70.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
11:07:34.963 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
11:07:34.965 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
11:07:34.965 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
11:07:34.966 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
11:07:34.966 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
11:07:34.966 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
11:07:34.966 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
11:07:34.966 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
11:07:34.967 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
11:07:34.967 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
11:07:34.967 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
11:07:34.968 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
11:07:34.968 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->35729462-4f64-428b-9d01-9baadc773a22
11:07:34.968 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@5c5fb221[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 51]
11:07:34.968 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
11:07:34.969 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@60742926[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
11:07:34.969 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725159895970_21.12.0.11_63616
11:07:34.975 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5c3482d9[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 37]
11:07:34.975 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->35729462-4f64-428b-9d01-9baadc773a22
11:07:34.975 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
11:07:34.975 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
11:07:34.977 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
11:07:34.980 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
11:07:34.983 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
11:07:34.990 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
11:07:34.990 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
11:07:34.990 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
11:07:44.307 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
11:07:46.100 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
11:07:46.101 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
11:07:46.154 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
11:07:51.293 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
11:07:51.293 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
11:07:51.293 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
11:07:52.198 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
11:07:56.136 [main] INFO c.m.r.RabbitConfig - [init,29] - rabbitMQ启动成功
11:07:59.128 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
11:07:59.128 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
11:07:59.129 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
11:07:59.137 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
11:07:59.142 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
11:07:59.142 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
11:07:59.311 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 3631029c-336e-44ee-9b7f-751c8d1690dd
11:07:59.315 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->3631029c-336e-44ee-9b7f-751c8d1690dd
11:07:59.315 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3631029c-336e-44ee-9b7f-751c8d1690dd] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
11:07:59.315 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3631029c-336e-44ee-9b7f-751c8d1690dd] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
11:07:59.315 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3631029c-336e-44ee-9b7f-751c8d1690dd] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
11:07:59.315 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3631029c-336e-44ee-9b7f-751c8d1690dd] Try to connect to server on start up, server: {serverIp = '21.12.0.8', server main port = 8848}
11:07:59.315 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
11:07:59.659 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3631029c-336e-44ee-9b7f-751c8d1690dd] Success to connect to server [21.12.0.8:8848] on start up, connectionId = 1725160078239_21.12.0.11_61991
11:07:59.659 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3631029c-336e-44ee-9b7f-751c8d1690dd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:07:59.660 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3631029c-336e-44ee-9b7f-751c8d1690dd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x0000019e014f2150
11:07:59.659 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3631029c-336e-44ee-9b7f-751c8d1690dd] Notify connected event to listeners.
11:07:59.660 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
11:07:59.662 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 registering service cloud-property with instance Instance{instanceId='null', ip='192.168.70.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
11:07:59.759 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-property 192.168.70.139:9701 register finished
11:08:00.910 [main] INFO c.m.s.IntegrationApplication - [logStarted,56] - Started IntegrationApplication in 21.44 seconds (process running for 22.07)
11:08:00.918 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
11:08:00.919 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
11:08:00.919 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
11:08:00.925 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property.yml, group=DEFAULT_GROUP, cnt=1
11:08:00.925 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property.yml, group=DEFAULT_GROUP
11:08:00.925 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
11:08:00.926 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property, group=DEFAULT_GROUP, cnt=1
11:08:00.926 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property, group=DEFAULT_GROUP
11:08:00.927 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property-dev.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
11:08:00.927 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property-dev.yml, group=DEFAULT_GROUP, cnt=1
11:08:00.927 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property-dev.yml, group=DEFAULT_GROUP
11:08:01.543 [RMI TCP Connection(3)-192.168.70.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
11:08:19.259 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
11:08:19.260 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 deregistering service cloud-property with instance: Instance{instanceId='null', ip='192.168.70.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
11:08:19.350 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
11:08:19.352 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
11:08:19.352 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
11:08:19.352 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
11:08:19.352 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
11:08:19.352 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
11:08:19.352 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
11:08:19.352 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
11:08:19.352 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
11:08:19.352 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
11:08:19.353 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
11:08:19.353 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
11:08:19.353 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->3631029c-336e-44ee-9b7f-751c8d1690dd
11:08:19.353 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@32c0c52b[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 6]
11:08:19.353 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
11:08:19.353 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@27c6725e[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
11:08:19.353 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725160078239_21.12.0.11_61991
11:08:19.356 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@58449a3f[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 12]
11:08:19.356 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->3631029c-336e-44ee-9b7f-751c8d1690dd
11:08:19.356 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
11:08:19.356 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
11:08:19.356 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
11:08:19.358 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
11:08:19.359 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
11:08:19.364 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
11:08:19.364 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
11:08:19.365 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye

File diff suppressed because it is too large Load Diff