初始化

master
面包骑士 2024-09-09 17:01:03 +08:00
commit e092dd3012
104 changed files with 164882 additions and 0 deletions

36
.gitignore vendored 100644
View File

@ -0,0 +1,36 @@
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
### IntelliJ IDEA ###
.idea
logs
*.iws
*.iml
*.ipr
### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/
### Mac OS ###
.DS_Store

15
Dockerfile 100644
View File

@ -0,0 +1,15 @@
FROM anolis-registry.cn-zhangjiakou.cr.aliyuncs.com/openanolis/dragonwell:17.0.4.0.4.8-standard-ga-8.6
#定义时区参数
ENV TZ=Asia/Shanghai
#设置时区
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo '$TZ' > /etc/timezone
VOLUME ["/home/logs/etl-datasource-server","/home/uploadPath"]
#拷贝执行jar包文件
COPY ./etl-datasource-server/target/etl-datasource-server.jar /home/app.jar
#构建启动命令
ENTRYPOINT ["java","-Dfile.encoding=utf-8","-jar"]
CMD ["/home/app.jar"]

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.muyu</groupId>
<artifactId>cloud-etl-datasource</artifactId>
<version>3.6.5</version>
</parent>
<artifactId>etl-datasource-client</artifactId>
<version>3.6.5</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.muyu</groupId>
<artifactId>etl-datasource-remote</artifactId>
<version>3.6.5</version>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,36 @@
package com.muyu.etl.data.access.data.access.client;
import com.muyu.etl.data.access.data.access.client.config.DatabaseConnectionPool;
import com.zaxxer.hikari.HikariDataSource;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import java.sql.Connection;
import java.sql.SQLException;
/**
* @Author: DongZeLiang
* @date: 2024/9/9
* @Description:
* @Version: 1.0
*/
@Component
public class DataSourcePool {
@Autowired
private DatabaseConnectionPool databaseConnectionPool;
public HikariDataSource getDataSource(Long dataSourceId) {
return databaseConnectionPool.get(dataSourceId);
}
public void returnConnection (Connection connection) {
try {
connection.close();
} catch (SQLException e) {
throw new RuntimeException(e);
}
}
}

View File

@ -0,0 +1,25 @@
package com.muyu.etl.data.access.data.access.client.basic;
import com.muyu.etl.basic.DataAccessBasic;
import com.muyu.etl.data.access.data.access.client.DataSourcePool;
import org.springframework.beans.factory.annotation.Autowired;
/**
* @Author: DongZeLiang
* @date: 2024/8/28
* @Description:
* @Version: 1.0
*/
public abstract class BaseDataAbsSource implements DataAccessBasic {
@Autowired
private DataSourcePool dataSourcePool;
public void setQuery(QueryBasic baseQuery){
QueryBasicHandler.set(baseQuery);
}
public <T> T getQuery(){
return QueryBasicHandler.get();
}
}

View File

@ -0,0 +1,17 @@
package com.muyu.etl.data.access.data.access.client.basic;
import com.muyu.common.core.domain.Result;
import com.muyu.etl.data.access.domain.resp.DataSourceResp;
import java.util.List;
/**
* @Author: DongZeLiang
* @date: 2024/9/9
* @Description:
* @Version: 1.0
*/
public interface DataSourceConfig {
public List<DataSourceResp> getIsUseDataSourceList();
}

View File

@ -0,0 +1,21 @@
package com.muyu.etl.data.access.data.access.client.basic;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
/**
* @Author: DongZeLiang
* @date: 2024/8/28
* @Description:
* @Version: 1.0
*/
@Data
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
public class QueryBasic {
private Long dataSourceId;
}

View File

@ -0,0 +1,25 @@
package com.muyu.etl.data.access.data.access.client.basic;
/**
* @Author: DongZeLiang
* @date: 2024/8/28
* @Description:
* @Version: 1.0
*/
public class QueryBasicHandler {
private static final ThreadLocal<QueryBasic> BASE_QUERY_THREAD_LOCAL = new ThreadLocal<>();
public static void set(QueryBasic queryBasic){
BASE_QUERY_THREAD_LOCAL.set(queryBasic);
}
public static <T> T get(){
return (T) BASE_QUERY_THREAD_LOCAL.get();
}
public static void remove(){
BASE_QUERY_THREAD_LOCAL.remove();
}
}

View File

@ -0,0 +1,27 @@
package com.muyu.etl.data.access.data.access.client.basic.impl;
import com.muyu.common.core.domain.Result;
import com.muyu.etl.data.access.data.access.client.basic.DataSourceConfig;
import com.muyu.etl.data.access.domain.resp.DataSourceResp;
import com.muyu.etl.data.access.remote.RemoteDataSourceService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* @Author: DongZeLiang
* @date: 2024/9/9
* @Description:
* @Version: 1.0
*/
@Service
public class DataSourceConfigImpl implements DataSourceConfig {
@Autowired
private RemoteDataSourceService remoteDataSourceService;
@Override
public List<DataSourceResp> getIsUseDataSourceList () {
return remoteDataSourceService.getIsUseDataSourceList().getData();
}
}

View File

@ -0,0 +1,25 @@
package com.muyu.etl.data.access.data.access.client.config;
import org.springframework.boot.ApplicationArguments;
import org.springframework.boot.ApplicationRunner;
import org.springframework.stereotype.Component;
import javax.annotation.Resource;
/**
* @Author WangXin
* @Data 2024/9/8
* @Description 线
* @Version 1.0.0
*/
@Component
public class DataBaseInitPool implements ApplicationRunner {
@Resource
private DatabaseConnectionPool databaseConnectionPool;
@Override
public void run(ApplicationArguments args) throws Exception {
databaseConnectionPool.init();
}
}

View File

@ -0,0 +1,107 @@
package com.muyu.etl.data.access.data.access.client.config;
import com.muyu.common.core.domain.Result;
import com.muyu.etl.data.access.data.access.client.basic.DataSourceConfig;
import com.muyu.etl.data.access.domain.resp.DataSourceResp;
import com.muyu.etl.data.access.remote.RemoteDataSourceService;
import com.zaxxer.hikari.HikariConfig;
import com.zaxxer.hikari.HikariDataSource;
import lombok.extern.log4j.Log4j2;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.List;
import java.util.concurrent.ConcurrentHashMap;
/**
* @Author WangXin
* @Data 2024/9/6
* @Description
* @Version 1.0.0
*/
@Log4j2
@Component
public class DatabaseConnectionPool {
/**
*
*/
private final ConcurrentHashMap<Long, HikariDataSource> map = new ConcurrentHashMap<>();
@Autowired
private DataSourceConfig dataSourceConfig;
/**
*
*
* @param dataSourceResp
*/
public void initialize (DataSourceResp dataSourceResp) {
HikariConfig config = new HikariConfig();
config.setDriverClassName(dataSourceResp.getDriverName());
config.setJdbcUrl("jdbc:mysql://" + dataSourceResp.getDatabaseUrl() + ":" + dataSourceResp.getDatabasePost() + "/" + dataSourceResp.getDatabaseName() + "?" + dataSourceResp.getDatabaseFormName());
config.setUsername(dataSourceResp.getUserName());
config.setPassword(dataSourceResp.getUserPwd());
config.setMaximumPoolSize(dataSourceResp.getInitCount());
config.addDataSourceProperty("cachePrepStmts", "true");
map.putIfAbsent(dataSourceResp.getId(), new HikariDataSource(config));
}
/**
*
*/
public void init () {
log.info("初始化连接池开始……………………");
long startTime = System.currentTimeMillis();
List<DataSourceResp> dataSourceRespList = dataSourceConfig.getIsUseDataSourceList();
log.info("查询所有可用连接池配置:{}个,连接池名称:{}", dataSourceRespList.size(), dataSourceRespList.stream().map(DataSourceResp::getDatabaseName).toList());
for (DataSourceResp dataSourceResp : dataSourceRespList) {
log.info("开始初始化:[{}]连接", dataSourceResp.getDatabaseName());
initialize(dataSourceResp);
log.info("完成初始化:[{}]连接", dataSourceResp.getDatabaseName());
}
log.info("初始化连接池结束共计耗时:{}MS……………………", System.currentTimeMillis() - startTime);
}
/**
*
*
* @param id id
*
* @return HikariDataSource
*/
public HikariDataSource get (Long id) {
if (map.get(id) == null) {
throw new RuntimeException("请重新初始化数据源!!!");
}
return map.get(id);
}
/**
*
*
* @param connection
*/
public void returnConnection (Connection connection, HikariDataSource hikariDataSource) {
try {
if (connection != null) {
connection.close();
}
} catch (SQLException e) {
throw new RuntimeException(e);
}
}
public Connection getConn (HikariDataSource hikariDataSource) {
Connection conn = null;
try {
conn = hikariDataSource.getConnection();
} catch (SQLException e) {
throw new RuntimeException(e);
}
return conn;
}
}

View File

@ -0,0 +1,180 @@
package com.muyu.etl.data.access.data.access.client.mysql;
import com.muyu.common.core.domain.Result;
import com.muyu.etl.data.access.data.access.client.DataSourcePool;
import com.muyu.etl.data.access.data.access.client.basic.BaseDataAbsSource;
import com.muyu.etl.domain.DataStructure;
import com.muyu.etl.enums.DataType;
import com.muyu.etl.scope.TaskScopeConfig;
import com.zaxxer.hikari.HikariDataSource;
import lombok.extern.log4j.Log4j2;
import org.springframework.stereotype.Service;
import java.sql.*;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
/**
* @Author: DongZeLiang
* @date: 2024/8/28
* @Description: mysql
* @Version: 1.0
*/
@Log4j2
@Service("mysql-data-source")
public class MySqlDataSource extends BaseDataAbsSource {
private final DataSourcePool dataSourcePool;
public MySqlDataSource (DataSourcePool dataSourcePool) {
super();
this.dataSourcePool = dataSourcePool;
}
/**
*
* @return
*/
public Result getCount(){
MySqlQuery query = getQuery();
Connection conn = null;
HikariDataSource hikariDataSource = dataSourcePool.getDataSource(query.getDataSourceId());
try {
conn = hikariDataSource.getConnection();
Statement statement = conn.createStatement();
ResultSet resultSet = statement.executeQuery(query.getSql());
if (resultSet.next()) {
return Result.success(resultSet.getInt(1));
}
} catch (SQLException e) {
throw new RuntimeException(e);
}finally {
dataSourcePool.returnConnection(conn);
}
return Result.success(0);
}
/**
*
* @return
*/
public Result addTargetDatabase(){
MySqlQuery query = getQuery();
Connection connection = null;
HikariDataSource hikariDataSource = dataSourcePool.getDataSource(query.getDataSourceId());
try {
Connection conn = hikariDataSource.getConnection();
PreparedStatement preparedStatement = conn.prepareStatement(query.getSql());
return Result.success(preparedStatement.executeUpdate());
} catch (SQLException e) {
throw new RuntimeException(e);
}finally {
dataSourcePool.returnConnection(connection);
}
}
/**
*
* @return
*/
@Override
public DataStructure getDataStructure () {
MySqlQuery query = getQuery();
Connection connection = null;
String sql = query.getSql();
Map<String, Object> queryParams = query.getParams();
log.info(sql);
log.info(queryParams);
try {
PreparedStatement preparedStatement = connection.prepareStatement(sql);
ResultSet resultSet = preparedStatement.getResultSet();
if(resultSet.next()){
DataStructure.builder()
.key(resultSet.getCursorName())
.label("")
.value(resultSet.getObject(resultSet.getCursorName(), String.class))
.type(DataType.STRING);
}
} catch (SQLException e) {
throw new RuntimeException(e);
}
return null;
}
/**
*
* @return
*/
@Override
public DataStructure[] getRow () {
return new DataStructure[0];
}
/**
*
* @return
*/
@Override
public DataStructure[][] getRows () {
ConcurrentHashMap<Integer, DataStructure> map = new ConcurrentHashMap<>();
MySqlQuery query = getQuery();
//初始化一个列表,用于存储数据值对象
DataStructure[][] rows = null;
HikariDataSource hikariDataSource = dataSourcePool.getDataSource(query.getDataSourceId());
Connection conn = null;
try {
conn = hikariDataSource.getConnection();
//准备SQL查询
Statement statement = conn.createStatement();
ResultSet resultSet = statement.executeQuery(query.getSql());
resultSet.afterLast();
rows = new DataStructure[resultSet.getRow()][0];
resultSet.beforeFirst();
//获取元数据
ResultSetMetaData metaData = resultSet.getMetaData();
//获取列的数量
int columnCount = metaData.getColumnCount();
//遍历每一行数据
while (resultSet.next()) {
rows[resultSet.getRow()] = new DataStructure[columnCount];
// 提交任务给线程池
for (int i = 1; i <= columnCount; i++) {
if (resultSet.isFirst()){
String columnTypeName = metaData.getColumnTypeName(i);
DatabaseMetaData metaDataTwo = conn.getMetaData();
ResultSet columns = metaDataTwo.getColumns(null, null, metaData.getTableName(i), metaData.getColumnName(i));
String remarks = null;
while (columns.next()) {
remarks = columns.getString("REMARKS");
}
DataStructure dataStructure = DataStructure.builder()
.key(metaData.getColumnName(i))
.label(remarks)
.value(resultSet.getObject(i, DataType.getTargetClass(columnTypeName)))
.type(DataType.getDataType(columnTypeName))
.build();
rows[resultSet.getRow()][i] = dataStructure;
map.put(i, dataStructure);
}else {
DataStructure dataStructure = DataStructure.builder()
.key(metaData.getColumnName(i))
.label(map.get(i).getLabel())
.value(resultSet.getObject(i, map.get(i).getType().getTargetType()))
.type(map.get(i).getType())
.build();
rows[resultSet.getRow()][i] = dataStructure;
}
}
}
}catch (Exception e) {
throw new RuntimeException(e);
}finally {
dataSourcePool.returnConnection(conn);
}
return rows;
}
}

View File

@ -0,0 +1,28 @@
package com.muyu.etl.data.access.data.access.client.mysql;
import com.muyu.etl.data.access.data.access.client.basic.QueryBasic;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
import java.util.Map;
/**
* @Author: DongZeLiang
* @date: 2024/8/28
* @Description: mysql
* @Version: 1.0
*/
@EqualsAndHashCode(callSuper = true)
@Data
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
public class MySqlQuery extends QueryBasic {
private String sql;
private Map<String, Object> params;
}

View File

@ -0,0 +1,3 @@
com.muyu.etl.data.access.data.access.client.DataSourcePool
com.muyu.etl.data.access.data.access.client.mysql.MySqlDataSource
com.muyu.etl.data.access.data.access.client.config.DatabaseConnectionPool

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.muyu</groupId>
<artifactId>cloud-etl-datasource</artifactId>
<version>3.6.5</version>
</parent>
<artifactId>etl-datasource-common</artifactId>
<version>3.6.5</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.muyu</groupId>
<artifactId>cloud-etl-common</artifactId>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>3.5.1</version>
</dependency>
<dependency>
<groupId>com.muyu</groupId>
<artifactId>cloud-common-system</artifactId>
</dependency>
<dependency>
<groupId>com.muyu</groupId>
<artifactId>cloud-common-security</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,43 @@
package com.muyu.etl.data.access.contains;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/27 15:19
* @
*/
public class Constants {
public final static String[] SQL_DATE_TIME_TYPE = new String[]{"datetime", "timestamp","DATETIME","TIMESTAMP"};
public final static String[] SQL_DATE_TYPE = new String[]{"date","DATE"};
public final static String[] SQL_DECIMAL_TYPE = new String[]{"decimal", "double", "float","DECIMAL","DOUBLE","FLOAT"};
public final static String[] SQL_STRING_TYPE = new String[]{"char", "varchar", "text", "mediumtext", "longtext", "longblob","CHAR","VARCHAR","TEXT","MEDIUMTEXT","LONGTEXT","LONGBLOB"};
public final static String[] SQL_INTEGER_TYPE = new String[]{"int", "tinyint","INT","TINYINT"};
public final static String[] SQL_LONG_TYPE = new String[]{"bigint","BIGINT"};
public final static String JAVA_STRING_TYPE = "String";
public final static String JAVA_INTEGER_TYPE = "Integer";
public final static String JAVA_DATE_TYPE = "Date";
public static final String DRIVERNAME ="com.mysql.cj.jdbc.Driver";
public final static String JAVA_BIG_DECIMAL_TYPE = "BigDecimal";
public final static String JAVA_LONG_TYPE = "Long";
public final static String MYSQL = "Mysql";
public final static String REDIS = "Redis";
public final static Long PARENTID =0L;
}

View File

@ -0,0 +1,83 @@
package com.muyu.etl.data.access.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.muyu.common.core.annotation.Excel;
import com.muyu.common.core.web.domain.BaseEntity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/28 19:07
* @
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
@SuperBuilder
@EqualsAndHashCode(callSuper = true)
@TableName(value ="data_analysis",autoResultMap = true)
public class DataAnalysis extends BaseEntity {
private static final long serialVersionUID = 1L;
/** 主键 */
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/** 表id */
@Excel(name = "表id")
private Long tableId;
/** 字段名称 */
@Excel(name = "字段名称")
private String columnName;
/** 字段注释 */
@Excel(name = "字段注释")
private String columnRemark;
/** 是否主键 'Y'是主键 'N'不是主键 */
@Excel(name = "是否主键 'Y'是主键 'N'不是主键")
private String isPrimary;
/** 数据类型 */
@Excel(name = "数据类型")
private String columnType;
/** 映射类型 */
@Excel(name = "映射类型")
private String javaType;
/** 字段长度 */
@Excel(name = "字段长度")
private String columnLength;
/** 小数位数 */
@Excel(name = "小数位数")
private String columnDecimals;
/** 是否为空 'Y'是 'N'不是 */
@Excel(name = "是否为空 'Y'是 'N'不是")
private String isNull;
/** 默认值 */
@Excel(name = "默认值")
private String defaultValue;
/** 是否字典 'Y'是 'N'不是 */
@Excel(name = "是否字典 'Y'是 'N'不是")
private String isDictionary;
/** 映射字典 */
@Excel(name = "映射字典")
private String dictionaryTable;
}

View File

@ -0,0 +1,148 @@
package com.muyu.etl.data.access.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.muyu.common.core.web.domain.BaseEntity;
import com.muyu.etl.data.access.domain.req.DataSourceUpdReq;
import com.muyu.etl.data.access.pool.base.BaseConfig;
import jakarta.validation.constraints.NotEmpty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/19 19:04
* @
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
@SuperBuilder
@EqualsAndHashCode(callSuper = true)
@TableName(value = "etl_database_source",autoResultMap = true)
public class DataSource extends BaseEntity {
/**
*
*/
@TableId(value = "id",type = IdType.AUTO)
private Long id;
/**
* mysql
*/
@NotEmpty(message = "数据源类型不可为空")
private String databaseType;
/**
* jdbc:mysql://localhost:3306/dbname?useUnicode=true&serverTimezone=Asia/Shanghai
*/
private String databaseFormName;
/**
*IP 127.0.0.1
*/
@NotEmpty(message = "数据来源IP 不可为空")
private String databaseUrl;
/**
* 3306
*/
@NotEmpty(message = "来源地址端口号不可为空")
private String databasePost;
/**
* cloud-server
*/
@NotEmpty(message = "数据库名称不可为空")
private String databaseName;
/**
* root
*/
@NotEmpty(message = "数据库登录名不可为空")
private String userName;
/**
* 123
*/
@NotEmpty(message = "数据库登录密码型不可为空")
private String userPwd;
/**
*(1,2)
*/
private String status;
/** 驱动 com.mysql.cj.jdbc.Driver */
private String driverName;
/** 初始连接数量 */
private Integer initCount;
/** 最大连接数量 */
private Integer maxCount;
/** 最大等待时间 */
private Integer maxTime;
/** 最大等待次数 */
private Integer maxFrequency;
/**
*
* @return
*/
public String getUrl(DataSource dataSource){
StringBuilder urlSb = new StringBuilder(BaseConfig.MYSQLJDBCPRO);
urlSb.append(dataSource.databaseUrl);//拼接ip
urlSb.append(":");
urlSb.append(dataSource.databasePost); //拼接端口
urlSb.append("/");
urlSb.append(dataSource.databaseName);//拼接数据库
urlSb.append("?");
urlSb.append(dataSource.databaseFormName);//useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
return urlSb.toString();
}
public static DataSource updBuild(Long id, DataSourceUpdReq req){
return DataSource.builder()
.id(id)
.databaseFormName(req.getDatabaseFormName())
.databaseType(req.getDatabaseType())
.databaseUrl(req.getDatabaseUrl())
.databasePost(req.getDatabasePost())
.databaseName(req.getDatabaseName())
.userName(req.getUserName())
.userPwd(req.getUserPwd())
.initCount(req.getInitCount())
.maxCount(req.getMaxCount())
.maxTime(req.getMaxTime())
.maxFrequency(req.getMaxFrequency())
.build();
}
}

View File

@ -0,0 +1,69 @@
package com.muyu.etl.data.access.domain;
import java.util.Date;
import com.muyu.common.core.annotation.Excel;
import com.muyu.common.core.web.domain.BaseEntity;
import com.muyu.common.security.utils.SecurityUtils;
import com.muyu.common.system.domain.SysDept;
import com.muyu.common.system.domain.SysUser;
import lombok.*;
import lombok.experimental.SuperBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
/**
* etl_table_user_permission
*
* @author muyu
* @date 2024-09-01
*/
@Data
@Setter
@Getter
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("etl_table_user_permission")
@EqualsAndHashCode(callSuper = true)
public class EtlTableUserPermission extends BaseEntity{
private static final long serialVersionUID = 1L;
/** 主键 */
@TableId( type = IdType.AUTO)
private Long id;
/** 用户id */
@Excel(name = "用户id")
private Long userId;
/** 接入Id */
@Excel(name = "接入Id")
private Long basicId;
/** 表id */
@Excel(name = "表id")
private Long tableId;
/** 部门id */
@Excel(name = "部门id")
private Long deptId;
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("userId", getUserId())
.append("databaseId", getBasicId())
.append("tableId", getTableId())
.toString();
}
}

View File

@ -0,0 +1,12 @@
package com.muyu.etl.data.access.domain;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/29 20:39
* @
*/
public class MysqlQuery {
}

View File

@ -0,0 +1,78 @@
package com.muyu.etl.data.access.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.muyu.common.core.annotation.Excel;
import com.muyu.common.core.web.domain.BaseEntity;
import com.muyu.etl.data.access.domain.resp.TableInfoResp;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
@Data
@NoArgsConstructor
@AllArgsConstructor
@SuperBuilder
@EqualsAndHashCode(callSuper = true)
@TableName(value ="table_info",autoResultMap = true) //数据库表相关
public class TableInfo extends BaseEntity {
private static final long serialVersionUID = 1L;
/** 主键 */
@TableId(value = "id", type = IdType.AUTO)
private Long id;
private Long basicId;
/** 表名称/数据库 */
@Excel(name = "表名称/数据库")
private String tableName;
/** 表备注 */
@Excel(name = "表备注")
private String tableRemark;
/** 表备注 */
@Excel(name = "数据来源类型")
private String type;
/** 数据量 */
@Excel(name = "数据量")
private Long dataNum;
/** 是否核心 'Y'是 'N'不是 */
@Excel(name = "是否核心 'Y'是 'N'不是")
private String isCenter;
private Long parentId;
public static TableInfoResp toTableInfoResp(TableInfo tableInfo) {
return TableInfoResp.builder()
.id(tableInfo.id)
.basicId(tableInfo.basicId)
.tableName(tableInfo.tableName)
.tableRemark(tableInfo.tableRemark)
.isCenter(tableInfo.isCenter)
.dataNum(tableInfo.dataNum)
.build();
}
public static TableInfoResp toTableInfoListResp(TableInfo tableInfo) {
return TableInfoResp.builder()
.id(tableInfo.id)
.basicId(tableInfo.basicId)
.tableName(tableInfo.tableName)
.tableRemark(tableInfo.tableRemark)
.isCenter(tableInfo.isCenter)
.dataNum(tableInfo.dataNum)
.build();
}
}

View File

@ -0,0 +1,64 @@
package com.muyu.etl.data.access.domain.req;
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.tags.Tag;
import jakarta.validation.constraints.NotEmpty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/19 19:14
* @
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
@SuperBuilder
@Tag(name = "添加数据源信息" ,description = "数据源详细信息的添加")
public class DataSourceAddReq {
/**
*
*/
@NotEmpty(message = "数据来源不可为空")
@Schema(type = "String",defaultValue = "MySQL",description = "数据信息来源的信息名称")
private String databaseType;
/**
*
*/
@Schema(type = "String",defaultValue = "useUnicode=true&serverTimezone=Asia/Shanghai",description = "数据源的来源的名称")
private String databaseFormName;
/**
*
*/
@NotEmpty(message = "数据来源地址不可为空")
@Schema(type = "String",defaultValue = "21.12.5.3",description = "数据来源地址")
private String databaseUrl;
/**
*
*/
@Schema(type = "String",defaultValue = "3306",description = "来源地址端口号")
private String databasePost;
/**
*
*/
@Schema(type = "String",defaultValue = "cloud-server",description = "数据库名称")
private String databaseName;
/**
*
*/
@Schema(type = "String",defaultValue = "root",description = "数据库登录名")
private String userName;
/**
*
*/
@Schema(type = "String",defaultValue = "wuzuxiaoniu@123.",description = "数据库登录密码")
private String userPwd;
}

View File

@ -0,0 +1,50 @@
package com.muyu.etl.data.access.domain.req;
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.tags.Tag;
import jakarta.validation.constraints.NotEmpty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/19 19:14
* @
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
@SuperBuilder
@Tag(name = "添加数据源信息" ,description = "数据源详细信息的添加")
public class DataSourceReq {
/**
*
*/
@Schema(type = "String",defaultValue = "MySQL",description = "数据信息来源的信息名称")
private String databaseType;
/**
*
*/
@Schema(type = "String",defaultValue = "21.12.5.3",description = "数据来源地址")
private String databaseUrl;
/**
*
*/
@Schema(type = "String",defaultValue = "cloud-server",description = "数据库名称")
private String databaseName;
/**
*(1,2)
*/
@Schema(type = "Integer",defaultValue = "1",description = "数据源状态(1启用,2禁用)")
private String status;
}

View File

@ -0,0 +1,70 @@
package com.muyu.etl.data.access.domain.req;
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/19 19:14
* @
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
@SuperBuilder
@Tag(name = "修改数据源信息" ,description = "数据源详细信息的部分修改")
public class DataSourceUpdReq {
/**
*
*/
@Schema(type = "String",defaultValue = "MySQL",description = "数据信息来源的信息名称")
private String databaseType;
/**
*
*/
@Schema(type = "String",defaultValue = "21.12.5.3",description = "数据源的来源的名称")
private String databaseFormName;
/**
*
*/
@Schema(type = "String",defaultValue = "useUnicode=true&serverTimezone=Asia/Shanghai",description = "数据来源地址")
private String databaseUrl;
/**
*
*/
@Schema(type = "String",defaultValue = "3306",description = "来源地址端口号")
private String databasePost;
/**
*
*/
@Schema(type = "String",defaultValue = "cloud-server",description = "数据库名称")
private String databaseName;
/**
*
*/
@Schema(type = "String",defaultValue = "root",description = "数据库登录名")
private String userName;
/**
*
*/
@Schema(type = "String",defaultValue = "wuzuxiaoniu@123.",description = "数据库登录密码")
private String userPwd;
/** 初始连接数量 */
private Integer initCount;
/** 最大连接数量 */
private Integer maxCount;
/** 最大等待时间 */
private Integer maxTime;
/** 最大等待次数 */
private Integer maxFrequency;
}

View File

@ -0,0 +1,24 @@
package com.muyu.etl.data.access.domain.req;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/29 19:35
* @
*/
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class EtlDataSqlReq {
@Schema(type = "String", description ="任务传过来的SQL" )
private String sql;
@Schema(type = "Long",description = "数据源的ID")
private Long basicId;
}

View File

@ -0,0 +1,62 @@
package com.muyu.etl.data.access.domain.req;
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @Author
* @Packagecom.muyu.etl.property.domain.req
* @Projectcloud-etl-property
* @nameAssetImpowerReq
* @Date2024/8/25 18:40
*
*
*/
@Tag(name = "资产授权请求对象")
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class EtlTableUserPermissionReq {
// private static final long serialVersionUID = 1L;
/**
*
*/
@Schema(type = "Long",defaultValue = "主键",description = "主键,为微服务中文名称")
private Long id;
/**
* id
*/
@Schema(type = "Long",defaultValue = "表id",description = "表id为微服务中文名称")
private Long tableId;
/**
* id
*/
@Schema(type = "Long",defaultValue = "接入id",description = "接入id为微服务中文名称")
private Long basicId;
/**
* id
*/
@Schema(type = "Long",defaultValue = "部门id",description = "部门id为微服务中文名称")
private Long deptId;
/**
* id
*/
@Schema(type = "Long",defaultValue = "用户id",description = "用户id为微服务中文名称")
private Long userId;
}

View File

@ -0,0 +1,155 @@
package com.muyu.etl.data.access.domain.resp;
import com.muyu.etl.data.access.domain.DataSource;
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/19 19:12
* @
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
@SuperBuilder
@Tag(name = "数据源输出信息",description = "查询数据源信息需要输出的字段")
public class DataSourceResp {
/**
*
*/
@Schema(type = "String",defaultValue = "1",description = "数据源主键")
private Long id; /**
*
*/
@Schema(type = "String",defaultValue = "MySQL",description = "数据信息来源的信息名称")
private String databaseType;
/**
*
*/
@Schema(type = "String",defaultValue = "cloud-app",description = "数据源的来源的名称")
private String databaseFormName;
/**
*
*/
@Schema(type = "String",defaultValue = "127.0.0.1",description = "数据来源地址")
private String databaseUrl;
/**
*
*/
@Schema(type = "String",defaultValue = "3306",description = "来源地址端口号")
private String databasePost;
/**
*
*/
@Schema(type = "String",defaultValue = "cloud-server",description = "数据库名称")
private String databaseName;
/**
* t_table
*/
@Schema(type = "String",defaultValue = "t_student",description = "表名称")
private String tableName;
/**
*
*/
@Schema(type = "String",defaultValue = "datasource_id,database_name",description = "字段名")
private String tableColumn;
/**
/**
*
*/
@Schema(type = "String",defaultValue = "root",description = "数据库登录名")
private String userName;
/**
*
*/
@Schema(type = "String",defaultValue = "wuzuxiaoniu@123.",description = "数据库登录密码")
private String userPwd;
/**
* (1,2)
*/
@Schema(type = "String",defaultValue = "1",description = "数据源状态")
private String status;
@Schema(type = "String",defaultValue = "1",description = "数据源状态")
/** 驱动 com.mysql.cj.jdbc.Driver */
private String driverName;
@Schema(type = "Integer",defaultValue = "com.mysql.cj.jdbc.Driver",description = "驱动")
/** 初始连接数量 */
private Integer initCount;
@Schema(type = "Integer",defaultValue = "1",description = "最大连接数量")
/** 最大连接数量 */
private Integer maxCount;
@Schema(type = "Integer",defaultValue = "1",description = "最大等待时间")
/** 最大等待时间 */
private Integer maxTime;
@Schema(type = "Integer",defaultValue = "1",description = "最大等待次数")
/** 最大等待次数 */
private Integer maxFrequency;
public static DataSourceResp dataSourceRespBuild(DataSource dataSource){
return DataSourceResp.builder()
.id(dataSource.getId())
.databaseName(dataSource.getDatabaseName())
.databaseType(dataSource.getDatabaseType())
.databaseFormName(dataSource.getDatabaseFormName())
.databaseUrl(dataSource.getDatabaseUrl())
.databasePost(dataSource.getDatabasePost())
.databaseName(dataSource.getDatabaseName())
.userName(dataSource.getUserName())
.userPwd(dataSource.getUserPwd())
.status(dataSource.getStatus())
.driverName(dataSource.getDriverName())
.initCount(dataSource.getInitCount())
.maxCount(dataSource.getMaxCount())
.maxTime(dataSource.getMaxTime())
.maxFrequency(dataSource.getMaxFrequency())
.build();
}
}

View File

@ -0,0 +1,40 @@
package com.muyu.etl.data.access.domain.resp;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/9/2 12:15
* @
*/
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class TableDataResp {
/**
* ID
*/
private Long basicId;
/**
*
*/
private String tableName;
/**
*
*/
private String columnName;
/**
*
*/
private String columnType;
/**
*
*/
private String columnRemark;
}

View File

@ -0,0 +1,47 @@
package com.muyu.etl.data.access.domain.resp;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class TableInfoResp {
/**
* id
*/
private Long id;
/**
* mysql
*/
private Long basicId;
/**
* /
*/
private String tableName;
/**
*
*/
private String tableRemark;
/** 数据量 */
private Long dataNum;
/** 是否核心 'Y'是 'N'不是 */
private String isCenter;
/**
*
*/
private List<TableInfoResp> children;
}

View File

@ -0,0 +1,43 @@
package com.muyu.etl.data.access.pool;
/**
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/24 19:38
* @
*/
public interface BasePool<T> {
/**
*
*/
public void init();
/**
*
* @return
*/
public T getConn();
/**
*
* @param conn
*/
public void replease(T conn);
/**
*
* @return
*/
public T createConn();
/**
*
*/
public void closeConn();
}

View File

@ -0,0 +1,210 @@
package com.muyu.etl.data.access.pool;
import com.muyu.etl.data.access.domain.DataSource;
import com.muyu.etl.data.access.pool.base.BaseConfig;
import com.muyu.etl.data.access.pool.exeption.MysqlConnException;
import lombok.extern.log4j.Log4j2;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.Queue;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.atomic.AtomicInteger;
/**
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/24 19:38
* @ Mysql
*/
@Log4j2
public class MysqlPool implements BasePool<Connection> {
/**
*
*/
private Queue<Connection> mysqlConnQueue = null;
/**
*
*/
private Queue<Connection> activeMysqlConnQueue =null;
/**
*
*/
private AtomicInteger count = new AtomicInteger();
/**
* mysql
*/
public DataSource dataSource;
/**
* ,
* @param dataSource
*/
public MysqlPool(DataSource dataSource){
log.info("MySQL连接池实例化完成");
this.dataSource=dataSource;
BaseConfig.driver(dataSource.getDriverName());
}
/**
*
*/
@Override
public void init() {
Integer maxCount = this.dataSource.getMaxCount();
Integer initCount = this.dataSource.getInitCount();
this.mysqlConnQueue = new LinkedBlockingQueue<Connection>(maxCount);
this.activeMysqlConnQueue=new LinkedBlockingQueue<Connection>(maxCount);
for (Integer i = 0; i < initCount; i++) {
this.mysqlConnQueue.offer(createConn());
count.incrementAndGet();
}
log.info("MySQL连接池初始化完成");
}
/**
*1.
* 2.
* 3
* 4
* 5()
* 6
* 7使
* 8
* @return
*/
@Override
public Connection getConn() {
long startTime = System.currentTimeMillis();
//从空闲队列当中取出放入活动队列
Connection conn = this.mysqlConnQueue.poll();
if (conn!=null){
this.activeMysqlConnQueue.offer(conn);
return conn;
}
//如果当前的连接数量小于最大的连接数量的时候就进行创建新的连接
if (count.get() < dataSource.getMaxCount()){
Connection mysqlConn = createConn();
this.activeMysqlConnQueue.offer(mysqlConn);
count.incrementAndGet();
return mysqlConn;
}
if ((System.currentTimeMillis() - startTime)>this.dataSource.getMaxTime()){
throw new MysqlConnException("连接超时!");
}
return conn;
}
/**
*
* @param conn
*/
@Override
public void replease(Connection conn) {
//删除活动队列当中的连接
if (this.activeMysqlConnQueue.remove(conn)){
//把这个连接放入到空闲队列当中
this.mysqlConnQueue.offer(conn);
}
}
/**
* mysql
* @return
*/
@Override
public Connection createConn(){
String url = this.dataSource.getUrl(dataSource);
String userName = this.dataSource.getUserName();
String userPwd = this.dataSource.getUserPwd();
Connection mysqlConn=null;
try {
mysqlConn = DriverManager.getConnection(url, userName, userPwd);
} catch (SQLException e) {
throw new RuntimeException(e);
}
log.info("初始化了一个数据库连接:{ip:"+this.dataSource.getDatabaseUrl()+" port:"+this.dataSource.getDatabasePost()+"databaseName"+this.dataSource.getDatabaseName()+" }");
return mysqlConn;
}
@Override
public void closeConn() {
closeBaseConn();
closeActiveConn();
}
/**
*
*/
public void closeBaseConn() {
//从空闲连接当中拿出一个连接 准备进行关闭
//如何拿出的这个链接为null 表示以列当中没有连接信息
Connection poll = this.mysqlConnQueue.poll();
if (poll!=null){
try {
poll.close();
} catch (SQLException e) {
try {
//判断这个接是否被关闭了,如果连接被关闭则不需要放入队列当中
//如何这个链接没有被关闭 则放入队列当中 尝试下次关闭
if (!poll.isClosed()){
this.mysqlConnQueue.offer(poll);
}
} catch (SQLException ex) {
throw new RuntimeException(ex);
}
throw new RuntimeException(e);
}finally {
closeBaseConn();
}
}
}
/**
*
*/
public void closeActiveConn() {
//从空闲连接当中拿出一个连接 准备进行关闭
//如何拿出的这个链接为null 表示以列当中没有连接信息
Connection poll = this.activeMysqlConnQueue.poll();
if (poll!=null){
try {
poll.close();
} catch (SQLException e) {
try {
//判断这个接是否被关闭了,如果连接被关闭则不需要放入队列当中
//如何这个链接没有被关闭 则放入队列当中 尝试下次关闭
if (!poll.isClosed()){
this.activeMysqlConnQueue.offer(poll);
}
} catch (SQLException ex) {
throw new RuntimeException(ex);
}
throw new RuntimeException(e);
}finally {
closeActiveConn();
}
}
}
}

View File

@ -0,0 +1,157 @@
package com.muyu.etl.data.access.pool;
import com.muyu.etl.data.access.domain.DataSource;
import com.muyu.etl.data.access.pool.exeption.RedisConnException;
import lombok.extern.log4j.Log4j2;
import redis.clients.jedis.Jedis;
import java.util.Queue;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.atomic.AtomicInteger;
/**
* @Authorzhangzhihao
* @nameRedisPool
* @Date2024/8/24 18:37
*
*/
@Log4j2
public class RedisPool implements BasePool<Jedis>{
/**
*
*/
private Queue<Jedis> jedisBaseConnQueue = null;
/**
*
*/
private Queue<Jedis> jedisActiveConnQueue = null;
/**
*
*/
private AtomicInteger count=null;
/**
* redisPoolConfig
*/
private DataSource dataSource=null;
/**
*
* @param dataSource
*/
public RedisPool(DataSource dataSource) {
log.info("redis连接池实例化完成");
this.dataSource = dataSource;
}
@Override
public void init() {
Integer maxCount = this.dataSource.getMaxCount();
this.jedisBaseConnQueue = new LinkedBlockingQueue<Jedis>(maxCount);
this.jedisActiveConnQueue = new LinkedBlockingQueue<Jedis>(maxCount);
this.count = new AtomicInteger();
Integer initCount = this.dataSource.getInitCount();
for (Integer i = 0; i < initCount; i++) {
this.jedisBaseConnQueue.offer(createConn());
count.incrementAndGet();
}
log.info("redis连接池初始化完成!");
}
@Override
public Jedis getConn() {
long startTime = System.currentTimeMillis();
while (true){
Jedis jedis = this.jedisBaseConnQueue.poll();
if (jedis!=null){
this.jedisActiveConnQueue.offer(jedis);
return jedis;
}
if (count.get()<this.dataSource.getMaxCount()){
jedis = createConn();
this.jedisActiveConnQueue.offer(jedis);
count.incrementAndGet();
return jedis;
}
if (System.currentTimeMillis() -startTime > this.dataSource.getMaxTime()){
throw new RedisConnException("redis获取连接超时!");
}
}
}
@Override
public void replease(Jedis conn) {
if (this.jedisActiveConnQueue.remove(conn)){
this.jedisBaseConnQueue.offer(conn);
}else {
count.decrementAndGet();
}
}
@Override
public Jedis createConn() {
String ip = this.dataSource.getDatabaseUrl();
String port = this.dataSource.getDatabasePost();
Jedis jedis = new Jedis(ip, Integer.parseInt(port));
log.info("初始化了一个redis的连接,{ip:"+ip+" port:"+port+"}");
return jedis;
}
@Override
public void closeConn() {
closeJedisBaseConn();
closeJedisActiveConn();
}
public void closeJedisBaseConn(){
Jedis jedis = this.jedisBaseConnQueue.poll();
if (jedis!=null){
try {
jedis.close();
} catch (Exception e) {
if (!jedis.isConnected()){
this.jedisBaseConnQueue.offer(jedis);
}
throw new RuntimeException(e);
}finally {
closeJedisBaseConn();
}
}
}
public void closeJedisActiveConn(){
Jedis jedis = this.jedisActiveConnQueue.poll();
if (jedis!=null){
try {
jedis.close();
} catch (Exception e) {
if (!jedis.isConnected()){
this.jedisActiveConnQueue.offer(jedis);
}
throw new RuntimeException(e);
}finally {
closeJedisActiveConn();
}
}
}
}

View File

@ -0,0 +1,45 @@
package com.muyu.etl.data.access.pool.base;
public class BaseConfig {
/**
* mysql
*/
public static final String MYSQLJDBCPRO="jdbc:mysql://";
public static final String SHOWTABLES="SHOW TABLES";
public static final String SELECTCOUNT="SELECT count(1) as count FROM ";
public static final String SHOW_TABLE_STATUS = "SHOW TABLE STATUS";
public static final String SHOW_FULL_FIELDS_FROM="SHOW FULL FIELDS FROM ";
public static final String SELECT="SELECT ";
public static final String SELECTALL="SELECT * FROM ";
public static final String FROM=" FROM ";
public static final String SELECTFIELD=" SELECT \" +\n" +
" \" COLUMN_NAME , \" +\n" +
" \" COLUMN_COMMENT ,\" +\n" +
" \" CASE WHEN COLUMN_KEY = 'PRI' THEN '是' ELSE '否' END ,\" +\n" +
" \" CASE \\n\" +\n" +
" \" WHEN DATA_TYPE = 'int' THEN 'Integer' \" +\n" +
" \" WHEN DATA_TYPE = 'bigint' THEN 'Long' \" +\n" +
" \" WHEN DATA_TYPE = 'varchar' THEN 'String' \" +\n" +
" \" WHEN DATA_TYPE = 'decimal' THEN 'BigDecimal' \" +\n" +
" \" WHEN DATA_TYPE = 'tinyint' AND COLUMN_TYPE = 'tinyint(1)' THEN 'Boolean'\" +\n" +
" \" ELSE DATA_TYPE \\n\" +\n" +
" \" END , \" +\n" +
" \" DATA_TYPE , \\n\" +\n" +
" \" COLUMN_TYPE , \\n\" +\n" +
" \" CHARACTER_MAXIMUM_LENGTH , \\n\" +\n" +
" \" NUMERIC_SCALE , \\n\" +\n" +
" \" IS_NULLABLE , \\n\" +\n" +
" \" COLUMN_DEFAULT \\n\" +\n" +
" \"FROM INFORMATION_SCHEMA.COLUMNS ";
public static void driver(String driverName){
try {
Class.forName(driverName);
} catch (ClassNotFoundException e) {
throw new RuntimeException(e);
}
}
}

View File

@ -0,0 +1,13 @@
package com.muyu.etl.data.access.pool.exeption;
/**
* @Authorzhangzhihao
* @nameMysqlConnException
* @Date2024/8/22 19:04
*
*/
public class MysqlConnException extends RuntimeException{
public MysqlConnException(String message) {
super(message);
}
}

View File

@ -0,0 +1,48 @@
package com.muyu.etl.data.access.pool.exeption;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/9/1 15:26
* @
*/
public final class PermissionException extends RuntimeException{
private static final long serialVersionUID = 1L;
private Integer code;
private String message;
private String detailMessage;
public PermissionException() {
}
public PermissionException(String message) {
this.message = message;
}
public PermissionException(String message, Integer code) {
this.message = message;
this.code = code;
}
public String getDetailMessage() {
return this.detailMessage;
}
public PermissionException setDetailMessage(String detailMessage) {
this.detailMessage = detailMessage;
return this;
}
public String getMessage() {
return this.message;
}
public PermissionException setMessage(String message) {
this.message = message;
return this;
}
public Integer getCode() {
return this.code;
}
}

View File

@ -0,0 +1,13 @@
package com.muyu.etl.data.access.pool.exeption;
/**
* @Authorzhangzhihao
* @nameMysqlConnException
* @Date2024/8/22 19:04
*
*/
public class RedisConnException extends RuntimeException{
public RedisConnException(String message) {
super(message);
}
}

View File

@ -0,0 +1,35 @@
package com.muyu.etl.data.access.util;
import com.muyu.etl.data.access.contains.Constants;
import org.apache.commons.lang3.ArrayUtils;
import org.springframework.stereotype.Component;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/27 15:21
* @
*/
@Component
public class ProcessJavaType {
/**
* sqljava
* @param sqlType sql
* @return java
*/
public static String processJavaType(String sqlType) {
if (ArrayUtils.contains(Constants.SQL_STRING_TYPE, sqlType)) {
return Constants.JAVA_STRING_TYPE;
} else if (ArrayUtils.contains(Constants.SQL_INTEGER_TYPE, sqlType)) {
return Constants.JAVA_INTEGER_TYPE;
} else if (ArrayUtils.contains(Constants.SQL_DATE_TIME_TYPE, sqlType) || ArrayUtils.contains(Constants.SQL_DATE_TYPE, sqlType)) {
return Constants.JAVA_DATE_TYPE;
} else if (ArrayUtils.contains(Constants.SQL_DECIMAL_TYPE, sqlType)) {
return Constants.JAVA_BIG_DECIMAL_TYPE;
} else if (ArrayUtils.contains(Constants.SQL_LONG_TYPE, sqlType)) {
return Constants.JAVA_LONG_TYPE;
} else {
throw new RuntimeException("SQL转Java类型异常");
}
}
}

View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.muyu</groupId>
<artifactId>cloud-etl-datasource</artifactId>
<version>3.6.5</version>
</parent>
<artifactId>etl-datasource-remote</artifactId>
<version>3.6.5</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.muyu</groupId>
<artifactId>etl-datasource-common</artifactId>
<version>3.6.5</version>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,29 @@
package com.muyu.etl.data.access.remote;
import com.muyu.common.core.constant.ServiceNameConstants;
import com.muyu.common.core.domain.Result;
import com.muyu.etl.data.access.domain.DataAnalysis;
import com.muyu.etl.data.access.remote.factory.RemoteDataAnalysisBackFactory;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/9/2 14:35
* @
*/
@FeignClient(contextId = "remoteDataAnalysisService",
value = ServiceNameConstants.DATA_SERVICE,
path = "dataAnalysis",
fallbackFactory = RemoteDataAnalysisBackFactory.class)
public interface RemoteDataAnalysisService {
@PostMapping("/findDataAnalysisByTableId/{id}")
Result<List<DataAnalysis>> findDataAnalysisByTableId(@PathVariable("id") Long id);
}

View File

@ -0,0 +1,31 @@
package com.muyu.etl.data.access.remote;
import com.muyu.common.core.constant.ServiceNameConstants;
import com.muyu.common.core.domain.Result;
import com.muyu.etl.data.access.domain.DataAnalysis;
import com.muyu.etl.data.access.domain.resp.DataSourceResp;
import com.muyu.etl.data.access.remote.factory.RemoteDataAnalysisBackFactory;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/9/2 14:35
* @
*/
@FeignClient(contextId = "remoteDataAnalysisService",
value = ServiceNameConstants.DATA_SERVICE,
path = "dataSource")
// TODO 熔断
public interface RemoteDataSourceService {
@GetMapping("/is-use-datasource")
public Result<List<DataSourceResp>> getIsUseDataSourceList();
}

View File

@ -0,0 +1,48 @@
package com.muyu.etl.data.access.remote;
import com.muyu.common.core.constant.ServiceNameConstants;
import com.muyu.common.core.domain.Result;
import com.muyu.etl.data.access.domain.req.EtlDataSqlReq;
import com.muyu.etl.domain.DataStructure;
import com.muyu.etl.data.access.remote.factory.RemoteEtlDataBackFactory;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/9/1 9:27
* @
*/
@FeignClient(contextId = "remoteEtlDataService",
value = ServiceNameConstants.DATA_SERVICE,
path = "etlData",
fallbackFactory = RemoteEtlDataBackFactory.class)
public interface RemoteEtlDataService {
/**
* ktly
*/
@PostMapping("/selEtlData")
Result<List<List<DataStructure>>> selEtlData(@RequestBody EtlDataSqlReq etlDataSqlReq);
/**
* IDSQL
*
* @param etlDataSqlReq IDsql
* @return DataValue{kltv}
*/
@PostMapping("/addTableValue")
Result addTableValue(@RequestBody EtlDataSqlReq etlDataSqlReq);
/**
* IDSQL
* @param etlDataSqlReq IDsql
* @return Integer
*/
@PostMapping("/getTableValueTotal")
Result getTableValueTotal(@RequestBody EtlDataSqlReq etlDataSqlReq);
}

View File

@ -0,0 +1,32 @@
package com.muyu.etl.data.access.remote;
import com.muyu.common.core.constant.ServiceNameConstants;
import com.muyu.common.core.domain.Result;
import com.muyu.etl.data.access.domain.TableInfo;
import com.muyu.etl.data.access.domain.resp.TableInfoResp;
import com.muyu.etl.data.access.remote.factory.RemoteTableInfoBackFactory;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/9/1 10:56
* @
*/
@FeignClient(
contextId = "remoteTableInfoService",
path = "tableInfo",
value = ServiceNameConstants.DATA_SERVICE,
fallbackFactory = RemoteTableInfoBackFactory.class)
public interface RemoteTableInfoService {
@GetMapping("/findByTableName")
Result<List<TableInfoResp>> findByTableName();
@GetMapping("/getTableInfoDetails")
Result<List<TableInfo>> getTableInfoDetails(Integer[] ids);
}

View File

@ -0,0 +1,34 @@
package com.muyu.etl.data.access.remote.factory;
import com.muyu.common.core.domain.Result;
import com.muyu.etl.data.access.domain.DataAnalysis;
import com.muyu.etl.data.access.remote.RemoteDataAnalysisService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.cloud.openfeign.FallbackFactory;
import org.springframework.stereotype.Component;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/9/1 10:04
* @
*/
@Component
public class RemoteDataAnalysisBackFactory implements FallbackFactory<RemoteDataAnalysisService> {
private static final Logger log = LoggerFactory.getLogger(RemoteDataAnalysisBackFactory.class);
@Override
public RemoteDataAnalysisService create(Throwable cause) {
log.error("文件服务调用失败:{}", cause.getMessage());
return new RemoteDataAnalysisService() {
@Override
public Result<List<DataAnalysis>> findDataAnalysisByTableId(Long id) {
return Result.error("查询数据失败:"+cause.getMessage());
}
};
}
}

View File

@ -0,0 +1,46 @@
package com.muyu.etl.data.access.remote.factory;
import com.muyu.common.core.domain.Result;
import com.muyu.etl.data.access.domain.req.EtlDataSqlReq;
import com.muyu.etl.data.access.remote.RemoteEtlDataService;
import com.muyu.etl.domain.DataStructure;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.cloud.openfeign.FallbackFactory;
import org.springframework.stereotype.Component;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/9/1 10:04
* @
*/
@Component
public class RemoteEtlDataBackFactory implements FallbackFactory<RemoteEtlDataService> {
private static final Logger log = LoggerFactory.getLogger(RemoteEtlDataBackFactory.class);
@Override
public RemoteEtlDataService create(Throwable cause) {
log.error("文件服务调用失败:{}", cause.getMessage());
return new RemoteEtlDataService() {
@Override
public Result<List<List<DataStructure>>> selEtlData(EtlDataSqlReq etlDataSqlReq) {
return Result.error("查询数据失败:"+cause.getMessage());
}
@Override
public Result addTableValue(EtlDataSqlReq etlDataSqlReq) {
return Result.error("查询数据失败:"+cause.getMessage());
}
@Override
public Result getTableValueTotal(EtlDataSqlReq etlDataSqlReq) {
return Result.error("查询数据失败:"+cause.getMessage());
}
};
}
}

View File

@ -0,0 +1,39 @@
package com.muyu.etl.data.access.remote.factory;
import com.muyu.common.core.domain.Result;
import com.muyu.etl.data.access.domain.TableInfo;
import com.muyu.etl.data.access.domain.resp.TableInfoResp;
import com.muyu.etl.data.access.remote.RemoteTableInfoService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.cloud.openfeign.FallbackFactory;
import org.springframework.stereotype.Component;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/9/1 10:58
* @
*/
@Component
public class RemoteTableInfoBackFactory implements FallbackFactory<RemoteTableInfoService> {
private static final Logger log = LoggerFactory.getLogger(RemoteTableInfoBackFactory.class);
@Override
public RemoteTableInfoService create(Throwable cause) {
return new RemoteTableInfoService() {
@Override
public Result<List<TableInfoResp>> findByTableName() {
return Result.error("获取数据库和表失败:"+cause.getMessage());
}
@Override
public Result<List<TableInfo>> getTableInfoDetails(Integer[] ids) {
return Result.error("获取数据库和表失败:"+cause.getMessage());
}
};
}
}

View File

@ -0,0 +1,3 @@
com.muyu.etl.data.access.remote.factory.RemoteEtlDataBackFactory
com.muyu.etl.data.access.remote.factory.RemoteTableInfoBackFactory
com.muyu.etl.data.access.remote.factory.RemoteDataAnalysisBackFactory

View File

@ -0,0 +1,131 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.muyu</groupId>
<artifactId>cloud-etl-datasource</artifactId>
<version>3.6.5</version>
</parent>
<artifactId>etl-datasource-server</artifactId>
<version>3.6.5</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>4.0.3</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<!-- SpringCloud Alibaba Nacos -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
<!-- SpringCloud Alibaba Nacos Config -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
<!-- SpringCloud Alibaba Sentinel -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
<!-- SpringBoot Actuator -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- Mysql Connector -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
</dependency>
<!-- MuYu Common DataSource -->
<dependency>
<groupId>com.muyu</groupId>
<artifactId>cloud-common-datasource</artifactId>
</dependency>
<!-- MuYu Common DataScope -->
<dependency>
<groupId>com.muyu</groupId>
<artifactId>cloud-common-datascope</artifactId>
</dependency>
<!-- MuYu Common Log -->
<dependency>
<groupId>com.muyu</groupId>
<artifactId>cloud-common-log</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- MySQL连接池 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.23</version>
</dependency>
<dependency>
<groupId>com.muyu</groupId>
<artifactId>etl-datasource-common</artifactId>
<version>3.6.5</version>
</dependency>
<dependency>
<groupId>com.muyu</groupId>
<artifactId>etl-datasource-client</artifactId>
<version>3.6.5</version>
</dependency>
</dependencies>
<build>
<finalName>etl-datasource-server</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- 加入maven deploy插件当deploy时忽略model -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,22 @@
package com.muyu.etl.data.access;
import com.muyu.common.security.annotation.EnableCustomConfig;
import com.muyu.common.security.annotation.EnableMyFeignClients;
import lombok.extern.log4j.Log4j2;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
*
*
* @author muyu
*/
@Log4j2
@EnableCustomConfig
@EnableMyFeignClients
@SpringBootApplication
public class CloudDataSourceApplication {
public static void main (String[] args) {
SpringApplication.run(CloudDataSourceApplication.class, args);
}
}

View File

@ -0,0 +1,47 @@
package com.muyu.etl.data.access.controller;
import com.muyu.common.core.domain.Result;
import com.muyu.common.core.web.controller.BaseController;
import com.muyu.common.security.annotation.RequiresPermissions;
import com.muyu.etl.data.access.domain.DataAnalysis;
import com.muyu.etl.data.access.service.DataAnalysisService;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.extern.log4j.Log4j2;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/28 19:18
* @
*/
@Log4j2
@RestController
@RequestMapping("/dataAnalysis")
@Tag(name = "数据资产结构",description = "根据对应的表名称查询数据资产结构")
public class DataAnalysisController extends BaseController{
@Resource
private DataAnalysisService dataAnalysisService;
@Operation(summary = "数据资产结构",description = "根据表的ID查询表中数据资产结构")
@PostMapping("/findDataAnalysisByTableId/{id}")
public Result<List<DataAnalysis>> findDataAnalysisByTableId(@PathVariable("id") Long id){
List<DataAnalysis> list = dataAnalysisService.findStructureByTableId(id);
return Result.success(list,"操作成功");
}
@RequiresPermissions(value = "data:assetdisplay:list")
@Operation(summary = "数据资产展示",description = "根据表的ID查询表中数据资产展示")
@GetMapping("/{id}")
public Result<List<DataAnalysis>> findDataAnalysisById(@PathVariable("id") Long id){
return Result.success(dataAnalysisService.getTableById(id));
}
}

View File

@ -0,0 +1,155 @@
package com.muyu.etl.data.access.controller;
import com.muyu.common.core.domain.Result;
import com.muyu.common.core.web.controller.BaseController;
import com.muyu.common.core.web.page.TableDataInfo;
import com.muyu.common.log.annotation.Log;
import com.muyu.common.log.enums.BusinessType;
import com.muyu.common.security.annotation.RequiresPermissions;
import com.muyu.etl.data.access.domain.DataSource;
import com.muyu.etl.data.access.domain.req.DataSourceReq;
import com.muyu.etl.data.access.domain.req.DataSourceUpdReq;
import com.muyu.etl.data.access.domain.resp.DataSourceResp;
import com.muyu.etl.data.access.service.DataSourceService;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.extern.log4j.Log4j2;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/19 19:46
* @
*/
@Log4j2
@RestController
@RequestMapping("/dataSource")
@Tag(name = "数据源控制层",description = "进行对数据源连接,查询等相关操作")
public class DataSourceController extends BaseController {
@Resource
private DataSourceService dataSourceService;
/**
*
* @param dataSourceReq
* @return List<DataSourceResp>
*/
@RequiresPermissions(value = "data:datasource:list")
@Operation(summary = "查看所有数据源信息",description = "根据数据源类型,数据源名称等进行查询数据源信息")
@PostMapping("/list")
public Result<TableDataInfo<DataSourceResp>> selectList(@Validated @RequestBody DataSourceReq dataSourceReq) {
startPage();
List<DataSourceResp> dataSourceRespList = dataSourceService.selectList(dataSourceReq);
return getDataTable(dataSourceRespList);
}
@GetMapping("/is-use-datasource")
public Result<List<DataSourceResp>> getIsUseDataSourceList(){
return Result.success(dataSourceService.getIsUseDataSourceConfig());
}
/**
*
* @param dataSource
* @return
*/
@Log(title = "数据接入", businessType = BusinessType.INSERT)
@RequiresPermissions(value = "data:datasource:list")
@Operation(summary = "数据源信息添加", description = "添加数据源的信息,才能连接进行访问获取数据")
@PostMapping
public Result<?> save(@Validated @RequestBody DataSource dataSource) {
dataSourceService.save(dataSource);
return Result.success(null,"操作成功");
}
/**
*
* @param id
* @return
*/
@Log(title = "数据接入", businessType = BusinessType.DELETE)
@RequiresPermissions(value = "data:datasource:list")
@Operation(summary = "删除数据源信息", description = "根据数据源ID删除数据源信息")
@DeleteMapping("/{id}")
public Result<?> removeById(
@Schema(title="数据源ID",type = "Long",defaultValue = "1",description = "删除数据源信息的唯一条件")
@Validated @PathVariable("id") Long id) {
dataSourceService.removeById(id);
return Result.success(null,"操作成功");
}
/**
*
* @param id dataSourceUpdReq
* @return
*/
@Log(title = "数据接入", businessType = BusinessType.UPDATE)
@RequiresPermissions(value = "data:datasource:list")
@Operation(summary = "修改数据源信息", description = "根据数据源ID修改数据源信息")
@PutMapping("/{id}")
public Result<?> updateById(
@Schema(title="数据源ID",type = "Long",defaultValue = "1",description = "修改数据源信息的唯一条件")
@Validated @PathVariable("id") Long id,
@RequestBody DataSourceUpdReq dataSourceUpdReq) {
System.out.println(dataSourceUpdReq);
dataSourceService.updateById(DataSource.updBuild(id,dataSourceUpdReq));
return Result.success(null,"操作成功");
}
/**
* ID
* @param id
* @return ID
*/
@RequiresPermissions(value = "data:datasource:list")
@Operation(summary = "根据数据源ID查询数据源信息", description = "根据数据源ID查询数据源信息")
@GetMapping("/{id}")
public Result<DataSourceResp> getById(
@Schema(title="数据源ID",type = "Long",defaultValue = "1",description = "查询数据源信息的唯一条件")
@Validated @PathVariable("id") Long id) {
return Result.success(DataSourceResp.dataSourceRespBuild(dataSourceService.getById(id)),"操作成功");
}
/**
*
* @param dataSource
* @return
*/
// @RequiresPermissions(value = "data:datasource:list")
@Operation(summary = "连接数据库",description = "测试数据库连接")
@PostMapping("/testCoon")
public Result<Integer> testCoon(@RequestBody DataSource dataSource) {
int i= dataSourceService.connectionMysql(dataSource);
return i > 0 ? Result.success(null,"连接成功") : Result.error(null,"操作失败");
}
/**
*
* @param dataSource
* @return
*/
@Operation(summary = "根据连接信息同步数据结构",description = "根据连接信息同步数据结构")
@PostMapping("/queryData")
public Result syncAssetStructure(@RequestBody DataSource dataSource){
Integer i = dataSourceService.syncAssetStructure(dataSource);
return i > 0 ? Result.success(null,"数据同步成功") :Result.error("数据同步失败");
}
}

View File

@ -0,0 +1,82 @@
package com.muyu.etl.data.access.controller;
import com.muyu.common.core.domain.Result;
import com.muyu.common.core.web.controller.BaseController;
import com.muyu.etl.data.access.domain.req.EtlDataSqlReq;
import com.muyu.etl.domain.DataStructure;
import com.muyu.etl.data.access.service.DataStructureService;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.extern.log4j.Log4j2;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/29 18:47
* @
*/
@RestController
@RequestMapping("/etlData")
@Log4j2
@Tag(name = "数据转换控制中心",description = "进行对数据源连接,查询等相关操作")
public class DataStructureController extends BaseController {
@Resource
private DataStructureService dataStructureService;
@Operation(summary = "查询etl所需的ktlv格式的字段",description = "根据库表名,字段名查询表字段,再进行数据转换为ktlv格式")
@PostMapping("/selEtlData")
public Result<List<List<DataStructure>>> selDataStructure(@RequestBody EtlDataSqlReq etlDataSqlReq) {
long l = System.currentTimeMillis();
Result<List<List<DataStructure>>> success = Result.success(dataStructureService.selDataStructure(etlDataSqlReq));
long l1 = System.currentTimeMillis();
log.info("查询耗时---》{}s",l1-l);
return success;
}
/**
*
* @param basicId
* @param tableName
* @return
*/
@PostMapping("/findTableValueList/{basicId}/{tableName}")
@Operation(summary = "获取表中的数据值前台调用",
description = "获取表中的数据值前台调用")
public Result<List<DataStructure>> findTableValueByTableName(@PathVariable("basicId") Long basicId,@PathVariable("tableName") String tableName){
List<DataStructure> list = dataStructureService.findTableValueByTableName(basicId,tableName);
return Result.success(list);
}
/**
* IDSQL
* @param etlDataSqlReq IDsql
* @return Integer
*/
@PostMapping("/getTableValueTotal")
@Operation(summary = "根据基础表ID和SQL语句查询数据总数", description = "根据基础表ID和SQL语句查询数据总数")
public Result getTableValueTotal(@RequestBody EtlDataSqlReq etlDataSqlReq) {
Integer i = dataStructureService.getTableValueTotal(etlDataSqlReq);
return Result.success(i);
}
/**
* IDSQL
*
* @param etlDataSqlReq IDsql
* @return DataValue{kltv}
*/
@PostMapping("/addTableValue")
@Operation(summary = "根据基础表ID和SQL语句新增数据", description = "根据基础表ID和SQL语句新增数据")
public Result addTableValue(@RequestBody EtlDataSqlReq etlDataSqlReq) {
Integer i = dataStructureService.addTableValue(etlDataSqlReq);
return Result.success(i);
}
}

View File

@ -0,0 +1,124 @@
package com.muyu.etl.data.access.controller;
import cn.hutool.core.bean.BeanUtil;
import com.muyu.common.core.domain.Result;
import com.muyu.common.core.web.controller.BaseController;
import com.muyu.common.log.annotation.Log;
import com.muyu.etl.data.access.domain.EtlTableUserPermission;
import com.muyu.etl.data.access.domain.req.EtlTableUserPermissionReq;
import com.muyu.etl.data.access.service.EtlTableUserPermissionService;
import io.swagger.v3.oas.annotations.Operation;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/9/1 14:53
* @
*/
@RestController
@RequestMapping("/permission")
public class EtlTableUserPermissionController extends BaseController {
@Resource
private EtlTableUserPermissionService etlTableUserPermissionService;
/**
*
* @param req
* @return
*/
@Log()
@PostMapping("/findUserIdList")
@Operation(summary = "查询资产赋权用户信息",
description = "查询资产赋权用户信息")
public Result findUserIdList(@RequestBody EtlTableUserPermissionReq req){
List<Long> list = etlTableUserPermissionService.findUserIdList(req);
return Result.success(list);
}
/**
*
* @param req
* @return
*/
@PostMapping("/addUserpermission")
@Operation(summary = "添加用户权限的信息",
description = "添加用户权限的信息")
public Result addUserAssetImpower(@RequestBody EtlTableUserPermissionReq req){
EtlTableUserPermission etlTableUserPermission = new EtlTableUserPermission();
etlTableUserPermission.setUserId(req.getUserId());
etlTableUserPermission.setTableId(req.getTableId());
etlTableUserPermission.setBasicId(req.getBasicId());
BeanUtil.copyProperties(req, etlTableUserPermission);
boolean save = etlTableUserPermissionService.save(etlTableUserPermission);
return save?Result.success():Result.error();
}
/**
*
* @param req
* @return
*/
@PostMapping("/delUserpermission")
@Operation(summary = "删除用户权限的信息",
description = "删除用户权限的信息")
public Result delUserAssetImpower(@RequestBody EtlTableUserPermissionReq req){
int i = etlTableUserPermissionService.delUserAssetAccredit(req);
return i>0?Result.success():Result.error();
};
/**
*
* @param req
* @return
*/
@PostMapping("/findDeptIdList")
@Operation(summary = "查询资产赋权部门的信息",
description = "查询资产赋权部门的信息")
public Result findDeptIdList(@RequestBody EtlTableUserPermissionReq req){
List<Long> list = etlTableUserPermissionService.findDeptIdList(req);
return Result.success(list);
}
/**
*
* @param req
* @return
*/
@PostMapping("/addDeptpermission")
@Operation(summary = "添加部门权限的信息",
description = "添加部门权限的信息")
public Result addDeptAssetImpower(@RequestBody EtlTableUserPermissionReq req){
EtlTableUserPermission etlTableUserPermission = new EtlTableUserPermission();
etlTableUserPermission.setDeptId(req.getDeptId());
etlTableUserPermission.setTableId(req.getTableId());
etlTableUserPermission.setBasicId(req.getBasicId());
boolean save = etlTableUserPermissionService.save(etlTableUserPermission);
return save?Result.success():Result.error();
}
/**
*
* @param req
* @return
*/
@PostMapping("/delDeptpermission")
@Operation(summary = "删除部门权限的信息",
description = "删除部门权限的信息")
public Result delDeptAssetImpower(@RequestBody EtlTableUserPermissionReq req){
int i = etlTableUserPermissionService.delDeptAssetAccredit(req);
return i>0?Result.success():Result.error();
};
}

View File

@ -0,0 +1,250 @@
package com.muyu.etl.data.access.controller;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.muyu.common.core.domain.Result;
import com.muyu.common.core.web.controller.BaseController;
import com.muyu.common.security.utils.SecurityUtils;
import com.muyu.common.system.domain.LoginUser;
import com.muyu.common.system.domain.SysUser;
import com.muyu.etl.data.access.domain.EtlTableUserPermission;
import com.muyu.etl.data.access.domain.TableInfo;
import com.muyu.etl.data.access.domain.resp.TableInfoResp;
import com.muyu.etl.data.access.service.EtlTableUserPermissionService;
import com.muyu.etl.data.access.service.TableInfoService;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.extern.log4j.Log4j2;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.util.HashSet;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/28 18:58
* @
*/
@Log4j2
@RestController
@RequestMapping("/tableInfo")
@Tag(name = "数据库对应表的查询",description = "对自由数据数据库对应表的查询")
public class TableInfoController extends BaseController {
@Resource
private TableInfoService tableInfoService;
@Resource
private EtlTableUserPermissionService etlTableUserPermissionService;
/**
* /
*
* @return
*/
@Operation(summary = "查询数据库/表 级联查询用于数据资产授权" +
"自己授权用" ,
description = "查询数据库/表 级联查询用于数据资产授权" +
"自己授权用")
@GetMapping("/findByTableName")
public Result<List<TableInfoResp>> findByTableName(){
//从服务中获取TableInfo对象的列表
List<TableInfo> list = tableInfoService.list();
//使用Stream API来处理列表创建一个新的列表respList
List<TableInfoResp> respList = list.stream()
//筛选出parentId为0的TableInfo对象通常表示这些是顶级条目
.filter(tableInfo -> tableInfo.getParentId()==0)
//将筛选出的TableInfo对象转换为响应对象TableInfoListResp
.map(tableInfo -> {
//将TableInfo对象转换为TableInfoListResp对象
TableInfoResp tableInfoResp = TableInfo.toTableInfoListResp(tableInfo);
//递归地为每个TableInfoListResp对象设置子对象列表
tableInfoResp.setChildren(getAssetChildren(tableInfo, list));
return tableInfoResp;
})
//将Stream转换为List
.toList();
//注意toList()是Java 16及以上版本中的方法如果是Java 8或Java 11应使用collect(Collectors.toList())
//构建并返回一个成功的响应对象,包含处理后的列表
return Result.success(respList);
}
@Operation(summary = "根据主键ID查询数据",description = "根据主键ID查询数据")
@GetMapping("/getTableInfoDetails/{ids}")
Result<List<TableInfo>> getTableInfoDetails(@PathVariable("ids") Integer[] ids){
LambdaQueryWrapper<TableInfo> wrapper = new LambdaQueryWrapper<>();
wrapper.in(TableInfo::getId, (Object[]) ids);
return Result.success(tableInfoService.list(wrapper));
}
/**
*
* /
*
* @param tableInfo
* @param list
* @return
*/
private static List<TableInfoResp> getAssetChildren(TableInfo tableInfo, List<TableInfo> list) {
//使用Stream API处理list集合
return list.stream()//将list转换为Stream
//使用filter方法筛选出那些parentId等于tableInfo.getId()的TableInfo对象
.filter(tableInfo1 -> tableInfo1.getParentId().equals(tableInfo.getId()))
//使用map方法将筛选出的TableInfo对象转换为TableInfoListResp对象
.map(
tableInfo2 -> TableInfo.toTableInfoListResp(tableInfo2))
//使用toList方法将结果收集到一个新的列表中
.toList();
//目前用的Java 17
//toList()是Java 16及以上版本中的方法如果是Java 8或Java 11应使用collect(Collectors.toList())
}
/**
*
*
* @return
*/
@Operation(summary = "过滤级联查询方法,资产授权,获取当前用户的信息" ,
description = "过滤级联查询方法,资产授权,获取当前用户的信息内容 赋予权限")
@GetMapping("findAssetByTableName")
public Result findAsserByTableName(){
// //从服务中获取TableInfo对象的列表
// List<TableInfo> list = tableInfoService.list();
//使用安全管理工具获取当前登录的用户对象
LoginUser loginUser = SecurityUtils.getLoginUser();
//从登录用户对象中获取系统用户对象
SysUser sysUser = loginUser.getSysUser();
//从系统用户对象中获取用户ID
Long userId = sysUser.getUserId();
//从系统用户对象中获取部门ID
Long deptId = sysUser.getDeptId();
// 调用Service服务的findTableIdAndBasicIdByUserId方法
// 传入用户ID获取该用户授权的所有表ID和基础ID
List<EtlTableUserPermission> idByUserId = etlTableUserPermissionService.findTableIdAndBasicIdByUserId(userId);
// 调用Service服务的findTableIdAndBasicIdByDeptId方法
// 传入部门ID获取该部门下所有授权的表ID和基础ID
List<EtlTableUserPermission> idByDeptId = etlTableUserPermissionService.findTableIdAndBasicIdByDeptId(deptId);
//创建一个HashSet集合用于存储唯一的TableInfo对象
HashSet<TableInfo> hashSet = new HashSet<>();
//遍历idByUserId列表这个列表可能包含了用户授权的资产信息 findBasicIdAndTableId
for (EtlTableUserPermission etlTableUserPermission : idByUserId) {
//获取资产信息中的基本ID
Long basicId = etlTableUserPermission.getBasicId();
//获取资产信息中的表ID
Long tableId = etlTableUserPermission.getTableId();
//如果基本原来表的ID不为空则进行查询
if (null != basicId) {
//创建一个LambdaQueryWrapper用于构建查询条件
LambdaQueryWrapper<TableInfo> queryWrapper = new LambdaQueryWrapper<>();
//添加查询条件筛选出基本ID等于当前基本ID的TableInfo对象
queryWrapper.eq(TableInfo::getBasicId, basicId);
//调用服务方法获取符合条件的TableInfo列表
List<TableInfo> tableInfoBasicIdList = tableInfoService.list(queryWrapper);
//将查询结果添加到HashSet集合中
hashSet.addAll(tableInfoBasicIdList);
}
//如果当前表ID主键不为空则进行查询
if (null != tableId) {
//调用服务方法根据表ID获取TableInfo对象
TableInfo tableInfoById = tableInfoService.getById(tableId);
//将查询到的TableInfo对象添加到HashSet集合中
hashSet.add(tableInfoById);
//获取TableInfo对象的父ID
Long parentId = tableInfoById.getParentId();
//如果父ID不为空则根据父ID查询父TableInfo对象
TableInfo tableInfoByIdParentId = tableInfoService.getById(parentId);
//将父TableInfo对象添加到HashSet集合中
hashSet.add(tableInfoByIdParentId);
}
}
//遍历包含用户授权信息的集合这个集合可能是根据部门ID获取的
for (EtlTableUserPermission assetImpowerResp : idByDeptId) {
//从当前授权对象中获取基本ID
Long basicId = assetImpowerResp.getBasicId();
//从当前授权对象中获取表ID
Long tableId = assetImpowerResp.getTableId();
//如果基本ID不为空则进行查询
if(null!=basicId){
//创建一个LambdaQueryWrapper用于构建查询条件
LambdaQueryWrapper<TableInfo> queryWrapper = new LambdaQueryWrapper<>();
//添加查询条件筛选出基本ID等于当前基本ID的TableInfo对象
queryWrapper.eq(TableInfo::getBasicId, basicId);
//调用服务方法获取符合条件的TableInfo列表
List<TableInfo> tableInfoBasicIdList = tableInfoService.list(queryWrapper);
//将查询结果添加到HashSet集合中
hashSet.addAll(tableInfoBasicIdList);
}
//如果表ID不为空则进行查询
if(null!=tableId){
//调用服务方法根据表ID获取TableInfo对象
TableInfo tableInfoById = tableInfoService.getById(tableId);
//将查询到的TableInfo对象添加到HashSet集合中
hashSet.add(tableInfoById);
//获取TableInfo对象的父ID
Long parentId = tableInfoById.getParentId();
//如果父ID不为空则根据父ID查询父TableInfo对象
TableInfo tableInfoByIdParentId = tableInfoService.getById(parentId);
//将父TableInfo对象添加到HashSet集合中
hashSet.add(tableInfoByIdParentId);
}
}
//使用Stream API来处理列表
List<TableInfoResp> respHashSet = hashSet.stream()
//筛选出parentId为0的TableInfo对象
.filter(tableInfo -> tableInfo.getParentId()==0)
//将筛选出的TableInfo对象转换为响应对象TableInfoListResp
.map(tableInfo -> {
// 将TableInfo对象转换为TableInfoListResp对象
TableInfoResp tableInfoResp = TableInfo.toTableInfoListResp(tableInfo);
//递归地为每个TableInfoListResp对象设置子对象列表
tableInfoResp.setChildren(getChildren(tableInfo, hashSet));
return tableInfoResp;
})
//将Stream转换回List
.toList();
//返回成功的结果,包含处理后的列表
return Result.success(respHashSet);
}
/**
*
* /
*
* @param tableInfo
* @param set
* @return
*/
private static List<TableInfoResp> getChildren(TableInfo tableInfo, HashSet<TableInfo> set) {
//使用Stream API处理list集合
return set.stream()//将list转换为Stream
//使用filter方法筛选出那些parentId等于tableInfo.getId()的TableInfo对象
.filter(tableInfo1 -> tableInfo1.getParentId().equals(tableInfo.getId()))
//使用map方法将筛选出的TableInfo对象转换为TableInfoListResp对象
.map(
tableInfo2 -> TableInfo.toTableInfoListResp(tableInfo2))
//使用toList方法将结果收集到一个新的列表中
.toList();
//目前用的Java 17
//toList()是Java 16及以上版本中的方法如果是Java 8或Java 11应使用collect(Collectors.toList())
}
}

View File

@ -0,0 +1,17 @@
package com.muyu.etl.data.access.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.muyu.etl.data.access.domain.DataAnalysis;
import org.apache.ibatis.annotations.Mapper;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/28 19:15
* @
*/
@Mapper
public interface DataAnalysisMapper extends BaseMapper<DataAnalysis> {
}

View File

@ -0,0 +1,15 @@
package com.muyu.etl.data.access.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.muyu.etl.data.access.domain.DataSource;
import org.apache.ibatis.annotations.Mapper;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/19 19:35
* @
*/
@Mapper
public interface DataSourceMapper extends BaseMapper<DataSource> {
}

View File

@ -0,0 +1,19 @@
package com.muyu.etl.data.access.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.muyu.etl.domain.DataStructure;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/29 18:46
* @
*/
@Mapper
public interface DataStructureMapper extends BaseMapper<DataStructure> {
Long seleRowNumber(@Param("databaseName") String databaseName, @Param("tableName") String tableName);
}

View File

@ -0,0 +1,29 @@
package com.muyu.etl.data.access.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.muyu.etl.data.access.domain.EtlTableUserPermission;
import com.muyu.etl.data.access.domain.req.EtlTableUserPermissionReq;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/9/1 14:52
* @
*/
@Mapper
public interface EtlTableUserPermissionMapper extends BaseMapper<EtlTableUserPermission> {
List<Long> findUserIdList(EtlTableUserPermissionReq req);
List<Long> findDeptIdList(EtlTableUserPermissionReq req);
List<EtlTableUserPermission> findTableIdAndBasicIdByUserId(Long userId);
List<EtlTableUserPermission> findTableIdAndBasicIdByDeptId(Long deptId);
}

View File

@ -0,0 +1,21 @@
package com.muyu.etl.data.access.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.muyu.etl.data.access.domain.TableInfo;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/28 19:00
* @
*/
@Mapper
public interface TableInfoMapper extends BaseMapper<TableInfo> {
List<TableInfo> selectAll(Long userId);
Long getAmount(@Param("tableName") String tableName);
}

View File

@ -0,0 +1,19 @@
package com.muyu.etl.data.access.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.muyu.etl.data.access.domain.DataAnalysis;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/28 19:15
* @
*/
public interface DataAnalysisService extends IService<DataAnalysis> {
List<DataAnalysis> findStructureByTableId(Long id);
List<DataAnalysis> getTableById(Long id);
}

View File

@ -0,0 +1,36 @@
package com.muyu.etl.data.access.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.muyu.etl.data.access.domain.DataSource;
import com.muyu.etl.data.access.domain.req.DataSourceReq;
import com.muyu.etl.data.access.domain.resp.DataSourceResp;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/19 19:40
* @
*/
public interface DataSourceService extends IService<DataSource> {
List<DataSourceResp> selectList(DataSourceReq dataSourceReq);
Integer connectionMysql( DataSource dataSource);
Integer syncAssetStructure(DataSource dataSource);
/**
*
* @return
*/
List<DataSourceResp> getIsUseDataSourceConfig ();
}

View File

@ -0,0 +1,26 @@
package com.muyu.etl.data.access.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.muyu.etl.data.access.domain.req.EtlDataSqlReq;
import com.muyu.etl.domain.DataStructure;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/29 18:46
* @
*/
public interface DataStructureService extends IService<DataStructure> {
List<List<DataStructure>> selDataStructure(EtlDataSqlReq etlDataSqlReq);
List<DataStructure> findTableValueByTableName(Long basicId, String tableName);
Integer getTableValueTotal(EtlDataSqlReq etlDataSqlReq);
Integer addTableValue(EtlDataSqlReq etlDataSqlReq);
}

View File

@ -0,0 +1,57 @@
package com.muyu.etl.data.access.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.muyu.etl.data.access.domain.EtlTableUserPermission;
import com.muyu.etl.data.access.domain.req.EtlTableUserPermissionReq;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/9/1 14:53
* @
*/
public interface EtlTableUserPermissionService extends IService<EtlTableUserPermission> {
/**
* IDIDID
* @param userId
* @return
*/
List<EtlTableUserPermission> findTableIdAndBasicIdByUserId(Long userId);
/**
* IDIDID
* @param deptId
* @return
*/
List<EtlTableUserPermission> findTableIdAndBasicIdByDeptId(Long deptId);
/**
*
* @param req
* @return
*/
List<Long> findUserIdList(EtlTableUserPermissionReq req);
/**
*
* @param req
* @return
*/
int delUserAssetAccredit(EtlTableUserPermissionReq req);
/**
*
* @param req
* @return
*/
List<Long> findDeptIdList(EtlTableUserPermissionReq req);
/**
*
* @param req
* @return
*/
int delDeptAssetAccredit(EtlTableUserPermissionReq req);
}

View File

@ -0,0 +1,24 @@
package com.muyu.etl.data.access.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.muyu.etl.data.access.domain.TableInfo;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/28 19:01
* @
*/
public interface TableInfoService extends IService<TableInfo> {
TableInfo selectTableInfoByName(TableInfo tableInfoInsert);
List<TableInfo> selectAll(Long userId);
List<TableInfo> findTableNameById(Long id);
Long getAmount(String tableName);
}

View File

@ -0,0 +1,40 @@
package com.muyu.etl.data.access.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.muyu.etl.data.access.mapper.DataAnalysisMapper;
import com.muyu.etl.data.access.service.DataAnalysisService;
import com.muyu.etl.data.access.domain.DataAnalysis;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/28 19:16
* @
*/
@Service
public class DataAnalysisServiceImpl extends ServiceImpl<DataAnalysisMapper, DataAnalysis> implements DataAnalysisService {
@Resource
private DataAnalysisMapper dataAnalysisMapper;
@Override
public List<DataAnalysis> findStructureByTableId(Long id) {
LambdaQueryWrapper<DataAnalysis> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.eq(DataAnalysis::getTableId,id);
List<DataAnalysis> list = dataAnalysisMapper.selectList(queryWrapper);
return list;
}
@Override
public List<DataAnalysis> getTableById(Long id) {
return dataAnalysisMapper.selectList(new LambdaQueryWrapper<DataAnalysis>().eq(DataAnalysis::getTableId,id));
}
}

View File

@ -0,0 +1,30 @@
package com.muyu.etl.data.access.service.impl;
import com.muyu.etl.data.access.data.access.client.basic.DataSourceConfig;
import com.muyu.etl.data.access.domain.resp.DataSourceResp;
import com.muyu.etl.data.access.service.DataSourceService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.annotation.Primary;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* @Author: DongZeLiang
* @date: 2024/9/9
* @Description:
* @Version: 1.0
*/
@Service
@Primary
public class DataSourceConfigLocalImpl implements DataSourceConfig {
@Autowired
private DataSourceService dataSourceService;
@Override
public List<DataSourceResp> getIsUseDataSourceList () {
return dataSourceService.getIsUseDataSourceConfig();
}
}

View File

@ -0,0 +1,298 @@
package com.muyu.etl.data.access.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.dtflys.forest.utils.StringUtils;
import com.muyu.etl.data.access.data.access.client.config.DatabaseConnectionPool;
import com.muyu.etl.data.access.mapper.DataSourceMapper;
import com.muyu.etl.data.access.service.DataAnalysisService;
import com.muyu.common.security.utils.SecurityUtils;
import com.muyu.etl.data.access.domain.DataAnalysis;
import com.muyu.etl.data.access.domain.DataSource;
import com.muyu.etl.data.access.domain.TableInfo;
import com.muyu.etl.data.access.domain.req.DataSourceReq;
import com.muyu.etl.data.access.domain.resp.DataSourceResp;
import com.muyu.etl.data.access.pool.RedisPool;
import com.muyu.etl.data.access.service.DataSourceService;
import com.muyu.etl.data.access.service.TableInfoService;
import com.zaxxer.hikari.HikariDataSource;
import lombok.extern.log4j.Log4j2;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import redis.clients.jedis.Jedis;
import javax.annotation.Resource;
import java.sql.*;
import java.util.Date;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import static com.muyu.etl.data.access.contains.Constants.*;
import static com.muyu.etl.data.access.pool.base.BaseConfig.SHOW_TABLE_STATUS;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/19 19:42
* @
*/
@Log4j2
@Service
public class DataSourceServiceImpl extends ServiceImpl<DataSourceMapper, DataSource> implements DataSourceService {
@Resource
private TableInfoService tableInfoService;
@Resource
private DataAnalysisService dataAnalysisService;
@Autowired
private DatabaseConnectionPool databaseConnectionPool;
/**
*
* @param dataSource
* @return
*/
@Override
public boolean save(DataSource dataSource) {
String type = dataSource.getDatabaseType();
if (type.equals(MYSQL)){
dataSource.setDriverName(DRIVERNAME);
}
return super.save(dataSource);
}
@Override
public List<DataSourceResp> selectList(DataSourceReq dataSourceReq) {
LambdaQueryWrapper<DataSource> lambdaQueryWrapper = new LambdaQueryWrapper<>();
lambdaQueryWrapper.like(StringUtils.isNotBlank(dataSourceReq.getDatabaseName()), DataSource::getDatabaseName, dataSourceReq.getDatabaseName());
lambdaQueryWrapper.like(StringUtils.isNotBlank(dataSourceReq.getDatabaseType()), DataSource::getDatabaseName, dataSourceReq.getDatabaseType());
lambdaQueryWrapper.like(StringUtils.isNotBlank(dataSourceReq.getDatabaseUrl()), DataSource::getDatabaseUrl, dataSourceReq.getDatabaseUrl());
lambdaQueryWrapper.eq(StringUtils.isNotBlank(dataSourceReq.getStatus()), DataSource::getDatabaseName, dataSourceReq.getStatus());
List<DataSource> list = this.list(lambdaQueryWrapper);
return list.stream()
.map(DataSourceResp::dataSourceRespBuild)
.toList();
}
/**
*
* @param dataSource
* @return
*/
@Override
public Integer connectionMysql(DataSource dataSource) {
if (dataSource.getDatabaseType().equals(MYSQL)){
databaseConnectionPool.initialize(DataSourceResp.
builder()
.id(dataSource.getId())
.driverName(DRIVERNAME)
.databaseUrl(dataSource.getDatabaseUrl())
.databasePost(dataSource.getDatabasePost())
.databaseName(dataSource.getDatabaseName())
.databaseFormName(dataSource.getDatabaseFormName())
.userName(dataSource.getUserName())
.userPwd(dataSource.getUserPwd())
.initCount(dataSource.getInitCount())
.build());
return 1;
}else if (dataSource.getDatabaseType().equals(REDIS)){
RedisPool redisPool = new RedisPool(dataSource);
redisPool.init();
Jedis conn = redisPool.getConn();
redisPool.replease(conn);
redisPool.closeConn();
return 1;
}
return 0;
}
@Override
public Integer syncAssetStructure(DataSource dataSource) {
HikariDataSource hikariDataSource = databaseConnectionPool.get(dataSource.getId());
try {
//检查etlDataScore对象的类型是否为MYSQL
if (dataSource.getDatabaseType().equals(MYSQL)) {
//从连接池中获取一个数据库连接
Connection conn = hikariDataSource.getConnection();
//构建一个新的TableInfo对象用于插入或更新数据库中的table_info表
TableInfo tableInfoInsert = TableInfo.builder()
.basicId(dataSource.getId())
.parentId(PARENTID)
.tableRemark("")// 初始化表备注为空
.isCenter("Y")// 可能表示中心数据库的标志
.type("dataSource")// 表示数据库
.tableName(dataSource.getDatabaseName())// 数据库名作为表名
.createBy(SecurityUtils.getUsername())// 获取当前用户名作为创建者
.createTime(new Date())// 设置创建时间为当前时间
.build();
//添加数据库table_info表
//插入或更新table_info表根据数据库id和数据库名称
tableInfoService.saveOrUpdate(tableInfoInsert, new LambdaUpdateWrapper<TableInfo>(TableInfo.class) {{
eq(TableInfo::getTableName, tableInfoInsert.getTableName());
eq(TableInfo::getBasicId, dataSource.getId());
}});
//根据数据库id和数据库名称或表名称查询
TableInfo tableInfo = tableInfoService.selectTableInfoByName(tableInfoInsert);
//获取数据库元数据
DatabaseMetaData metaData = conn.getMetaData();
//查询数据库中所有表的信息
ResultSet rs = metaData.getTables(dataSource.getDatabaseName(), null, "%", new String[]{"TABLE"});
while (rs.next()) {
String tableName = rs.getString("TABLE_NAME");//获取表名
String tableRemark = rs.getString("REMARKS");//获取表备注
//准备SQL语句查询表中的所有数据
PreparedStatement preparedStatement = conn.prepareStatement(SHOW_TABLE_STATUS + " FROM `" + dataSource.getDatabaseName() + "` LIKE '" + tableName + "'");
ResultSet resultSet = preparedStatement.executeQuery();
//计算表中的行数
long aLong;
if (resultSet.next()){
aLong = resultSet.getLong("Rows");
} else {
aLong = 0L;
}
//构建一个新的TableInfo对象用于插入或更新数据库中的table_info表
TableInfo build = TableInfo.builder()
.basicId(dataSource.getId())
.tableName(tableName)
//bug点tableRemark为空造成空指针异常
.tableRemark(tableRemark == null ? "" : tableRemark)// 如果表备注为空,则设置为空字符串,避免空指针异常
.parentId(tableInfo.getId())
.type("dataTable")// 表示数据表
.isCenter("Y") //表示中心数据库的标志
.updateBy(SecurityUtils.getUsername())//获取当前用户名作为更新者
.dataNum(aLong)// 设置数据行数
.updateTime(new Date())// 设置更新时间为当前时间
.build();
// 插入或更新table_info表根据数据库id和表名
tableInfoService.saveOrUpdate(build, new LambdaUpdateWrapper<>(TableInfo.class) {{
eq(TableInfo::getTableName, build.getTableName());
eq(TableInfo::getBasicId, dataSource.getId());
}});
//根据数据库id和表名查询数据
TableInfo table = tableInfoService.selectTableInfoByName(build);
//创建一个线程池,用于并发同步数据
ExecutorService threadPool = Executors.newCachedThreadPool();
//提交一个任务到线程池,同步数据
threadPool.submit(() -> {
syncData(conn, dataSource.getDatabaseName(), table);
});
}
}
} catch (SQLException e) {
throw new RuntimeException(e);
}
return 1;
}
/**
*
*
* @return
*/
@Override
public List<DataSourceResp> getIsUseDataSourceConfig () {
LambdaQueryWrapper<DataSource> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.eq(DataSource::getStatus, "0");
return this.list(queryWrapper).stream()
.map(DataSourceResp::dataSourceRespBuild)
.toList();
}
public void syncData(Connection conn, String databaseName, TableInfo table) {
ExecutorService threadPool = Executors.newCachedThreadPool();
PreparedStatement ps = null;
try {
ps = conn.prepareStatement(" SELECT " +
" COLUMN_NAME , " +
" COLUMN_COMMENT ," +
" CASE WHEN COLUMN_KEY = 'PRI' THEN '是' ELSE '否' END ," +
" CASE \n" +
" WHEN DATA_TYPE = 'int' THEN 'Integer' " +
" WHEN DATA_TYPE = 'bigint' THEN 'Long' " +
" WHEN DATA_TYPE = 'varchar' THEN 'String' " +
" WHEN DATA_TYPE = 'decimal' THEN 'BigDecimal' " +
" WHEN DATA_TYPE = 'tinyint' AND COLUMN_TYPE = 'tinyint(1)' THEN 'Boolean'" +
" ELSE DATA_TYPE \n" +
" END , " +
" DATA_TYPE , \n" +
" COLUMN_TYPE , \n" +
" CHARACTER_MAXIMUM_LENGTH , \n" +
" NUMERIC_SCALE , \n" +
" IS_NULLABLE , \n" +
" COLUMN_DEFAULT \n" +
"FROM INFORMATION_SCHEMA.COLUMNS WHERE \n" +
"TABLE_SCHEMA = '" + databaseName + "' \n" +
"AND TABLE_NAME = '" + table.getTableName() + "'");
// 执行查询,获取结果集
ResultSet resultSet = ps.executeQuery();
// 遍历结果集中的每一行数据
while (resultSet.next()) {
// 获取列的相关信息
String columnName = String.valueOf(resultSet.getString(1));
String columnComment = String.valueOf(resultSet.getObject(2));
String columnKey = String.valueOf(resultSet.getObject(3));
// 这里应该是resultSet.getString(4)原代码中为resultSet.getObject(4)
String end = String.valueOf(resultSet.getObject(4));
String dataType = String.valueOf(resultSet.getObject(5));
// 这里应该是resultSet.getString(6)原代码中为resultSet.getObject(6)
String columnType = String.valueOf(resultSet.getObject(6));
// 这里应该是resultSet.getString(7)原代码中为resultSet.getInt(7)
String characterMaximumLength = String.valueOf(resultSet.getInt(7));
// 这里应该是resultSet.getString(8)原代码中为resultSet.getInt(8)
String NumericScale = String.valueOf(resultSet.getInt(8));
// 这里应该是resultSet.getString(9)原代码中为resultSet.getObject(9)
String isNullable = String.valueOf(resultSet.getObject(9));
String columnDefault = String.valueOf(resultSet.getObject(10));
DataAnalysis build = DataAnalysis.builder()
.tableId(table.getId())
.columnName(columnName)
.columnRemark(columnComment)
.isPrimary("是".equals(columnKey) ? "Y" : "N")
.javaType(end)
.columnType(columnType)
.columnLength(characterMaximumLength)
.columnDecimals(NumericScale)
.isNull("YES".equals(isNullable) ? "Y" : "N")
.defaultValue(columnDefault)
.build();
threadPool.submit(() -> {
dataAnalysisService.saveOrUpdate(build, new LambdaUpdateWrapper<DataAnalysis>() {{
eq(DataAnalysis::getTableId, build.getTableId());
eq(DataAnalysis::getColumnName, build.getColumnName());
eq(DataAnalysis::getColumnRemark, build.getColumnRemark());
}});
});
}
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}

View File

@ -0,0 +1,229 @@
package com.muyu.etl.data.access.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.muyu.etl.data.access.data.access.client.config.DatabaseConnectionPool;
import com.muyu.etl.data.access.mapper.DataStructureMapper;
import com.muyu.etl.data.access.domain.req.EtlDataSqlReq;
import com.muyu.etl.domain.DataStructure;
import com.muyu.etl.data.access.service.DataSourceService;
import com.muyu.etl.data.access.service.DataStructureService;
import com.muyu.etl.enums.DataType;
import com.zaxxer.hikari.HikariDataSource;
import lombok.extern.log4j.Log4j2;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.sql.*;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.*;
import static com.muyu.etl.data.access.pool.base.BaseConfig.SELECTALL;
import static java.util.regex.Pattern.compile;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/29 18:46
* @
*/
@Log4j2
@Service
public class DataStructureServiceImpl extends ServiceImpl<DataStructureMapper, DataStructure> implements DataStructureService {
@Resource
private DataStructureMapper dataStructureMapper;
@Resource
private DataSourceService dataSourceService;
@Resource
private DatabaseConnectionPool databaseConnectionPool;
private static String extractTableName(String sql) {
// 这个正则表达式用于匹配FROM后面直到第一个空白字符或SQL语句结束的表名
String regex = "FROM\\s+([a-zA-Z_][a-zA-Z0-9_]*)";
java.util.regex.Pattern pattern = compile(regex);
java.util.regex.Matcher matcher = pattern.matcher(sql);
if (matcher.find()) {
return matcher.group(1); // 返回匹配到的第一个组
}
return null; // 如果没有找到匹配项则返回null
}
@Override
public List<List<DataStructure>> selDataStructure(EtlDataSqlReq etlDataSqlReq) {
//根据数据源ID获取数据源信息
ConcurrentHashMap<Integer, DataStructure> map = new ConcurrentHashMap<>();
//初始化一个列表,用于存储数据值对象
List<List<DataStructure>> list = new ArrayList<>();
HikariDataSource hikariDataSource = databaseConnectionPool.get(etlDataSqlReq.getBasicId());
Connection conn = null;
try {
conn = hikariDataSource.getConnection();
//准备SQL查询
Statement statement = conn.createStatement();
ResultSet resultSet = statement.executeQuery(etlDataSqlReq.getSql());
//获取元数据
ResultSetMetaData metaData = resultSet.getMetaData();
//获取列的数量
int columnCount = metaData.getColumnCount();
//遍历每一行数据
while (resultSet.next()) {
List<DataStructure> dataStructures = new ArrayList<>();
// 提交任务给线程池
for (int i = 1; i <= columnCount; i++) {
if (resultSet.isFirst()) {
String columnTypeName = metaData.getColumnTypeName(i);
DatabaseMetaData metaDataTwo = conn.getMetaData();
ResultSet columns = metaDataTwo.getColumns(null, null, metaData.getTableName(i), metaData.getColumnName(i));
String remarks = null;
while (columns.next()) {
remarks = columns.getString("REMARKS");
}
DataStructure build = DataStructure.builder()
.key(metaData.getColumnName(i))
.label(remarks)
.value(resultSet.getObject(i, DataType.getTargetClass(columnTypeName)))
.type(DataType.getDataType(columnTypeName))
.build();
dataStructures.add(build);
map.put(i, build);
} else {
DataStructure build = DataStructure.builder()
.key(metaData.getColumnName(i))
.label(map.get(i).getLabel())
.value(resultSet.getObject(i, map.get(i).getType().getTargetType()))
.type(map.get(i).getType())
.build();
dataStructures.add(build);
}
}
list.add(dataStructures);
}
}catch (Exception e) {
throw new RuntimeException(e);
}finally {
databaseConnectionPool.returnConnection(conn,hikariDataSource);
}
return list;
}
/**
*
*
* @param basicId
* @param tableName
* @return
* <p>
*
*/
private static final Integer PAGE_SIZE = 1;
@Override
public List<DataStructure> findTableValueByTableName(Long basicId, String tableName) {
ConcurrentHashMap<Integer, DataStructure> map = new ConcurrentHashMap<>();
ArrayList<DataStructure> dataValues = new ArrayList<>();
HikariDataSource hikariDataSource = databaseConnectionPool.get(basicId);
Connection conn = null;
try {
conn = hikariDataSource.getConnection();
// 准备SQL查询语句
PreparedStatement preparedStatement = conn.prepareStatement(SELECTALL + tableName + " LIMIT " + PAGE_SIZE);
// 执行查询,获取结果集
ResultSet resultSet = preparedStatement.executeQuery();
// 获取结果集的元数据,用于获取列的数量和类型等信息
ResultSetMetaData metaData = resultSet.getMetaData();
// 获取列的数量
int columnCount = metaData.getColumnCount();
// 遍历结果集中的每一行数据
while (resultSet.next()) {
// 遍历每一列
for (int i = 1; i <= columnCount; i++) {
if (resultSet.isFirst()) {
// 获取当前列的类型名称
String columnTypeName = metaData.getColumnTypeName(i);
// 获取数据库的元数据对象
DatabaseMetaData metaDataColumns = conn.getMetaData();
// 查询数据库元数据,获取当前列的备注信息
ResultSet columns = metaDataColumns.getColumns(null, null, metaData.getTableName(i), metaData.getColumnName(i));
String remarks = null;
// 遍历备注信息的结果集
while (columns.next()) {
// 获取当前字段的备注信息
remarks = columns.getString("REMARKS");
// 记录日志,显示字段的备注信息
log.info("字段备注:" + remarks);
}
// 构建数据值对象,包含列名、备注、值、类型等信息
DataStructure build = DataStructure.builder()
.key(metaData.getColumnName(i))// 当前列的名称
.label(remarks)// 当前列的备注信息
.value(resultSet.getObject(i, DataType.getTargetClass(columnTypeName)))// 当前列的值,类型转换
.type(DataType.getDataType(columnTypeName))// 当前列的类型,转换为字符串表示
.build();
dataValues.add(build);
map.put(i, build);
} else {
DataStructure build = DataStructure.builder()
.key(metaData.getColumnName(i))// 当前列的名称
.label(map.get(i).getLabel())// 当前列的备注信息
.value(resultSet.getObject(i, map.get(i).getType().getTargetType()))// 当前列的值,类型转换
.type(map.get(i).getType())// 当前列的类型,转换为字符串表示
.build();
dataValues.add(build);
}
}
}
} catch (SQLException e) {
// 如果发生SQL异常抛出运行时异常
throw new RuntimeException(e);
}finally {
databaseConnectionPool.returnConnection(conn,hikariDataSource);
}
// 返回包含数据值的列表
return dataValues;
}
@Override
public Integer getTableValueTotal(EtlDataSqlReq etlDataSqlReq) {
HikariDataSource hikariDataSource = databaseConnectionPool.get(etlDataSqlReq.getBasicId());
Connection conn = databaseConnectionPool.getConn(hikariDataSource);
try {
Statement statement = conn.createStatement();
ResultSet resultSet = statement.executeQuery(etlDataSqlReq.getSql());
if (resultSet.next()) {
return resultSet.getInt(1);
}
} catch (SQLException e) {
throw new RuntimeException(e);
}finally {
databaseConnectionPool.returnConnection(conn,hikariDataSource);
}
return 0;
}
@Override
public Integer addTableValue(EtlDataSqlReq etlDataSqlReq) {
HikariDataSource hikariDataSource = databaseConnectionPool.get(etlDataSqlReq.getBasicId());
Connection conn = databaseConnectionPool.getConn(hikariDataSource);
try {
PreparedStatement preparedStatement = conn.prepareStatement(etlDataSqlReq.getSql());
return preparedStatement.executeUpdate();
} catch (SQLException e) {
throw new RuntimeException(e);
}finally {
databaseConnectionPool.returnConnection(conn,hikariDataSource);
}
}
}

View File

@ -0,0 +1,106 @@
package com.muyu.etl.data.access.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.muyu.etl.data.access.mapper.EtlTableUserPermissionMapper;
import com.muyu.etl.data.access.service.EtlTableUserPermissionService;
import com.muyu.etl.data.access.domain.EtlTableUserPermission;
import com.muyu.etl.data.access.domain.req.EtlTableUserPermissionReq;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/9/1 14:53
* @
*/
@Service
public class EtlTableUserPermissionServiceImpl extends ServiceImpl<EtlTableUserPermissionMapper, EtlTableUserPermission> implements EtlTableUserPermissionService {
@Resource
private EtlTableUserPermissionMapper etlTableUserPermissionMapper;
/**
* IDIDID
* @param userId
* @return
*/
@Override
public List<EtlTableUserPermission> findTableIdAndBasicIdByUserId(Long userId) {
List<EtlTableUserPermission> list = etlTableUserPermissionMapper.findTableIdAndBasicIdByUserId(userId);
return list;
}
/**
* IDIDID
* @param deptId
* @return
*/
@Override
public List<EtlTableUserPermission> findTableIdAndBasicIdByDeptId(Long deptId) {
List<EtlTableUserPermission> list = etlTableUserPermissionMapper.findTableIdAndBasicIdByDeptId(deptId);
return list;
}
/**
*
* @param req
* @return
*/
@Override
public List<Long> findUserIdList(EtlTableUserPermissionReq req) {
List<Long> userIdList = etlTableUserPermissionMapper.findUserIdList(req);
return userIdList;
}
/**
*
* @param req
* @return
*/
@Override
public int delUserAssetAccredit(EtlTableUserPermissionReq req) {
LambdaQueryWrapper<EtlTableUserPermission> queryWrapper = new LambdaQueryWrapper<>();
if (null==req.getBasicId()){
queryWrapper.eq(EtlTableUserPermission::getUserId,req.getUserId())
.eq(EtlTableUserPermission::getTableId,req.getTableId());
}else if (null==req.getTableId()){
queryWrapper.eq(EtlTableUserPermission::getUserId,req.getUserId())
.eq(EtlTableUserPermission::getBasicId,req.getBasicId());
}
int delete = etlTableUserPermissionMapper.delete(queryWrapper);
return delete;
}
/**
*
* @param req
* @return
*/
@Override
public List<Long> findDeptIdList(EtlTableUserPermissionReq req) {
List<Long> deptIdList = etlTableUserPermissionMapper.findDeptIdList(req);
return deptIdList;
}
/**
*
* @param req
* @return
*/
@Override
public int delDeptAssetAccredit(EtlTableUserPermissionReq req) {
LambdaQueryWrapper<EtlTableUserPermission> queryWrapper = new LambdaQueryWrapper<>();
if (null==req.getBasicId()){
queryWrapper.eq(EtlTableUserPermission::getDeptId,req.getDeptId())
.eq(EtlTableUserPermission::getTableId,req.getTableId());
}else if (null==req.getTableId()){
queryWrapper.eq(EtlTableUserPermission::getDeptId,req.getDeptId())
.eq(EtlTableUserPermission::getBasicId,req.getBasicId());
}
int delete = etlTableUserPermissionMapper.delete(queryWrapper);
return delete;
}
}

View File

@ -0,0 +1,52 @@
package com.muyu.etl.data.access.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.muyu.etl.data.access.domain.TableInfo;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.muyu.etl.data.access.mapper.TableInfoMapper;
import com.muyu.etl.data.access.service.TableInfoService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/8/28 19:01
* @
*/
@Service
public class TableInfoServiceImpl extends ServiceImpl<TableInfoMapper, TableInfo> implements TableInfoService {
@Resource
private TableInfoMapper tableInfoMapper;
@Override
public TableInfo selectTableInfoByName(TableInfo tableInfoInsert) {
LambdaQueryWrapper<TableInfo> tableInfoLambdaQueryWrapper = new LambdaQueryWrapper<>();
tableInfoLambdaQueryWrapper.eq(TableInfo::getBasicId, tableInfoInsert.getBasicId());
tableInfoLambdaQueryWrapper.eq(TableInfo::getTableName, tableInfoInsert.getTableName())
.eq(TableInfo::getParentId, tableInfoInsert.getParentId());
return this.tableInfoMapper.selectOne(tableInfoLambdaQueryWrapper);
}
@Override
public List<TableInfo> selectAll(Long userId) {
return tableInfoMapper.selectAll(userId);
}
@Override
public List<TableInfo> findTableNameById(Long id) {
LambdaQueryWrapper<TableInfo> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.eq(TableInfo::getId, id);
List<TableInfo> list = tableInfoMapper.selectList(queryWrapper);
return list;
}
@Override
public Long getAmount(String tableName) {
return tableInfoMapper.getAmount(tableName);
}
}

View File

@ -0,0 +1,2 @@
Spring Boot Version: ${spring-boot.version}
Spring Application Name: ${spring.application.name}

View File

@ -0,0 +1,55 @@
# Tomcat
server:
port: 10006
# nacos线上地址
nacos:
addr: 10.0.1.97:8848
user-name: nacos
password: nacos
namespace: wu_zu_cloud
# Spring
spring:
main:
allow-bean-definition-overriding: true
allow-circular-references: true
application:
# 应用名称
name: cloud-datasource
profiles:
# 环境配置
active: dev
cloud:
nacos:
discovery:
# 服务注册地址
server-addr: ${nacos.addr}
# nacos用户名
username: ${nacos.user-name}
# nacos密码
password: ${nacos.password}
# 命名空间
namespace: ${nacos.namespace}
config:
# 服务注册地址
server-addr: ${nacos.addr}
# nacos用户名
username: ${nacos.user-name}
# nacos密码
password: ${nacos.password}
# 命名空间
namespace: ${nacos.namespace}
# 配置文件格式
file-extension: yml
# 共享配置
shared-configs:
# 系统共享配置
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
# 系统环境Config共享配置
- application-config-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
# xxl-job 配置文件
- application-xxl-config-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
logging:
level:
com.muyu.system.mapper: DEBUG

View File

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration scan="true" scanPeriod="60 seconds" debug="false">
<!-- 日志存放路径 -->
<property name="log.path" value="logs/cloud-datasource"/>
<!-- 日志输出格式 -->
<property name="log.pattern" value="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"/>
<!-- 控制台输出 -->
<appender name="console" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>${log.pattern}</pattern>
</encoder>
</appender>
<!-- 系统日志输出 -->
<appender name="file_info" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${log.path}/info.log</file>
<!-- 循环政策:基于时间创建日志文件 -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- 日志文件名格式 -->
<fileNamePattern>${log.path}/info.%d{yyyy-MM-dd}.log</fileNamePattern>
<!-- 日志最大的历史 60天 -->
<maxHistory>60</maxHistory>
</rollingPolicy>
<encoder>
<pattern>${log.pattern}</pattern>
</encoder>
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<!-- 过滤的级别 -->
<level>INFO</level>
<!-- 匹配时的操作:接收(记录) -->
<onMatch>ACCEPT</onMatch>
<!-- 不匹配时的操作:拒绝(不记录) -->
<onMismatch>DENY</onMismatch>
</filter>
</appender>
<appender name="file_error" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${log.path}/error.log</file>
<!-- 循环政策:基于时间创建日志文件 -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- 日志文件名格式 -->
<fileNamePattern>${log.path}/error.%d{yyyy-MM-dd}.log</fileNamePattern>
<!-- 日志最大的历史 60天 -->
<maxHistory>60</maxHistory>
</rollingPolicy>
<encoder>
<pattern>${log.pattern}</pattern>
</encoder>
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<!-- 过滤的级别 -->
<level>ERROR</level>
<!-- 匹配时的操作:接收(记录) -->
<onMatch>ACCEPT</onMatch>
<!-- 不匹配时的操作:拒绝(不记录) -->
<onMismatch>DENY</onMismatch>
</filter>
</appender>
<!-- 系统模块日志级别控制 -->
<logger name="com.muyu" level="info"/>
<!-- Spring日志级别控制 -->
<logger name="org.springframework" level="warn"/>
<root level="info">
<appender-ref ref="console"/>
</root>
<!--系统操作日志-->
<root level="info">
<appender-ref ref="file_info"/>
<appender-ref ref="file_error"/>
</root>
</configuration>

View File

@ -0,0 +1,81 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration scan="true" scanPeriod="60 seconds" debug="false">
<!-- 日志存放路径 -->
<property name="log.path" value="logs/cloud-datasource"/>
<!-- 日志输出格式 -->
<property name="log.pattern" value="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"/>
<property name="log.sky.pattern" value="%d{HH:mm:ss.SSS} %yellow([%tid]) [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"/>
<!-- 控制台输出 -->
<appender name="console" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>${log.sky.pattern}</pattern>
</encoder>
</appender>
<!-- 系统日志输出 -->
<appender name="file_info" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${log.path}/info.log</file>
<!-- 循环政策:基于时间创建日志文件 -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- 日志文件名格式 -->
<fileNamePattern>${log.path}/info.%d{yyyy-MM-dd}.log</fileNamePattern>
<!-- 日志最大的历史 60天 -->
<maxHistory>60</maxHistory>
</rollingPolicy>
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<!-- 过滤的级别 -->
<level>INFO</level>
<!-- 匹配时的操作:接收(记录) -->
<onMatch>ACCEPT</onMatch>
<!-- 不匹配时的操作:拒绝(不记录) -->
<onMismatch>DENY</onMismatch>
</filter>
</appender>
<appender name="file_error" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${log.path}/error.log</file>
<!-- 循环政策:基于时间创建日志文件 -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- 日志文件名格式 -->
<fileNamePattern>${log.path}/error.%d{yyyy-MM-dd}.log</fileNamePattern>
<!-- 日志最大的历史 60天 -->
<maxHistory>60</maxHistory>
</rollingPolicy>
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<!-- 过滤的级别 -->
<level>ERROR</level>
<!-- 匹配时的操作:接收(记录) -->
<onMatch>ACCEPT</onMatch>
<!-- 不匹配时的操作:拒绝(不记录) -->
<onMismatch>DENY</onMismatch>
</filter>
</appender>
<!-- 使用gRpc将日志发送到skywalking服务端 -->
<appender name="GRPC_LOG" class="org.apache.skywalking.apm.toolkit.log.logback.v1.x.log.GRPCLogClientAppender">
<encoder class="ch.qos.logback.core.encoder.LayoutWrappingEncoder">
<layout class="org.apache.skywalking.apm.toolkit.log.logback.v1.x.TraceIdPatternLogbackLayout">
<Pattern>${log.sky.pattern}</Pattern>
</layout>
</encoder>
</appender>
<!-- 系统模块日志级别控制 -->
<logger name="com.muyu" level="info"/>
<!-- Spring日志级别控制 -->
<logger name="org.springframework" level="warn"/>
<root level="info">
<appender-ref ref="GRPC_LOG"/>
<appender-ref ref="console"/>
</root>
<!--系统操作日志-->
<root level="info">
<appender-ref ref="file_info"/>
<appender-ref ref="file_error"/>
</root>
</configuration>

View File

@ -0,0 +1,81 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration scan="true" scanPeriod="60 seconds" debug="false">
<!-- 日志存放路径 -->
<property name="log.path" value="logs/cloud-datasource"/>
<!-- 日志输出格式 -->
<property name="log.pattern" value="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"/>
<property name="log.sky.pattern" value="%d{HH:mm:ss.SSS} %yellow([%tid]) [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"/>
<!-- 控制台输出 -->
<appender name="console" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>${log.sky.pattern}</pattern>
</encoder>
</appender>
<!-- 系统日志输出 -->
<appender name="file_info" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${log.path}/info.log</file>
<!-- 循环政策:基于时间创建日志文件 -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- 日志文件名格式 -->
<fileNamePattern>${log.path}/info.%d{yyyy-MM-dd}.log</fileNamePattern>
<!-- 日志最大的历史 60天 -->
<maxHistory>60</maxHistory>
</rollingPolicy>
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<!-- 过滤的级别 -->
<level>INFO</level>
<!-- 匹配时的操作:接收(记录) -->
<onMatch>ACCEPT</onMatch>
<!-- 不匹配时的操作:拒绝(不记录) -->
<onMismatch>DENY</onMismatch>
</filter>
</appender>
<appender name="file_error" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${log.path}/error.log</file>
<!-- 循环政策:基于时间创建日志文件 -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- 日志文件名格式 -->
<fileNamePattern>${log.path}/error.%d{yyyy-MM-dd}.log</fileNamePattern>
<!-- 日志最大的历史 60天 -->
<maxHistory>60</maxHistory>
</rollingPolicy>
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<!-- 过滤的级别 -->
<level>ERROR</level>
<!-- 匹配时的操作:接收(记录) -->
<onMatch>ACCEPT</onMatch>
<!-- 不匹配时的操作:拒绝(不记录) -->
<onMismatch>DENY</onMismatch>
</filter>
</appender>
<!-- 使用gRpc将日志发送到skywalking服务端 -->
<appender name="GRPC_LOG" class="org.apache.skywalking.apm.toolkit.log.logback.v1.x.log.GRPCLogClientAppender">
<encoder class="ch.qos.logback.core.encoder.LayoutWrappingEncoder">
<layout class="org.apache.skywalking.apm.toolkit.log.logback.v1.x.TraceIdPatternLogbackLayout">
<Pattern>${log.sky.pattern}</Pattern>
</layout>
</encoder>
</appender>
<!-- 系统模块日志级别控制 -->
<logger name="com.muyu" level="info"/>
<!-- Spring日志级别控制 -->
<logger name="org.springframework" level="warn"/>
<root level="info">
<appender-ref ref="GRPC_LOG"/>
<appender-ref ref="console"/>
</root>
<!--系统操作日志-->
<root level="info">
<appender-ref ref="file_info"/>
<appender-ref ref="file_error"/>
</root>
</configuration>

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.muyu.etl.data.access.mapper.DataAnalysisMapper">
</mapper>

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.muyu.etl.data.access.mapper.DataStructureMapper">
<!-- 添加 -->
<select id="seleRowNumber" resultType="java.lang.Long">
SELECT TABLE_ROWS FROM information_schema.tables WHERE TABLE_SCHEMA = #{databaseName} and TABLE_NAME = #{tableName}
</select>
</mapper>

View File

@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.muyu.etl.data.access.mapper.EtlTableUserPermissionMapper">
<resultMap type="com.muyu.etl.data.access.domain.EtlTableUserPermission" id="EtlTableUserPermissionResult">
<result property="id" column="id" />
<result property="userId" column="user_id" />
<result property="basicId" column="basic_id" />
<result property="tableId" column="table_id" />
<result property="deptId" column="dept_id" />
<result property="createBy" column="create_by" />
<result property="createByName" column="create_by_name" />
<result property="createTime" column="create_time" />
</resultMap>
<sql id="selectEtlTableUserPermissionVo">
select id, user_id, basic_id, table_id, dept_id,create_by, create_by_name, create_time from etl_table_user_permission
</sql>
<select id="findTableIdAndBasicIdByDeptId" resultType="com.muyu.etl.data.access.domain.EtlTableUserPermission">
SELECT
basic_id,
table_id
FROM
etl_table_user_permission
<where>
<if test="deptId!=null">
and dept_id = #{deptId}
</if>
</where>
</select>
<select id="findTableIdAndBasicIdByUserId" resultType="com.muyu.etl.data.access.domain.EtlTableUserPermission">
SELECT
basic_id,
table_id
FROM
etl_table_user_permission
<where>
<if test="userId!=null">
and user_id = #{userId}
</if>
</where>
</select>
<select id="findDeptIdList" resultType="java.lang.Long">
SELECT
sd.dept_id
FROM
h6_cloud_server.sys_dept sd
LEFT JOIN etl_table_user_permission aa on sd.dept_id = aa.dept_id
<where>
<if test="tableId!=null">
and aa.table_id = #{tableId}
</if>
<if test="basicId!=null">
and aa.basic_id = #{basicId}
</if>
</where>
</select>
<select id="findUserIdList" resultType="java.lang.Long">
SELECT
su.user_id
FROM
h6_cloud_server.sys_user su
LEFT JOIN etl_table_user_permission aa ON su.user_id = aa.user_id
<where>
<if test="tableId!=null">
and aa.table_id = #{tableId}
</if>
<if test="basicId!=null">
and aa.basic_id = #{basicId}
</if>
</where>
</select>
</mapper>

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.muyu.etl.data.access.mapper.TableInfoMapper">
<select id="selectAll" resultType="com.muyu.etl.data.access.domain.TableInfo">
select * from table_info
left join etl_table_user_permission on etl_table_user_permission.table_id = table_info.id
where etl_table_user_permission.user_id = #{userId}
</select>
<select id="getAmount" resultType="java.lang.Long">
select data_num from table_info where table_name =#{tableName}
</select>
</mapper>

View File

@ -0,0 +1,30 @@
package test;
import java.lang.reflect.Field;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/9/4 12:11
* @
*/
public class TestSource {
public static void main(String[] args) {
String databaseName = "cloud-etl";
String tableName = "etl-data";
String columnName = "column_value";
try {
Field declaredField = tableName.getClass().getDeclaredField(columnName);
declaredField.setAccessible(true);
System.out.println(declaredField.get(tableName));
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}

View File

@ -0,0 +1,20 @@
package test;
import com.muyu.etl.data.access.domain.req.EtlDataSqlReq;
/**
* @version 1.0
* @Author xie ya ru
* @Date 2024/9/5 21:16
* @
*/
public class TestThread {
public static void main(String[] args) {
ThreadLocal<EtlDataSqlReq> objectThreadLocal = new ThreadLocal<>();
Long amount = new Long((1806013 / 2000) + 1);
objectThreadLocal.set(new EtlDataSqlReq());
objectThreadLocal.get().setSql("select columnName,tableName from dashuju limit 2000");
}
}

File diff suppressed because it is too large Load Diff

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,728 @@
00:00:02.135 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 7400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@13f433b9[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:02.144 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 254500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@424c6ce8[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:06.556 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 195900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5793d28f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:06.556 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 532800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@25af6cdc[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:11.067 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 53700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@58fe4780[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:11.067 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 242500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4672fab[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:15.691 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 171100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1e0f98[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:15.716 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 807000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@29ae9dff[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:20.439 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 422300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6e33c821[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:20.423 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 83400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1168b54e[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:25.282 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 926200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@26ae22ac[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:25.282 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 967600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6018cdc2[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:30.219 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 738400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@704d5e6c[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:30.220 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 744000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@66a98a29[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:34.473 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=99d371edafab650085476c98eb32013c, Client-RequestTS=1724515234353, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY
00:00:34.582 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=99d371edafab650085476c98eb32013c, Client-RequestTS=1724515234353, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
00:00:34.690 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=99d371edafab650085476c98eb32013c, Client-RequestTS=1724515234353, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY
00:00:34.797 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=99d371edafab650085476c98eb32013c, Client-RequestTS=1724515234353, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY
00:00:34.798 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error
com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY
at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644)
at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221)
at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202)
at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:35.238 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 683800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@35c9b4bc[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:35.253 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 745900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4294bbbe[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:40.356 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 797200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3c7d38b[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:40.386 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 641700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1d17d46b[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:45.581 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 964700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5521aa53[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:45.611 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 513600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@f938a7c[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:50.892 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 343100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@15d8da34[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:50.924 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 796700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3cdb3565[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:56.316 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 46300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@36cfa229[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:00:56.347 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 648100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@a5da7c[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:01.841 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 17600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@62cbf50b[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:01.872 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 765300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@14224aae[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:07.457 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 964600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3356fbaf[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:07.488 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 680600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3c9bb6f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:13.170 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 505600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@737732b7[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:13.216 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 701400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@18268b04[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:18.977 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 28800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2818bad7[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:19.040 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 393200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@69a912f7[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:24.912 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 956900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3ce793a8[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:24.945 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 811600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@59cbfbec[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:30.922 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 975200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6bf73b85[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:30.954 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 78600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5b645451[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:37.044 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 5300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@13e6ba5[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:37.074 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 869100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@75169999[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:43.249 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 966000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@8b5315f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:43.295 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 884500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@52ba0076[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:49.577 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 956100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@24548b20[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:49.625 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 549000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3e2e9a5b[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:56.021 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 567400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@78973207[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:01:56.038 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 763200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@369fc47f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:02:02.541 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 834700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@f1cd7af[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:02:02.549 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 316300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4ede4664[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@37992b93, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3411b1cf, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@579c4d60}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:02:08.115 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY
00:02:08.225 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
00:02:08.335 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY
00:02:08.439 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY
00:02:08.575 [SpringApplicationShutdownHook] ERROR c.a.c.n.r.NacosServiceRegistry - [deregister,111] - ERR_NACOS_DEREGISTER, de-register failed...NacosRegistration{nacosDiscoveryProperties=NacosDiscoveryProperties{serverAddr='21.12.2.1:8848', username='nacos', password='nacos', endpoint='', namespace='wu_zu_cloud', watchDelay=30000, logName='', service='cloud-datasource', weight=1.0, clusterName='DEFAULT', group='DEFAULT_GROUP', namingLoadCacheAtStart='false', metadata={IPv6=[2409:891f:90c1:4328:e8a1:ccf3:406e:4b99], preserved.register.source=SPRING_CLOUD}, registerEnabled=true, ip='192.168.43.229', networkInterface='', port=10003, secure=false, accessKey='', secretKey='', heartBeatInterval=null, heartBeatTimeout=null, ipDeleteTimeout=null, instanceEnabled=true, ephemeral=true, failureToleranceEnabled=false}, ipDeleteTimeout=null, failFast=true}},
com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY
at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644)
at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623)
at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447)
at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doDeregisterService(NamingGrpcClientProxy.java:308)
at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.deregisterServiceForEphemeral(NamingGrpcClientProxy.java:293)
at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.deregisterService(NamingGrpcClientProxy.java:275)
at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.deregisterService(NamingClientProxyDelegate.java:122)
at com.alibaba.nacos.client.naming.NacosNamingService.deregisterInstance(NacosNamingService.java:204)
at com.alibaba.nacos.client.naming.NacosNamingService.deregisterInstance(NacosNamingService.java:192)
at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.deregister(NacosServiceRegistry.java:107)
at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.deregister(AbstractAutoServiceRegistration.java:281)
at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.stop(AbstractAutoServiceRegistration.java:299)
at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.destroy(AbstractAutoServiceRegistration.java:233)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMethod.invoke(InitDestroyAnnotationBeanPostProcessor.java:457)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeDestroyMethods(InitDestroyAnnotationBeanPostProcessor.java:415)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeDestruction(InitDestroyAnnotationBeanPostProcessor.java:239)
at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:202)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:587)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:559)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:1202)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:520)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:1195)
at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1186)
at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1147)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.doClose(ServletWebServerApplicationContext.java:174)
at org.springframework.context.support.AbstractApplicationContext.close(AbstractApplicationContext.java:1093)
at org.springframework.boot.SpringApplicationShutdownHook.closeAndWait(SpringApplicationShutdownHook.java:145)
at java.base/java.lang.Iterable.forEach(Iterable.java:75)
at org.springframework.boot.SpringApplicationShutdownHook.run(SpringApplicationShutdownHook.java:114)
at java.base/java.lang.Thread.run(Thread.java:842)
00:02:08.583 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.lang.InterruptedException: null
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:460)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
18:37:59.557 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 734500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@394f58f7[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@559cedee, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@18371d89, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4f3faa70}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)

File diff suppressed because it is too large Load Diff

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,585 @@
08:54:02.641 [nacos-grpc-client-executor-21.12.2.1-53] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1724978591836_21.12.5.6_61846]Request stream onCompleted, switch server
08:54:02.641 [nacos-grpc-client-executor-21.12.2.1-67] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1724978576238_21.12.5.6_61796]Request stream onCompleted, switch server
08:54:03.012 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2f19a1c0c07a5aba401f8e4937baf883, Client-RequestTS=1724979242635, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered.
08:54:03.121 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2f19a1c0c07a5aba401f8e4937baf883, Client-RequestTS=1724979242635, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
08:54:03.229 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2f19a1c0c07a5aba401f8e4937baf883, Client-RequestTS=1724979242635, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY
08:54:03.240 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.lang.InterruptedException: null
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:460)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
09:31:38.502 [nacos-grpc-client-executor-21.12.2.1-244] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1724980209064_21.12.5.6_62754]Request stream onCompleted, switch server
09:31:38.502 [nacos-grpc-client-executor-21.12.2.1-224] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1724980223614_21.12.5.6_62775]Request stream onCompleted, switch server
09:31:39.370 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0edf804bd6554d95c3edff730a6494b0, Client-RequestTS=1724981498499, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered.
09:31:39.479 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0edf804bd6554d95c3edff730a6494b0, Client-RequestTS=1724981498499, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
09:31:39.587 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0edf804bd6554d95c3edff730a6494b0, Client-RequestTS=1724981498499, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY
09:31:39.697 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0edf804bd6554d95c3edff730a6494b0, Client-RequestTS=1724981498499, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY
09:31:39.697 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error
com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY
at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644)
at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221)
at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202)
at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
09:32:59.658 [nacos-grpc-client-executor-21.12.2.1-246] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1724981497260_21.12.5.6_63200]Request stream onCompleted, switch server
09:32:59.658 [nacos-grpc-client-executor-21.12.2.1-270] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1724981497260_21.12.5.6_63199]Request stream onCompleted, switch server
09:34:50.693 [nacos-grpc-client-executor-21.12.2.1-270] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1724981578260_21.12.5.6_61481]Request stream onCompleted, switch server
09:34:50.693 [nacos-grpc-client-executor-21.12.2.1-296] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1724981578260_21.12.5.6_61480]Request stream onCompleted, switch server
09:34:51.023 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=40bc4d297cfeb6453a8474248568e57e, Client-RequestTS=1724981690688, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered.
09:34:51.124 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=40bc4d297cfeb6453a8474248568e57e, Client-RequestTS=1724981690688, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
09:34:51.237 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=40bc4d297cfeb6453a8474248568e57e, Client-RequestTS=1724981690688, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY
09:34:51.345 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=40bc4d297cfeb6453a8474248568e57e, Client-RequestTS=1724981690688, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY
09:34:51.345 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error
com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY
at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644)
at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221)
at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202)
at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
19:06:01.003 [nacos-grpc-client-executor-21.12.2.1-139] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725015215008_21.12.5.6_62698]Request stream onCompleted, switch server
19:06:01.003 [nacos-grpc-client-executor-21.12.2.1-152] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725015201516_21.12.5.6_62657]Request stream onCompleted, switch server
19:06:01.295 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1e3821c3cc0e2dfd68a9d54265de2a9a, Client-RequestTS=1725015928337, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered.
19:06:01.405 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1e3821c3cc0e2dfd68a9d54265de2a9a, Client-RequestTS=1725015928337, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
19:38:33.183 [http-nio-10003-exec-1] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/dataSource/queryData',发生未知异常.
java.lang.RuntimeException: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
at com.muyu.etl.service.impl.DataSourceServiceImpl.syncAssetStructure(DataSourceServiceImpl.java:221)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354)
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:716)
at com.muyu.etl.service.impl.DataSourceServiceImpl$$SpringCGLIB$$0.syncAssetStructure(<generated>)
at com.muyu.etl.controller.DataSourceController.syncAssetStructure(DataSourceController.java:135)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:98)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:90)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:64)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:74)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:73)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1610)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1524)
at com.muyu.etl.service.impl.DataSourceServiceImpl.syncAssetStructure(DataSourceServiceImpl.java:149)
... 62 common frames omitted
Caused by: com.mysql.cj.exceptions.ConnectionIsClosedException: No operations allowed after connection closed.
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:104)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:149)
at com.mysql.cj.NativeSession.checkClosed(NativeSession.java:756)
at com.mysql.cj.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:556)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1539)
... 64 common frames omitted
19:39:26.011 [http-nio-10003-exec-2] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/dataSource/queryData',发生未知异常.
java.lang.RuntimeException: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
at com.muyu.etl.service.impl.DataSourceServiceImpl.syncAssetStructure(DataSourceServiceImpl.java:221)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354)
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:716)
at com.muyu.etl.service.impl.DataSourceServiceImpl$$SpringCGLIB$$0.syncAssetStructure(<generated>)
at com.muyu.etl.controller.DataSourceController.syncAssetStructure(DataSourceController.java:135)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:98)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:90)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:64)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:74)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:73)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1610)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1524)
at com.muyu.etl.service.impl.DataSourceServiceImpl.syncAssetStructure(DataSourceServiceImpl.java:149)
... 62 common frames omitted
Caused by: com.mysql.cj.exceptions.ConnectionIsClosedException: No operations allowed after connection closed.
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:104)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:149)
at com.mysql.cj.NativeSession.checkClosed(NativeSession.java:756)
at com.mysql.cj.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:556)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1539)
... 64 common frames omitted
19:41:17.662 [http-nio-10003-exec-3] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/dataSource/queryData',发生未知异常.
java.lang.RuntimeException: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
at com.muyu.etl.service.impl.DataSourceServiceImpl.syncAssetStructure(DataSourceServiceImpl.java:221)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354)
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:716)
at com.muyu.etl.service.impl.DataSourceServiceImpl$$SpringCGLIB$$0.syncAssetStructure(<generated>)
at com.muyu.etl.controller.DataSourceController.syncAssetStructure(DataSourceController.java:135)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:98)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:90)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:64)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:74)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:73)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1610)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1524)
at com.muyu.etl.service.impl.DataSourceServiceImpl.syncAssetStructure(DataSourceServiceImpl.java:149)
... 62 common frames omitted
Caused by: com.mysql.cj.exceptions.ConnectionIsClosedException: No operations allowed after connection closed.
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:104)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:149)
at com.mysql.cj.NativeSession.checkClosed(NativeSession.java:756)
at com.mysql.cj.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:556)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1539)
... 64 common frames omitted
19:41:17.667 [nacos-grpc-client-executor-21.12.2.1-38] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725017861873_21.12.5.6_63167]Request stream onCompleted, switch server
19:41:17.668 [nacos-grpc-client-executor-21.12.2.1-26] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725017875444_21.12.5.6_63231]Request stream onCompleted, switch server
19:41:17.916 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=279bc1439c115c18d9d2301c9138a7c6, Client-RequestTS=1725018077658, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered.
19:41:17.961 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY
19:41:18.017 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=279bc1439c115c18d9d2301c9138a7c6, Client-RequestTS=1725018077658, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
19:41:18.065 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
19:41:18.118 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=279bc1439c115c18d9d2301c9138a7c6, Client-RequestTS=1725018077658, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY
19:41:18.165 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY
19:41:18.220 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=279bc1439c115c18d9d2301c9138a7c6, Client-RequestTS=1725018077658, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY
19:41:18.220 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error
com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY
at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644)
at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221)
at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202)
at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
19:41:18.277 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY
19:41:18.286 [SpringApplicationShutdownHook] ERROR c.a.c.n.r.NacosServiceRegistry - [deregister,111] - ERR_NACOS_DEREGISTER, de-register failed...NacosRegistration{nacosDiscoveryProperties=NacosDiscoveryProperties{serverAddr='21.12.2.1:8848', username='nacos', password='nacos', endpoint='', namespace='wu_zu_cloud', watchDelay=30000, logName='', service='cloud-datasource', weight=1.0, clusterName='DEFAULT', group='DEFAULT_GROUP', namingLoadCacheAtStart='false', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}, registerEnabled=true, ip='192.168.1.125', networkInterface='', port=10003, secure=false, accessKey='', secretKey='', heartBeatInterval=null, heartBeatTimeout=null, ipDeleteTimeout=null, instanceEnabled=true, ephemeral=true, failureToleranceEnabled=false}, ipDeleteTimeout=null, failFast=true}},
com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY
at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644)
at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623)
at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447)
at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doDeregisterService(NamingGrpcClientProxy.java:308)
at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.deregisterServiceForEphemeral(NamingGrpcClientProxy.java:293)
at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.deregisterService(NamingGrpcClientProxy.java:275)
at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.deregisterService(NamingClientProxyDelegate.java:122)
at com.alibaba.nacos.client.naming.NacosNamingService.deregisterInstance(NacosNamingService.java:204)
at com.alibaba.nacos.client.naming.NacosNamingService.deregisterInstance(NacosNamingService.java:192)
at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.deregister(NacosServiceRegistry.java:107)
at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.deregister(AbstractAutoServiceRegistration.java:281)
at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.stop(AbstractAutoServiceRegistration.java:299)
at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.destroy(AbstractAutoServiceRegistration.java:233)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMethod.invoke(InitDestroyAnnotationBeanPostProcessor.java:457)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeDestroyMethods(InitDestroyAnnotationBeanPostProcessor.java:415)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeDestruction(InitDestroyAnnotationBeanPostProcessor.java:239)
at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:202)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:587)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:559)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:1202)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:520)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:1195)
at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1186)
at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1147)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.doClose(ServletWebServerApplicationContext.java:174)
at org.springframework.context.support.AbstractApplicationContext.close(AbstractApplicationContext.java:1093)
at org.springframework.boot.SpringApplicationShutdownHook.closeAndWait(SpringApplicationShutdownHook.java:145)
at java.base/java.lang.Iterable.forEach(Iterable.java:75)
at org.springframework.boot.SpringApplicationShutdownHook.run(SpringApplicationShutdownHook.java:114)
at java.base/java.lang.Thread.run(Thread.java:842)
19:42:53.090 [nacos-grpc-client-executor-21.12.2.1-25] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725018083567_21.12.5.6_62289]Request stream onCompleted, switch server
19:42:54.287 [nacos-grpc-client-executor-21.12.2.1-13] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725018102431_21.12.5.6_62460]Request stream onCompleted, switch server
19:42:54.284 [http-nio-10003-exec-1] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/dataSource/queryData',发生未知异常.
java.lang.RuntimeException: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
at com.muyu.etl.service.impl.DataSourceServiceImpl.syncAssetStructure(DataSourceServiceImpl.java:221)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354)
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:716)
at com.muyu.etl.service.impl.DataSourceServiceImpl$$SpringCGLIB$$0.syncAssetStructure(<generated>)
at com.muyu.etl.controller.DataSourceController.syncAssetStructure(DataSourceController.java:135)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:98)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:90)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:64)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:74)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:73)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1610)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1524)
at com.muyu.etl.service.impl.DataSourceServiceImpl.syncAssetStructure(DataSourceServiceImpl.java:149)
... 62 common frames omitted
Caused by: com.mysql.cj.exceptions.ConnectionIsClosedException: No operations allowed after connection closed.
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:104)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:149)
at com.mysql.cj.NativeSession.checkClosed(NativeSession.java:756)
at com.mysql.cj.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:556)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1539)
... 64 common frames omitted
19:42:57.435 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: Channel shutdownNow invoked
19:43:42.191 [nacos-grpc-client-executor-21.12.2.1-33] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725018169776_21.12.5.6_62735]Request stream onCompleted, switch server
19:43:54.961 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1924 milliseconds, 159600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@589dede4[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@e5843ff, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4b5c5747, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d384ff0}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
19:46:43.390 [nacos-grpc-client-executor-21.12.2.1-47] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725018169776_21.12.5.6_62736]Request stream onCompleted, switch server
19:46:43.389 [http-nio-10003-exec-2] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/dataSource/queryData',发生未知异常.
java.lang.RuntimeException: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
at com.muyu.etl.service.impl.DataSourceServiceImpl.syncAssetStructure(DataSourceServiceImpl.java:221)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354)
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:716)
at com.muyu.etl.service.impl.DataSourceServiceImpl$$SpringCGLIB$$0.syncAssetStructure(<generated>)
at com.muyu.etl.controller.DataSourceController.syncAssetStructure(DataSourceController.java:135)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:98)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:90)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:64)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:74)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:73)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1610)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1524)
at com.muyu.etl.service.impl.DataSourceServiceImpl.syncAssetStructure(DataSourceServiceImpl.java:149)
... 62 common frames omitted
Caused by: com.mysql.cj.exceptions.ConnectionIsClosedException: No operations allowed after connection closed.
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:104)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:149)
at com.mysql.cj.NativeSession.checkClosed(NativeSession.java:756)
at com.mysql.cj.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:556)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1539)
... 64 common frames omitted
19:46:43.657 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e578f1f6ed8a88a48308de75e1935db0, Client-RequestTS=1725018403385, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered.
19:46:43.768 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e578f1f6ed8a88a48308de75e1935db0, Client-RequestTS=1725018403385, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY

View File

@ -0,0 +1,520 @@
00:34:11.165 [nacos-grpc-client-executor-21.12.2.1-125] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725035089259_21.12.5.6_62178]Request stream error, switch server,error={}
com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
... 1 common frames omitted
00:34:11.185 [nacos-grpc-client-executor-21.12.2.1-108] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725035110850_21.12.5.6_62221]Request stream error, switch server,error={}
com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537)
at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735)
at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716)
at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
... 1 common frames omitted
00:34:14.183 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 450200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@25177d08[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1b80e055, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@415e4be6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1e016b3}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:34:17.314 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 206500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@fd353c9[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1b80e055, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@415e4be6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1e016b3}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:34:20.527 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 498200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@270e6c28[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1b80e055, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@415e4be6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1e016b3}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:34:23.849 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 209700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6f412303[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1b80e055, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@415e4be6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1e016b3}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:34:26.274 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 702800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5067ddae[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1b80e055, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@415e4be6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1e016b3}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:34:27.263 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 19400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7c04a23b[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1b80e055, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@415e4be6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1e016b3}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
00:34:28.963 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY
00:34:29.072 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
00:34:29.181 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY
00:34:29.285 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY
00:34:29.301 [SpringApplicationShutdownHook] ERROR c.a.c.n.r.NacosServiceRegistry - [deregister,111] - ERR_NACOS_DEREGISTER, de-register failed...NacosRegistration{nacosDiscoveryProperties=NacosDiscoveryProperties{serverAddr='21.12.2.1:8848', username='nacos', password='nacos', endpoint='', namespace='wu_zu_cloud', watchDelay=30000, logName='', service='cloud-datasource', weight=1.0, clusterName='DEFAULT', group='DEFAULT_GROUP', namingLoadCacheAtStart='false', metadata={IPv6=[240e:46c:7330:c82a:dfab:c76d:8f16:9744], preserved.register.source=SPRING_CLOUD}, registerEnabled=true, ip='192.168.0.3', networkInterface='', port=10003, secure=false, accessKey='', secretKey='', heartBeatInterval=null, heartBeatTimeout=null, ipDeleteTimeout=null, instanceEnabled=true, ephemeral=true, failureToleranceEnabled=false}, ipDeleteTimeout=null, failFast=true}},
com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY
at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644)
at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623)
at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447)
at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doDeregisterService(NamingGrpcClientProxy.java:308)
at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.deregisterServiceForEphemeral(NamingGrpcClientProxy.java:293)
at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.deregisterService(NamingGrpcClientProxy.java:275)
at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.deregisterService(NamingClientProxyDelegate.java:122)
at com.alibaba.nacos.client.naming.NacosNamingService.deregisterInstance(NacosNamingService.java:204)
at com.alibaba.nacos.client.naming.NacosNamingService.deregisterInstance(NacosNamingService.java:192)
at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.deregister(NacosServiceRegistry.java:107)
at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.deregister(AbstractAutoServiceRegistration.java:281)
at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.stop(AbstractAutoServiceRegistration.java:299)
at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.destroy(AbstractAutoServiceRegistration.java:233)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMethod.invoke(InitDestroyAnnotationBeanPostProcessor.java:457)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeDestroyMethods(InitDestroyAnnotationBeanPostProcessor.java:415)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeDestruction(InitDestroyAnnotationBeanPostProcessor.java:239)
at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:202)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:587)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:559)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:1202)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:520)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:1195)
at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1186)
at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1147)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.doClose(ServletWebServerApplicationContext.java:174)
at org.springframework.context.support.AbstractApplicationContext.close(AbstractApplicationContext.java:1093)
at org.springframework.boot.SpringApplicationShutdownHook.closeAndWait(SpringApplicationShutdownHook.java:145)
at java.base/java.lang.Iterable.forEach(Iterable.java:75)
at org.springframework.boot.SpringApplicationShutdownHook.run(SpringApplicationShutdownHook.java:114)
at java.base/java.lang.Thread.run(Thread.java:842)
00:34:29.305 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.lang.InterruptedException: null
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:460)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
08:59:56.838 [nacos-grpc-client-executor-21.12.2.1-43] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725065702040_21.12.5.6_61522]Request stream onCompleted, switch server
08:59:56.838 [nacos-grpc-client-executor-21.12.2.1-60] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725065683000_21.12.5.6_61509]Request stream onCompleted, switch server
08:59:56.838 [http-nio-10003-exec-3] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/dataSource/queryData',发生未知异常.
java.lang.RuntimeException: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
at com.muyu.etl.service.impl.DataSourceServiceImpl.syncAssetStructure(DataSourceServiceImpl.java:216)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354)
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:716)
at com.muyu.etl.service.impl.DataSourceServiceImpl$$SpringCGLIB$$0.syncAssetStructure(<generated>)
at com.muyu.etl.controller.DataSourceController.syncAssetStructure(DataSourceController.java:135)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:98)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:90)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:64)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:74)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:73)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1610)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1524)
at com.muyu.etl.service.impl.DataSourceServiceImpl.syncAssetStructure(DataSourceServiceImpl.java:148)
... 62 common frames omitted
Caused by: com.mysql.cj.exceptions.ConnectionIsClosedException: No operations allowed after connection closed.
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:104)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:149)
at com.mysql.cj.NativeSession.checkClosed(NativeSession.java:756)
at com.mysql.cj.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:556)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1539)
... 64 common frames omitted
08:59:57.187 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY
08:59:57.296 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
08:59:57.408 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY
08:59:57.517 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY
08:59:57.532 [SpringApplicationShutdownHook] ERROR c.a.c.n.r.NacosServiceRegistry - [deregister,111] - ERR_NACOS_DEREGISTER, de-register failed...NacosRegistration{nacosDiscoveryProperties=NacosDiscoveryProperties{serverAddr='21.12.2.1:8848', username='nacos', password='nacos', endpoint='', namespace='wu_zu_cloud', watchDelay=30000, logName='', service='cloud-datasource', weight=1.0, clusterName='DEFAULT', group='DEFAULT_GROUP', namingLoadCacheAtStart='false', metadata={IPv6=[240e:46c:7330:c82a:dfab:c76d:8f16:9744], preserved.register.source=SPRING_CLOUD}, registerEnabled=true, ip='192.168.0.3', networkInterface='', port=10003, secure=false, accessKey='', secretKey='', heartBeatInterval=null, heartBeatTimeout=null, ipDeleteTimeout=null, instanceEnabled=true, ephemeral=true, failureToleranceEnabled=false}, ipDeleteTimeout=null, failFast=true}},
com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY
at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644)
at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623)
at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447)
at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doDeregisterService(NamingGrpcClientProxy.java:308)
at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.deregisterServiceForEphemeral(NamingGrpcClientProxy.java:293)
at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.deregisterService(NamingGrpcClientProxy.java:275)
at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.deregisterService(NamingClientProxyDelegate.java:122)
at com.alibaba.nacos.client.naming.NacosNamingService.deregisterInstance(NacosNamingService.java:204)
at com.alibaba.nacos.client.naming.NacosNamingService.deregisterInstance(NacosNamingService.java:192)
at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.deregister(NacosServiceRegistry.java:107)
at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.deregister(AbstractAutoServiceRegistration.java:281)
at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.stop(AbstractAutoServiceRegistration.java:299)
at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.destroy(AbstractAutoServiceRegistration.java:233)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMethod.invoke(InitDestroyAnnotationBeanPostProcessor.java:457)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeDestroyMethods(InitDestroyAnnotationBeanPostProcessor.java:415)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeDestruction(InitDestroyAnnotationBeanPostProcessor.java:239)
at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:202)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:587)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:559)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:1202)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:520)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:1195)
at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1186)
at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1147)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.doClose(ServletWebServerApplicationContext.java:174)
at org.springframework.context.support.AbstractApplicationContext.close(AbstractApplicationContext.java:1093)
at org.springframework.boot.SpringApplicationShutdownHook.closeAndWait(SpringApplicationShutdownHook.java:145)
at java.base/java.lang.Iterable.forEach(Iterable.java:75)
at org.springframework.boot.SpringApplicationShutdownHook.run(SpringApplicationShutdownHook.java:114)
at java.base/java.lang.Thread.run(Thread.java:842)
08:59:57.536 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [connectToServer,421] - [371fdb6a-138a-490f-857c-8b12f83950a9]Fail to connect to server!,error={}
java.lang.InterruptedException: null
at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer.tryAcquireSharedNanos(AbstractQueuedSynchronizer.java:1081)
at java.base/java.util.concurrent.CountDownLatch.await(CountDownLatch.java:276)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient$RecAbilityContext.await(GrpcClient.java:508)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:408)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
09:02:45.834 [nacos-grpc-client-executor-21.12.2.1-32] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725066010283_21.12.5.6_61700]Request stream onCompleted, switch server
09:02:45.836 [nacos-grpc-client-executor-21.12.2.1-16] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725066032200_21.12.5.6_61720]Request stream onCompleted, switch server
09:02:44.424 [http-nio-10003-exec-2] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/dataSource/queryData',发生未知异常.
java.lang.RuntimeException: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
at com.muyu.etl.service.impl.DataSourceServiceImpl.syncAssetStructure(DataSourceServiceImpl.java:217)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354)
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:716)
at com.muyu.etl.service.impl.DataSourceServiceImpl$$SpringCGLIB$$0.syncAssetStructure(<generated>)
at com.muyu.etl.controller.DataSourceController.syncAssetStructure(DataSourceController.java:135)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:98)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:90)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:64)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:74)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:73)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1610)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1524)
at com.muyu.etl.service.impl.DataSourceServiceImpl.syncAssetStructure(DataSourceServiceImpl.java:149)
... 62 common frames omitted
Caused by: com.mysql.cj.exceptions.ConnectionIsClosedException: No operations allowed after connection closed.
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:104)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:149)
at com.mysql.cj.NativeSession.checkClosed(NativeSession.java:756)
at com.mysql.cj.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:556)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1539)
... 64 common frames omitted
09:02:45.839 [http-nio-10003-exec-1] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/dataSource/queryData',发生未知异常.
java.lang.RuntimeException: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
at com.muyu.etl.service.impl.DataSourceServiceImpl.syncAssetStructure(DataSourceServiceImpl.java:217)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354)
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:716)
at com.muyu.etl.service.impl.DataSourceServiceImpl$$SpringCGLIB$$0.syncAssetStructure(<generated>)
at com.muyu.etl.controller.DataSourceController.syncAssetStructure(DataSourceController.java:135)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:98)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:90)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:64)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:74)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:73)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1610)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1524)
at com.muyu.etl.service.impl.DataSourceServiceImpl.syncAssetStructure(DataSourceServiceImpl.java:149)
... 62 common frames omitted
Caused by: com.mysql.cj.exceptions.ConnectionIsClosedException: No operations allowed after connection closed.
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:104)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:149)
at com.mysql.cj.NativeSession.checkClosed(NativeSession.java:756)
at com.mysql.cj.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:556)
at com.mysql.cj.jdbc.ConnectionImpl.prepareStatement(ConnectionImpl.java:1539)
... 64 common frames omitted

View File

@ -0,0 +1,607 @@
20:55:46.175 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataAnalysisController': Injection of resource dependencies failed
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:371)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
at com.muyu.etl.CloudDataSourceApplication.main(CloudDataSourceApplication.java:20)
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataAnalysisServiceImpl': Injection of resource dependencies failed
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:371)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:598)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789)
at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368)
... 17 common frames omitted
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'dataAnalysisMapper' defined in file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\com\muyu\etl\mapper\DataAnalysisMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\TableUserPermissionMapper.xml]'
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.resolveBeanByName(AbstractAutowireCapableBeanFactory.java:461)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:605)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789)
at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368)
... 33 common frames omitted
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\TableUserPermissionMapper.xml]'
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503)
... 47 common frames omitted
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\TableUserPermissionMapper.xml]'
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177)
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644)
... 60 common frames omitted
Caused by: java.io.IOException: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\TableUserPermissionMapper.xml]'
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:680)
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:553)
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:711)
at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:224)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
... 61 common frames omitted
Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\TableUserPermissionMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'EtlTableUserPermission'. Cause: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:129)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.parse(MybatisXMLMapperBuilder.java:102)
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:678)
... 69 common frames omitted
Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'EtlTableUserPermission'. Cause: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:103)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:226)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:218)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElements(MybatisXMLMapperBuilder.java:210)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:125)
... 71 common frames omitted
Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'EtlTableUserPermission'. Cause: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:128)
at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:132)
at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:101)
... 75 common frames omitted
Caused by: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:226)
at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:103)
at org.apache.ibatis.io.Resources.classForName(Resources.java:322)
at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:124)
... 77 common frames omitted
20:57:34.813 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataAnalysisController': Injection of resource dependencies failed
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:371)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
at com.muyu.etl.CloudDataSourceApplication.main(CloudDataSourceApplication.java:20)
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataAnalysisServiceImpl': Injection of resource dependencies failed
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:371)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:598)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789)
at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368)
... 17 common frames omitted
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'dataAnalysisMapper' defined in file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\com\muyu\etl\mapper\DataAnalysisMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\TableUserPermissionMapper.xml]'
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.resolveBeanByName(AbstractAutowireCapableBeanFactory.java:461)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:605)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789)
at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368)
... 33 common frames omitted
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\TableUserPermissionMapper.xml]'
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503)
... 47 common frames omitted
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\TableUserPermissionMapper.xml]'
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177)
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644)
... 60 common frames omitted
Caused by: java.io.IOException: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\TableUserPermissionMapper.xml]'
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:680)
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:553)
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:711)
at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:224)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
... 61 common frames omitted
Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\TableUserPermissionMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'EtlTableUserPermission'. Cause: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:129)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.parse(MybatisXMLMapperBuilder.java:102)
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:678)
... 69 common frames omitted
Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'EtlTableUserPermission'. Cause: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:103)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:226)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:218)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElements(MybatisXMLMapperBuilder.java:210)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:125)
... 71 common frames omitted
Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'EtlTableUserPermission'. Cause: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:128)
at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:132)
at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:101)
... 75 common frames omitted
Caused by: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:226)
at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:103)
at org.apache.ibatis.io.Resources.classForName(Resources.java:322)
at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:124)
... 77 common frames omitted
21:02:10.274 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataAnalysisController': Injection of resource dependencies failed
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:371)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
at com.muyu.etl.CloudDataSourceApplication.main(CloudDataSourceApplication.java:20)
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataAnalysisServiceImpl': Injection of resource dependencies failed
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:371)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:598)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789)
at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368)
... 17 common frames omitted
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'dataAnalysisMapper' defined in file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\com\muyu\etl\mapper\DataAnalysisMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\EtlTableUserPermissionMapper.xml]'
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.resolveBeanByName(AbstractAutowireCapableBeanFactory.java:461)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:605)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789)
at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368)
... 33 common frames omitted
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\EtlTableUserPermissionMapper.xml]'
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503)
... 47 common frames omitted
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\EtlTableUserPermissionMapper.xml]'
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177)
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644)
... 60 common frames omitted
Caused by: java.io.IOException: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\EtlTableUserPermissionMapper.xml]'
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:680)
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:553)
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:711)
at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:224)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
... 61 common frames omitted
Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\EtlTableUserPermissionMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'EtlTableUserPermission'. Cause: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:129)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.parse(MybatisXMLMapperBuilder.java:102)
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:678)
... 69 common frames omitted
Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'EtlTableUserPermission'. Cause: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:103)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:226)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:218)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElements(MybatisXMLMapperBuilder.java:210)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:125)
... 71 common frames omitted
Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'EtlTableUserPermission'. Cause: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:128)
at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:132)
at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:101)
... 75 common frames omitted
Caused by: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:226)
at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:103)
at org.apache.ibatis.io.Resources.classForName(Resources.java:322)
at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:124)
... 77 common frames omitted
21:03:03.571 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataAnalysisController': Injection of resource dependencies failed
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:371)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
at com.muyu.etl.CloudDataSourceApplication.main(CloudDataSourceApplication.java:20)
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataAnalysisServiceImpl': Injection of resource dependencies failed
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:371)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:598)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789)
at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368)
... 17 common frames omitted
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'dataAnalysisMapper' defined in file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\com\muyu\etl\mapper\DataAnalysisMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\EtlTableUserPermissionMapper.xml]'
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.resolveBeanByName(AbstractAutowireCapableBeanFactory.java:461)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:605)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789)
at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368)
... 33 common frames omitted
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\EtlTableUserPermissionMapper.xml]'
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503)
... 47 common frames omitted
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\EtlTableUserPermissionMapper.xml]'
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177)
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644)
... 60 common frames omitted
Caused by: java.io.IOException: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\EtlTableUserPermissionMapper.xml]'
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:680)
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:553)
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:711)
at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:224)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
... 61 common frames omitted
Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\EtlTableUserPermissionMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'EtlTableUserPermission'. Cause: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:129)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.parse(MybatisXMLMapperBuilder.java:102)
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:678)
... 69 common frames omitted
Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'EtlTableUserPermission'. Cause: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:103)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:226)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:218)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElements(MybatisXMLMapperBuilder.java:210)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:125)
... 71 common frames omitted
Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'EtlTableUserPermission'. Cause: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:128)
at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:132)
at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:101)
... 75 common frames omitted
Caused by: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:226)
at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:103)
at org.apache.ibatis.io.Resources.classForName(Resources.java:322)
at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:124)
... 77 common frames omitted
21:06:11.442 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataAnalysisController': Injection of resource dependencies failed
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:371)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
at com.muyu.etl.CloudDataSourceApplication.main(CloudDataSourceApplication.java:20)
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataAnalysisServiceImpl': Injection of resource dependencies failed
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:371)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:598)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789)
at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368)
... 17 common frames omitted
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'dataAnalysisMapper' defined in file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\com\muyu\etl\mapper\DataAnalysisMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\EtlTableUserPermissionMapper.xml]'
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.resolveBeanByName(AbstractAutowireCapableBeanFactory.java:461)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:605)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789)
at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368)
... 33 common frames omitted
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\EtlTableUserPermissionMapper.xml]'
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503)
... 47 common frames omitted
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\EtlTableUserPermissionMapper.xml]'
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177)
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644)
... 60 common frames omitted
Caused by: java.io.IOException: Failed to parse mapping resource: 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\EtlTableUserPermissionMapper.xml]'
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:680)
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:553)
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:711)
at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:224)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
... 61 common frames omitted
Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [D:\workspaces\hh6\cloud-etl-datasource\etl-datasource-server\target\classes\mapper\EtlTableUserPermissionMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'EtlTableUserPermission'. Cause: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:129)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.parse(MybatisXMLMapperBuilder.java:102)
at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:678)
... 69 common frames omitted
Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'EtlTableUserPermission'. Cause: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:103)
at org.apache.ibatis.builder.xml.XMLStatementBuilder.parseStatementNode(XMLStatementBuilder.java:78)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.buildStatementFromContext(MybatisXMLMapperBuilder.java:145)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.buildStatementFromContext(MybatisXMLMapperBuilder.java:137)
at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:127)
... 71 common frames omitted
Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'EtlTableUserPermission'. Cause: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:128)
at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:132)
at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:101)
... 75 common frames omitted
Caused by: java.lang.ClassNotFoundException: Cannot find class: EtlTableUserPermission
at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:226)
at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:103)
at org.apache.ibatis.io.Resources.classForName(Resources.java:322)
at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:124)
... 77 common frames omitted
21:30:54.334 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'requestMappingHandlerMapping' defined in class path resource [org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$EnableWebMvcConfiguration.class]: Ambiguous mapping. Cannot map 'etlTableUserPermissionController' method
com.muyu.etl.controller.EtlTableUserPermissionController#edit(EtlTableUserPermission)
to {PUT [/permission]}: There is already 'etlTableUserPermissionController' bean method
com.muyu.etl.controller.EtlTableUserPermissionController#updatePermission(EtlTableUserPermissionReq) mapped.
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1788)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
at com.muyu.etl.CloudDataSourceApplication.main(CloudDataSourceApplication.java:20)
Caused by: java.lang.IllegalStateException: Ambiguous mapping. Cannot map 'etlTableUserPermissionController' method
com.muyu.etl.controller.EtlTableUserPermissionController#edit(EtlTableUserPermission)
to {PUT [/permission]}: There is already 'etlTableUserPermissionController' bean method
com.muyu.etl.controller.EtlTableUserPermissionController#updatePermission(EtlTableUserPermissionReq) mapped.
at org.springframework.web.servlet.handler.AbstractHandlerMethodMapping$MappingRegistry.validateMethodMapping(AbstractHandlerMethodMapping.java:674)
at org.springframework.web.servlet.handler.AbstractHandlerMethodMapping$MappingRegistry.register(AbstractHandlerMethodMapping.java:636)
at org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.registerHandlerMethod(AbstractHandlerMethodMapping.java:331)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping.registerHandlerMethod(RequestMappingHandlerMapping.java:508)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping.registerHandlerMethod(RequestMappingHandlerMapping.java:84)
at org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.lambda$detectHandlerMethods$2(AbstractHandlerMethodMapping.java:298)
at java.base/java.util.LinkedHashMap.forEach(LinkedHashMap.java:721)
at org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.detectHandlerMethods(AbstractHandlerMethodMapping.java:296)
at org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.processCandidateBean(AbstractHandlerMethodMapping.java:265)
at org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.initHandlerMethods(AbstractHandlerMethodMapping.java:224)
at org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.afterPropertiesSet(AbstractHandlerMethodMapping.java:212)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping.afterPropertiesSet(RequestMappingHandlerMapping.java:239)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
... 16 common frames omitted
22:35:46.716 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.2.1 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 218300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7dfadae9[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a034157, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2f4ba1ae, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1391af3b}}}}]]
at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243)
at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367)
at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
22:38:09.849 [nacos-grpc-client-executor-21.12.2.1-35] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725201368670_21.12.5.6_61672]Request stream onCompleted, switch server
22:38:48.262 [nacos-grpc-client-executor-21.12.2.1-23] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725201386494_21.12.5.6_61722]Request stream onCompleted, switch server

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,406 @@
14:49:51.786 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
14:49:53.536 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
14:49:53.537 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
14:49:53.597 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
14:49:56.397 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
14:49:56.398 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
14:49:56.398 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
14:49:56.436 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
14:49:56.960 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
14:50:03.609 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
14:50:03.609 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
14:50:03.609 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
14:50:03.614 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
14:50:03.618 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
14:50:03.618 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
14:50:03.759 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5
14:50:03.761 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5
14:50:03.761 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
14:50:03.761 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
14:50:03.761 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
14:50:03.762 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Try to connect to server on start up, server: {serverIp = '21.12.2.1', server main port = 8848}
14:50:03.762 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:50:03.941 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Success to connect to server [21.12.2.1:8848] on start up, connectionId = 1724395801666_21.12.5.6_63037
14:50:03.942 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:50:03.942 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Notify connected event to listeners.
14:50:03.942 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$592/0x000001e7524e8d88
14:50:03.942 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
14:50:03.943 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wu_zu_cloud registering service cloud-datasource with instance Instance{instanceId='null', ip='192.168.1.111', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
14:50:04.013 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-datasource 192.168.1.111:10003 register finished
14:50:05.158 [main] INFO c.m.e.CloudDataSourceApplication - [logStarted,56] - Started CloudDataSourceApplication in 17.809 seconds (process running for 18.62)
14:50:05.170 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
14:50:05.171 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
14:50:05.171 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource.yml+DEFAULT_GROUP+wu_zu_cloud
14:50:05.179 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource.yml, group=DEFAULT_GROUP, cnt=1
14:50:05.179 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource.yml, group=DEFAULT_GROUP
14:50:05.180 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource+DEFAULT_GROUP+wu_zu_cloud
14:50:05.180 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource, group=DEFAULT_GROUP, cnt=1
14:50:05.180 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource, group=DEFAULT_GROUP
14:50:05.182 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource-dev.yml+DEFAULT_GROUP+wu_zu_cloud
14:50:05.182 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP, cnt=1
14:50:05.182 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP
14:50:05.495 [RMI TCP Connection(1)-192.168.1.111] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
15:03:55.788 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
15:03:55.860 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /21.12.5.3:6379
15:04:04.842 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Server healthy check fail, currentConnection = 1724395801666_21.12.5.6_63037
15:04:04.842 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Try to reconnect to a new server, server is not appointed, will choose a random server.
15:04:04.842 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
15:04:04.842 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Server healthy check fail, currentConnection = 1724395789027_21.12.5.6_63013
15:04:04.842 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
15:04:04.842 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
15:04:05.171 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Success to connect a server [21.12.2.1:8848], connectionId = 1724396642791_21.12.5.6_62363
15:04:05.171 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1724395789027_21.12.5.6_63013
15:04:05.171 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Success to connect a server [21.12.2.1:8848], connectionId = 1724396642773_21.12.5.6_62364
15:04:05.171 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1724395801666_21.12.5.6_63037
15:04:05.171 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724395789027_21.12.5.6_63013
15:04:05.171 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724395801666_21.12.5.6_63037
15:04:05.180 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Try to reconnect to a new server, server is not appointed, will choose a random server.
15:04:05.180 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Notify disconnected event to listeners
15:04:05.180 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
15:04:05.182 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
15:04:05.182 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
15:04:05.182 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Notify disconnected event to listeners
15:04:05.182 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] DisConnected,clear listen context...
15:04:05.183 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Notify connected event to listeners.
15:04:05.183 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Connected,notify listen context...
15:04:05.184 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Notify connected event to listeners.
15:04:05.184 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
15:04:05.493 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Success to connect a server [21.12.2.1:8848], connectionId = 1724396643098_21.12.5.6_62368
15:04:05.493 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Success to connect a server [21.12.2.1:8848], connectionId = 1724396643083_21.12.5.6_62367
15:04:05.493 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1724396642791_21.12.5.6_62363
15:04:05.493 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1724396642773_21.12.5.6_62364
15:04:05.493 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724396642791_21.12.5.6_62363
15:04:05.493 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724396642773_21.12.5.6_62364
15:04:05.502 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Notify disconnected event to listeners
15:04:05.502 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Notify disconnected event to listeners
15:04:05.502 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] DisConnected,clear listen context...
15:04:05.502 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Notify connected event to listeners.
15:04:05.502 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Notify connected event to listeners.
15:04:05.502 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
15:04:05.502 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Connected,notify listen context...
15:04:05.957 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
15:04:06.193 [lettuce-nioEventLoop-4-3] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 21.12.5.3/<unresolved>:6379
15:04:06.256 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-datasource
15:19:05.273 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
15:19:05.276 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wu_zu_cloud deregistering service cloud-datasource with instance: Instance{instanceId='null', ip='192.168.1.111', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
15:19:05.381 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
15:19:05.384 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
15:19:05.384 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
15:19:05.385 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
15:19:05.385 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
15:19:05.385 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
15:19:05.386 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
15:19:05.386 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
15:19:05.386 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
15:19:05.387 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
15:19:05.387 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
15:19:05.388 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
15:19:05.388 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5
15:19:05.388 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@a109bf8[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 578]
15:19:05.389 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
15:19:05.389 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@29125035[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
15:19:05.390 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724396643083_21.12.5.6_62367
15:19:05.393 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@39521a6a[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 350]
15:19:05.394 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5
15:19:05.396 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
15:19:05.396 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
15:19:05.397 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
15:19:05.404 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
15:19:05.419 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
15:19:05.465 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
15:19:05.465 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
15:19:05.466 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
21:48:15.464 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
21:48:18.250 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
21:48:18.250 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
21:48:18.321 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
21:48:22.931 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
21:48:22.932 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
21:48:22.932 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
21:48:22.987 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
21:48:23.066 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
21:48:23.067 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
21:48:23.073 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
21:48:23.074 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
21:48:23.074 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
21:48:23.075 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
21:50:49.713 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
21:50:51.933 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
21:50:51.933 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
21:50:52.001 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
21:50:56.533 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
21:50:56.534 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
21:50:56.534 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
21:50:56.585 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
21:50:57.180 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
21:51:06.507 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
21:51:06.507 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
21:51:06.507 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
21:51:06.512 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
21:51:06.516 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
21:51:06.517 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
21:51:06.693 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of cf7573b0-a2ca-4104-87a2-6b05da9a296a
21:51:06.695 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->cf7573b0-a2ca-4104-87a2-6b05da9a296a
21:51:06.695 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
21:51:06.695 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
21:51:06.697 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
21:51:06.697 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Try to connect to server on start up, server: {serverIp = '21.12.2.1', server main port = 8848}
21:51:06.697 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:51:07.003 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Success to connect to server [21.12.2.1:8848] on start up, connectionId = 1724421063327_21.12.5.6_62957
21:51:07.004 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
21:51:07.004 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Notify connected event to listeners.
21:51:07.004 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$592/0x000001ad3b4e6a20
21:51:07.004 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
21:51:07.005 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wu_zu_cloud registering service cloud-datasource with instance Instance{instanceId='null', ip='192.168.244.245', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:8d1e:420a:aa0e:1cf6:11b4:87f5:ba93], preserved.register.source=SPRING_CLOUD}}
21:51:07.108 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-datasource 192.168.244.245:10003 register finished
21:51:08.307 [main] INFO c.m.e.CloudDataSourceApplication - [logStarted,56] - Started CloudDataSourceApplication in 23.915 seconds (process running for 24.823)
21:51:08.316 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
21:51:08.317 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
21:51:08.317 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource.yml+DEFAULT_GROUP+wu_zu_cloud
21:51:08.325 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource.yml, group=DEFAULT_GROUP, cnt=1
21:51:08.326 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource.yml, group=DEFAULT_GROUP
21:51:08.326 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource+DEFAULT_GROUP+wu_zu_cloud
21:51:08.326 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource, group=DEFAULT_GROUP, cnt=1
21:51:08.326 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource, group=DEFAULT_GROUP
21:51:08.328 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource-dev.yml+DEFAULT_GROUP+wu_zu_cloud
21:51:08.328 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP, cnt=1
21:51:08.328 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP
21:51:08.603 [RMI TCP Connection(2)-192.168.244.245] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
21:54:02.726 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Server healthy check fail, currentConnection = 1724421063327_21.12.5.6_62957
21:54:02.729 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Try to reconnect to a new server, server is not appointed, will choose a random server.
21:54:02.730 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:05.869 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:06.973 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Server healthy check fail, currentConnection = 1724421045291_21.12.5.6_62873
21:54:06.973 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
21:54:06.974 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:08.878 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 1 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:09.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:10.088 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:12.109 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 2 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:12.419 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:13.107 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:13.307 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:15.435 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 3 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:15.838 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:16.322 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:16.633 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:18.844 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 4 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:19.353 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:19.635 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:20.036 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:22.366 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 5 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:22.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:23.039 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:23.540 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:25.991 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 6 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:26.549 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:26.707 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:27.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:29.713 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 7 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:30.165 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:30.523 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:30.865 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:33.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 8 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:33.880 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:34.439 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:34.504 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
21:54:34.537 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 9 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:34.568 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /21.12.5.3:6379
21:54:34.691 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:34.699 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:35.539 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:35.543 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 10 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:35.601 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:35.607 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:36.608 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:36.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:36.654 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:36.659 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 11 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:37.730 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:37.737 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:37.867 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:37.873 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 12 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:38.946 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:38.951 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:39.176 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:39.181 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 13 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:40.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:40.258 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:40.597 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:40.601 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 14 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:41.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:41.675 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:42.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:42.109 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 15 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:43.179 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:43.186 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:43.642 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:54:43.712 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:43.718 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 16 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:44.793 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:44.801 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:45.432 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:45.437 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 17 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:46.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:47.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:49.508 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:50.258 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 18 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:51.315 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:51.846 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:54:52.171 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:54.320 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 18 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:55.178 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 19 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:56.232 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:57.185 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:59.247 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 19 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:00.208 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 20 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:01.260 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:01.267 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 20 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:02.319 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:02.328 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 21 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:03.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:03.380 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 21 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:04.533 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:04.539 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 22 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:05.595 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:05.600 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 22 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:06.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:06.856 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 23 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:07.911 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:07.915 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 23 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:09.264 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:09.270 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 24 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:10.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:10.329 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 24 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:11.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:11.791 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 25 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:12.844 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:12.849 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 25 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:14.403 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:14.408 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 26 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:15.452 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:15.457 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 26 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:17.122 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:17.128 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 27 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:18.167 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:18.173 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 27 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:18.341 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:55:19.929 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:19.934 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 28 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:20.987 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:20.993 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 28 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:22.843 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:22.848 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 29 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:23.905 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:23.911 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 29 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:25.853 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:25.859 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 30 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:26.927 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:26.932 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 30 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:28.971 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:28.976 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 31 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:30.047 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:30.052 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 31 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:32.180 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:32.185 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 32 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:33.259 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:35.496 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:36.265 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 32 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:38.515 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 33 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:39.573 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:41.956 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:42.076 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 33 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:44.969 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 34 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:45.478 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:48.441 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:55:48.472 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:48.490 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 34 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:51.475 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 35 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:52.004 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:55.009 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 35 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:55.086 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:58.092 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 36 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:58.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:58.917 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Success to connect a server [21.12.2.1:8848], connectionId = 1724421355251_21.12.5.6_62513
21:55:58.918 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1724421045291_21.12.5.6_62873
21:55:58.918 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724421045291_21.12.5.6_62873
21:55:58.920 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Notify disconnected event to listeners
21:55:58.920 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] DisConnected,clear listen context...
21:55:58.920 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Notify connected event to listeners.
21:55:58.920 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Connected,notify listen context...
21:56:01.795 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:56:02.137 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Success to connect a server [21.12.2.1:8848], connectionId = 1724421358449_21.12.5.6_62521
21:56:02.137 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1724421063327_21.12.5.6_62957
21:56:02.137 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724421063327_21.12.5.6_62957
21:56:02.137 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Notify disconnected event to listeners
21:56:02.140 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Notify connected event to listeners.
21:56:02.140 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
21:56:04.503 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-datasource
21:56:28.539 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:56:28.764 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 21.12.5.3/<unresolved>:6379
21:57:05.750 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /21.12.5.3:6379
21:57:13.154 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:57:25.743 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:57:35.846 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:57:40.940 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:57:46.542 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:57:49.322 [lettuce-nioEventLoop-4-12] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 21.12.5.3/<unresolved>:6379
22:42:54.027 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:42:54.034 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wu_zu_cloud deregistering service cloud-datasource with instance: Instance{instanceId='null', ip='192.168.244.245', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
22:42:54.500 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
22:42:54.506 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
22:42:54.506 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
22:42:54.506 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
22:42:54.506 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
22:42:54.506 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
22:42:54.506 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
22:42:54.506 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
22:42:54.506 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
22:42:54.512 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
22:42:54.512 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
22:42:54.512 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
22:42:54.512 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->cf7573b0-a2ca-4104-87a2-6b05da9a296a
22:42:54.512 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@a37c6c4[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1033]
22:42:54.512 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
22:42:54.512 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2be32353[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:42:54.512 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724421358449_21.12.5.6_62521
22:42:54.525 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@31df162d[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 714]
22:42:54.525 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->cf7573b0-a2ca-4104-87a2-6b05da9a296a
22:42:54.525 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
22:42:54.525 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
22:42:54.525 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
22:42:54.543 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
22:42:54.573 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
22:42:54.689 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
22:42:54.689 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
22:42:54.689 [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

View File

@ -0,0 +1,350 @@
00:00:01.745 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
00:00:02.138 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:02.145 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 13 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:03.552 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:03.552 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:06.557 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:06.557 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 14 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:08.059 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:08.059 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:11.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 15 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:11.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:11.947 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
00:00:12.683 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:12.684 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:15.716 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:15.716 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 16 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:17.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:17.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:20.447 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:20.447 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 17 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:22.149 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
00:00:22.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:22.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:25.288 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 18 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:25.288 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 18 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:27.202 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:27.202 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:30.220 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 19 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:30.220 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 19 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:32.235 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:32.235 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:32.455 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
00:00:35.239 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 20 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:35.271 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 20 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:37.340 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:37.375 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:40.359 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 21 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:40.387 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 21 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:42.571 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:42.601 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:43.056 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
00:00:45.581 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 22 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:45.612 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 22 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:47.889 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:47.921 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:50.893 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 23 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:50.925 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 23 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:53.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:53.335 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:54.145 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
00:00:56.317 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 24 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:56.348 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 24 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:00:58.828 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:00:58.859 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:01.842 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 25 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:01.873 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 25 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:04.444 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:04.475 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:06.252 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
00:01:07.459 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 26 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:07.489 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 26 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:10.167 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:10.199 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:13.171 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 27 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:13.218 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 27 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:15.974 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:16.020 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:18.978 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 28 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:19.041 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 28 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:20.446 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
00:01:21.894 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:21.942 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:24.914 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 29 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:24.946 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 29 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:27.915 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:27.947 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:30.923 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 30 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:30.955 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 30 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:34.036 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:34.067 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:37.045 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 31 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:37.077 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 31 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:38.752 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
00:01:40.246 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:40.284 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:43.250 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 32 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:43.296 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 32 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:46.562 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:46.608 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:49.578 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 33 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:49.625 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 33 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:53.017 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:53.033 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:56.023 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 34 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:56.039 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 34 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:01:59.534 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:01:59.542 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:02:02.541 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46d67870-1549-4f7c-ab46-b9ebed1d97ed_config-0] Fail to connect server, after trying 35 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:02:02.549 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 35 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:02:05.248 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
00:02:06.153 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:02:06.153 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:02:07.863 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
00:02:07.867 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wu_zu_cloud deregistering service cloud-datasource with instance: Instance{instanceId='null', ip='192.168.43.229', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
00:02:08.575 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
00:02:08.575 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
00:02:08.575 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
00:02:08.583 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
00:02:08.583 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
00:02:08.583 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
00:02:08.583 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
00:02:08.583 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
00:02:08.583 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
00:02:08.583 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
00:02:08.583 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
00:02:08.583 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
00:02:08.583 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17
00:02:08.583 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@22a81eda[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 503]
00:02:08.583 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
00:02:08.583 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1e6628cf[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
00:02:08.583 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724513812238_21.12.5.6_62146
00:02:08.583 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@29bb0a26[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 370]
00:02:08.583 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724513812238_21.12.5.6_62146
00:02:08.583 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17] Fail to connect server, after trying 36 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:02:08.583 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->5a261aa3-7d0a-4a5a-8d7a-4cd0320c3e17
00:02:08.591 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
00:02:08.591 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
00:02:08.591 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
00:02:08.607 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
00:02:08.647 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
00:02:08.759 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
00:02:08.759 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
00:02:08.759 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
18:37:59.321 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
18:37:59.667 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
18:38:00.893 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.a.AbstractAbilityControlManager - [initAbilityTable,61] - Ready to get current node abilities...
18:38:00.894 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.a.AbstractAbilityControlManager - [initAbilityTable,89] - Ready to initialize current node abilities, support modes: [SDK_CLIENT]
18:38:00.894 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.a.AbstractAbilityControlManager - [initAbilityTable,94] - Initialize current abilities finish...
18:38:00.895 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.a.d.NacosAbilityManagerHolder - [initAbilityControlManager,85] - [AbilityControlManager] Successfully initialize AbilityControlManager
18:38:00.956 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2904e5a3-2ae6-48ac-aa30-a7cd3fc0c5d2_config-0] Success to connect a server [21.12.2.1:8848], connectionId = 1724582279740_21.12.5.6_62884
18:38:00.956 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2904e5a3-2ae6-48ac-aa30-a7cd3fc0c5d2_config-0] Notify connected event to listeners.
18:38:00.956 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [2904e5a3-2ae6-48ac-aa30-a7cd3fc0c5d2_config-0] Connected,notify listen context...
18:38:04.340 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
18:38:04.341 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
18:38:04.341 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
18:38:04.385 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
18:38:04.893 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
18:38:11.493 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
18:38:11.493 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
18:38:11.493 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
18:38:11.496 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
18:38:11.499 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
18:38:11.499 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
18:38:11.639 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of a730f50a-35a6-4150-81ad-8a70e921a9ff
18:38:11.641 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->a730f50a-35a6-4150-81ad-8a70e921a9ff
18:38:11.641 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a730f50a-35a6-4150-81ad-8a70e921a9ff] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
18:38:11.641 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a730f50a-35a6-4150-81ad-8a70e921a9ff] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
18:38:11.641 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a730f50a-35a6-4150-81ad-8a70e921a9ff] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
18:38:11.641 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a730f50a-35a6-4150-81ad-8a70e921a9ff] Try to connect to server on start up, server: {serverIp = '21.12.2.1', server main port = 8848}
18:38:11.642 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
18:38:11.847 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a730f50a-35a6-4150-81ad-8a70e921a9ff] Success to connect to server [21.12.2.1:8848] on start up, connectionId = 1724582290700_21.12.5.6_62920
18:38:11.848 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a730f50a-35a6-4150-81ad-8a70e921a9ff] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:38:11.848 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a730f50a-35a6-4150-81ad-8a70e921a9ff] Notify connected event to listeners.
18:38:11.852 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a730f50a-35a6-4150-81ad-8a70e921a9ff] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$589/0x000001b6014ba2a0
18:38:11.852 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
18:38:11.853 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wu_zu_cloud registering service cloud-datasource with instance Instance{instanceId='null', ip='192.168.1.130', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
18:38:11.909 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-datasource 192.168.1.130:10003 register finished
18:38:13.050 [main] INFO c.m.e.CloudDataSourceApplication - [logStarted,56] - Started CloudDataSourceApplication in 30.869 seconds (process running for 32.13)
18:38:13.058 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
18:38:13.058 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
18:38:13.058 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource.yml+DEFAULT_GROUP+wu_zu_cloud
18:38:13.070 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource.yml, group=DEFAULT_GROUP, cnt=1
18:38:13.070 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource.yml, group=DEFAULT_GROUP
18:38:13.070 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource+DEFAULT_GROUP+wu_zu_cloud
18:38:13.070 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource, group=DEFAULT_GROUP, cnt=1
18:38:13.070 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource, group=DEFAULT_GROUP
18:38:13.072 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource-dev.yml+DEFAULT_GROUP+wu_zu_cloud
18:38:13.072 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP, cnt=1
18:38:13.072 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP
18:38:13.081 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
18:38:13.081 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wu_zu_cloud deregistering service cloud-datasource with instance: Instance{instanceId='null', ip='192.168.1.130', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
18:38:13.158 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
18:38:13.159 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
18:38:13.160 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
18:38:13.160 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
18:38:13.160 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
18:38:13.160 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
18:38:13.160 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
18:38:13.161 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
18:38:13.161 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
18:38:13.161 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
18:38:13.161 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
18:38:13.161 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
18:38:13.161 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->a730f50a-35a6-4150-81ad-8a70e921a9ff
18:38:13.161 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@629bfca4[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 0]
18:38:13.161 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
18:38:13.161 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@34900246[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
18:38:13.162 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724582290700_21.12.5.6_62920
18:38:13.162 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@33879ede[Running, pool size = 8, active threads = 0, queued tasks = 0, completed tasks = 8]
18:38:13.162 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->a730f50a-35a6-4150-81ad-8a70e921a9ff
18:38:13.162 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
18:38:13.162 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
18:38:13.162 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
18:38:13.164 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
18:38:13.165 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
18:38:13.170 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
18:38:13.170 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
18:38:13.170 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
18:38:20.201 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
18:38:21.548 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
18:38:21.549 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
18:38:21.592 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
18:38:24.618 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
18:38:24.618 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
18:38:24.619 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
18:38:24.653 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
18:38:25.092 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
18:38:31.496 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
18:38:31.497 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
18:38:31.497 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
18:38:31.500 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
18:38:31.503 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
18:38:31.503 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
18:38:31.649 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 44c5b88b-1499-4088-8eca-02e78a58c118
18:38:31.650 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->44c5b88b-1499-4088-8eca-02e78a58c118
18:38:31.650 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [44c5b88b-1499-4088-8eca-02e78a58c118] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
18:38:31.650 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [44c5b88b-1499-4088-8eca-02e78a58c118] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
18:38:31.651 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [44c5b88b-1499-4088-8eca-02e78a58c118] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
18:38:31.651 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [44c5b88b-1499-4088-8eca-02e78a58c118] Try to connect to server on start up, server: {serverIp = '21.12.2.1', server main port = 8848}
18:38:31.651 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
18:38:31.855 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [44c5b88b-1499-4088-8eca-02e78a58c118] Success to connect to server [21.12.2.1:8848] on start up, connectionId = 1724582310706_21.12.5.6_62956
18:38:31.855 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [44c5b88b-1499-4088-8eca-02e78a58c118] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
18:38:31.855 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [44c5b88b-1499-4088-8eca-02e78a58c118] Notify connected event to listeners.
18:38:31.855 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [44c5b88b-1499-4088-8eca-02e78a58c118] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$592/0x000001ef524e5380
18:38:31.855 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
18:38:31.856 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wu_zu_cloud registering service cloud-datasource with instance Instance{instanceId='null', ip='192.168.1.130', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
18:38:31.921 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-datasource 192.168.1.130:10003 register finished
18:38:33.045 [main] INFO c.m.e.CloudDataSourceApplication - [logStarted,56] - Started CloudDataSourceApplication in 17.368 seconds (process running for 17.939)
18:38:33.052 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
18:38:33.052 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
18:38:33.053 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource.yml+DEFAULT_GROUP+wu_zu_cloud
18:38:33.057 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource.yml, group=DEFAULT_GROUP, cnt=1
18:38:33.057 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource.yml, group=DEFAULT_GROUP
18:38:33.059 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource+DEFAULT_GROUP+wu_zu_cloud
18:38:33.059 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource, group=DEFAULT_GROUP, cnt=1
18:38:33.059 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource, group=DEFAULT_GROUP
18:38:33.061 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource-dev.yml+DEFAULT_GROUP+wu_zu_cloud
18:38:33.061 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP, cnt=1
18:38:33.061 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP
18:38:33.546 [RMI TCP Connection(3)-192.168.1.130] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
18:43:04.744 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
18:43:04.744 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wu_zu_cloud deregistering service cloud-datasource with instance: Instance{instanceId='null', ip='192.168.1.130', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
18:43:04.803 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
18:43:04.804 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
18:43:04.805 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
18:43:04.805 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
18:43:04.805 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
18:43:04.805 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
18:43:04.805 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
18:43:04.805 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
18:43:04.805 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
18:43:04.806 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
18:43:04.806 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
18:43:04.806 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
18:43:04.806 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->44c5b88b-1499-4088-8eca-02e78a58c118
18:43:04.806 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@4d13b27d[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 90]
18:43:04.806 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
18:43:04.806 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@32d97ba8[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
18:43:04.806 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724582310706_21.12.5.6_62956
18:43:04.806 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@318e3bdf[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 60]
18:43:04.806 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->44c5b88b-1499-4088-8eca-02e78a58c118
18:43:04.806 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
18:43:04.806 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
18:43:04.809 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
18:43:04.811 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
18:43:04.811 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
18:43:04.813 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
18:43:04.813 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
18:43:04.816 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
19:40:56.059 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
19:40:57.842 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
19:40:57.842 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
19:40:57.895 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
19:41:05.346 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
19:41:05.347 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
19:41:05.347 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
19:41:05.390 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
19:41:05.941 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
19:41:12.846 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
19:41:12.846 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
19:41:12.846 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
19:41:12.849 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
19:41:12.852 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
19:41:12.852 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
19:41:13.090 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 2a2497fd-8dd1-4a6a-9f94-0c0c44cc6f6d
19:41:13.092 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->2a2497fd-8dd1-4a6a-9f94-0c0c44cc6f6d
19:41:13.092 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2a2497fd-8dd1-4a6a-9f94-0c0c44cc6f6d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
19:41:13.092 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2a2497fd-8dd1-4a6a-9f94-0c0c44cc6f6d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
19:41:13.092 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2a2497fd-8dd1-4a6a-9f94-0c0c44cc6f6d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
19:41:13.093 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2a2497fd-8dd1-4a6a-9f94-0c0c44cc6f6d] Try to connect to server on start up, server: {serverIp = '21.12.2.1', server main port = 8848}
19:41:13.093 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
19:41:13.614 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2a2497fd-8dd1-4a6a-9f94-0c0c44cc6f6d] Success to connect to server [21.12.2.1:8848] on start up, connectionId = 1724586072089_21.12.5.6_62849
19:41:13.614 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2a2497fd-8dd1-4a6a-9f94-0c0c44cc6f6d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
19:41:13.614 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2a2497fd-8dd1-4a6a-9f94-0c0c44cc6f6d] Notify connected event to listeners.
19:41:13.614 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2a2497fd-8dd1-4a6a-9f94-0c0c44cc6f6d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$592/0x0000021b814e4ac0
19:41:13.614 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
19:41:13.615 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wu_zu_cloud registering service cloud-datasource with instance Instance{instanceId='null', ip='192.168.244.245', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:8d80:a000:809b:534d:9aa4:b95c:4b70], preserved.register.source=SPRING_CLOUD}}
19:41:13.876 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-datasource 192.168.244.245:10003 register finished
19:41:15.026 [main] INFO c.m.e.CloudDataSourceApplication - [logStarted,56] - Started CloudDataSourceApplication in 24.466 seconds (process running for 25.189)
19:41:15.033 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
19:41:15.033 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
19:41:15.034 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource.yml+DEFAULT_GROUP+wu_zu_cloud
19:41:15.039 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource.yml, group=DEFAULT_GROUP, cnt=1
19:41:15.039 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource.yml, group=DEFAULT_GROUP
19:41:15.040 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource+DEFAULT_GROUP+wu_zu_cloud
19:41:15.040 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource, group=DEFAULT_GROUP, cnt=1
19:41:15.040 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource, group=DEFAULT_GROUP
19:41:15.042 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource-dev.yml+DEFAULT_GROUP+wu_zu_cloud
19:41:15.043 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP, cnt=1
19:41:15.043 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP
19:41:15.335 [RMI TCP Connection(2)-192.168.244.245] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
19:44:43.022 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
19:44:43.022 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wu_zu_cloud deregistering service cloud-datasource with instance: Instance{instanceId='null', ip='192.168.244.245', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
19:44:43.195 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
19:44:43.205 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
19:44:43.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
19:44:43.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
19:44:43.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
19:44:43.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
19:44:43.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
19:44:43.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
19:44:43.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
19:44:43.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
19:44:43.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
19:44:43.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
19:44:43.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->2a2497fd-8dd1-4a6a-9f94-0c0c44cc6f6d
19:44:43.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@728a6732[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 69]
19:44:43.206 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
19:44:43.207 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2347a179[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
19:44:43.207 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724586072089_21.12.5.6_62849
19:44:43.209 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@15fbe349[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 49]
19:44:43.209 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->2a2497fd-8dd1-4a6a-9f94-0c0c44cc6f6d
19:44:43.210 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
19:44:43.210 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
19:44:43.210 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
19:44:43.212 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
19:44:43.213 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
19:44:43.216 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
19:44:43.216 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
19:44:43.216 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye

View File

@ -0,0 +1,377 @@
14:49:51.786 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
14:49:53.536 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
14:49:53.537 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
14:49:53.597 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
14:49:56.397 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
14:49:56.398 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
14:49:56.398 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
14:49:56.436 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
14:49:56.960 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
14:50:03.609 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
14:50:03.609 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
14:50:03.609 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
14:50:03.614 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
14:50:03.618 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
14:50:03.618 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
14:50:03.759 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5
14:50:03.761 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5
14:50:03.761 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
14:50:03.761 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
14:50:03.761 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
14:50:03.762 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Try to connect to server on start up, server: {serverIp = '21.12.2.1', server main port = 8848}
14:50:03.762 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
14:50:03.941 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Success to connect to server [21.12.2.1:8848] on start up, connectionId = 1724395801666_21.12.5.6_63037
14:50:03.942 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:50:03.942 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Notify connected event to listeners.
14:50:03.942 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$592/0x000001e7524e8d88
14:50:03.942 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
14:50:03.943 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wu_zu_cloud registering service cloud-datasource with instance Instance{instanceId='null', ip='192.168.1.111', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
14:50:04.013 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-datasource 192.168.1.111:10003 register finished
14:50:05.158 [main] INFO c.m.e.CloudDataSourceApplication - [logStarted,56] - Started CloudDataSourceApplication in 17.809 seconds (process running for 18.62)
14:50:05.170 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
14:50:05.171 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
14:50:05.171 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource.yml+DEFAULT_GROUP+wu_zu_cloud
14:50:05.179 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource.yml, group=DEFAULT_GROUP, cnt=1
14:50:05.179 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource.yml, group=DEFAULT_GROUP
14:50:05.180 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource+DEFAULT_GROUP+wu_zu_cloud
14:50:05.180 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource, group=DEFAULT_GROUP, cnt=1
14:50:05.180 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource, group=DEFAULT_GROUP
14:50:05.182 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource-dev.yml+DEFAULT_GROUP+wu_zu_cloud
14:50:05.182 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP, cnt=1
14:50:05.182 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP
14:50:05.495 [RMI TCP Connection(1)-192.168.1.111] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
15:03:55.788 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
15:03:55.860 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /21.12.5.3:6379
15:04:04.842 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Server healthy check fail, currentConnection = 1724395801666_21.12.5.6_63037
15:04:04.842 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Try to reconnect to a new server, server is not appointed, will choose a random server.
15:04:04.842 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
15:04:04.842 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Server healthy check fail, currentConnection = 1724395789027_21.12.5.6_63013
15:04:04.842 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
15:04:04.842 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
15:04:05.171 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Success to connect a server [21.12.2.1:8848], connectionId = 1724396642791_21.12.5.6_62363
15:04:05.171 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1724395789027_21.12.5.6_63013
15:04:05.171 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Success to connect a server [21.12.2.1:8848], connectionId = 1724396642773_21.12.5.6_62364
15:04:05.171 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1724395801666_21.12.5.6_63037
15:04:05.171 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724395789027_21.12.5.6_63013
15:04:05.171 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724395801666_21.12.5.6_63037
15:04:05.180 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Try to reconnect to a new server, server is not appointed, will choose a random server.
15:04:05.180 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Notify disconnected event to listeners
15:04:05.180 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
15:04:05.182 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
15:04:05.182 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
15:04:05.182 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Notify disconnected event to listeners
15:04:05.182 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] DisConnected,clear listen context...
15:04:05.183 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Notify connected event to listeners.
15:04:05.183 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Connected,notify listen context...
15:04:05.184 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Notify connected event to listeners.
15:04:05.184 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
15:04:05.493 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Success to connect a server [21.12.2.1:8848], connectionId = 1724396643098_21.12.5.6_62368
15:04:05.493 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Success to connect a server [21.12.2.1:8848], connectionId = 1724396643083_21.12.5.6_62367
15:04:05.493 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1724396642791_21.12.5.6_62363
15:04:05.493 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1724396642773_21.12.5.6_62364
15:04:05.493 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724396642791_21.12.5.6_62363
15:04:05.493 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724396642773_21.12.5.6_62364
15:04:05.502 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Notify disconnected event to listeners
15:04:05.502 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Notify disconnected event to listeners
15:04:05.502 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] DisConnected,clear listen context...
15:04:05.502 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5] Notify connected event to listeners.
15:04:05.502 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Notify connected event to listeners.
15:04:05.502 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
15:04:05.502 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [544bb66b-5eb9-4045-95d9-e7e0c014a346_config-0] Connected,notify listen context...
15:04:05.957 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
15:04:06.193 [lettuce-nioEventLoop-4-3] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 21.12.5.3/<unresolved>:6379
15:04:06.256 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-datasource
15:19:05.273 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
15:19:05.276 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wu_zu_cloud deregistering service cloud-datasource with instance: Instance{instanceId='null', ip='192.168.1.111', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
15:19:05.381 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
15:19:05.384 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
15:19:05.384 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
15:19:05.385 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
15:19:05.385 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
15:19:05.385 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
15:19:05.386 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
15:19:05.386 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
15:19:05.386 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
15:19:05.387 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
15:19:05.387 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
15:19:05.388 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
15:19:05.388 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5
15:19:05.388 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@a109bf8[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 578]
15:19:05.389 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
15:19:05.389 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@29125035[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
15:19:05.390 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724396643083_21.12.5.6_62367
15:19:05.393 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@39521a6a[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 350]
15:19:05.394 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->61cab6ef-a108-4c5d-8de4-6ed4b2be0ec5
15:19:05.396 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
15:19:05.396 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
15:19:05.397 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
15:19:05.404 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
15:19:05.419 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
15:19:05.465 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
15:19:05.465 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
15:19:05.466 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
21:48:15.464 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
21:48:18.250 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
21:48:18.250 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
21:48:18.321 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
21:48:22.931 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
21:48:22.932 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
21:48:22.932 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
21:48:22.987 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
21:48:23.066 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
21:48:23.067 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
21:48:23.073 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
21:48:23.074 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
21:48:23.074 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
21:48:23.075 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
21:50:49.713 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
21:50:51.933 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
21:50:51.933 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
21:50:52.001 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
21:50:56.533 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
21:50:56.534 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
21:50:56.534 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
21:50:56.585 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
21:50:57.180 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
21:51:06.507 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
21:51:06.507 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
21:51:06.507 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
21:51:06.512 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
21:51:06.516 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
21:51:06.517 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
21:51:06.693 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of cf7573b0-a2ca-4104-87a2-6b05da9a296a
21:51:06.695 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->cf7573b0-a2ca-4104-87a2-6b05da9a296a
21:51:06.695 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
21:51:06.695 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
21:51:06.697 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
21:51:06.697 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Try to connect to server on start up, server: {serverIp = '21.12.2.1', server main port = 8848}
21:51:06.697 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:51:07.003 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Success to connect to server [21.12.2.1:8848] on start up, connectionId = 1724421063327_21.12.5.6_62957
21:51:07.004 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
21:51:07.004 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Notify connected event to listeners.
21:51:07.004 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$592/0x000001ad3b4e6a20
21:51:07.004 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
21:51:07.005 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wu_zu_cloud registering service cloud-datasource with instance Instance{instanceId='null', ip='192.168.244.245', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:8d1e:420a:aa0e:1cf6:11b4:87f5:ba93], preserved.register.source=SPRING_CLOUD}}
21:51:07.108 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-datasource 192.168.244.245:10003 register finished
21:51:08.307 [main] INFO c.m.e.CloudDataSourceApplication - [logStarted,56] - Started CloudDataSourceApplication in 23.915 seconds (process running for 24.823)
21:51:08.316 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
21:51:08.317 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
21:51:08.317 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource.yml+DEFAULT_GROUP+wu_zu_cloud
21:51:08.325 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource.yml, group=DEFAULT_GROUP, cnt=1
21:51:08.326 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource.yml, group=DEFAULT_GROUP
21:51:08.326 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource+DEFAULT_GROUP+wu_zu_cloud
21:51:08.326 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource, group=DEFAULT_GROUP, cnt=1
21:51:08.326 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource, group=DEFAULT_GROUP
21:51:08.328 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource-dev.yml+DEFAULT_GROUP+wu_zu_cloud
21:51:08.328 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP, cnt=1
21:51:08.328 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP
21:51:08.603 [RMI TCP Connection(2)-192.168.244.245] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
21:54:02.726 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Server healthy check fail, currentConnection = 1724421063327_21.12.5.6_62957
21:54:02.729 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Try to reconnect to a new server, server is not appointed, will choose a random server.
21:54:02.730 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:05.869 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:06.973 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Server healthy check fail, currentConnection = 1724421045291_21.12.5.6_62873
21:54:06.973 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
21:54:06.974 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:08.878 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 1 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:09.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:10.088 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:12.109 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 2 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:12.419 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:13.107 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:13.307 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:15.435 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 3 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:15.838 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:16.322 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:16.633 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:18.844 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 4 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:19.353 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:19.635 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:20.036 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:22.366 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 5 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:22.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:23.039 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:23.540 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:25.991 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 6 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:26.549 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:26.707 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:27.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:29.713 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 7 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:30.165 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:30.523 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:30.865 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:33.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 8 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:33.880 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:34.439 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:34.504 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
21:54:34.537 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 9 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:34.568 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /21.12.5.3:6379
21:54:34.691 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:34.699 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:35.539 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:35.543 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 10 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:35.601 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:35.607 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:36.608 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:36.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:36.654 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:36.659 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 11 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:37.730 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:37.737 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:37.867 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:37.873 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 12 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:38.946 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:38.951 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:39.176 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:39.181 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 13 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:40.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:40.258 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:40.597 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:40.601 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 14 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:41.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:41.675 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:42.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:42.109 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 15 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:43.179 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:43.186 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:43.642 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:54:43.712 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:43.718 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 16 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:44.793 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:44.801 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:45.432 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:45.437 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 17 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:46.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:47.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:49.508 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:50.258 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 18 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:51.315 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:51.846 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:54:52.171 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:54.320 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 18 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:55.178 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 19 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:54:56.232 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:57.185 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:54:59.247 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 19 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:00.208 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 20 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:01.260 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:01.267 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 20 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:02.319 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:02.328 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 21 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:03.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:03.380 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 21 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:04.533 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:04.539 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 22 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:05.595 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:05.600 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 22 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:06.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:06.856 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 23 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:07.911 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:07.915 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 23 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:09.264 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:09.270 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 24 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:10.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:10.329 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 24 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:11.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:11.791 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 25 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:12.844 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:12.849 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 25 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:14.403 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:14.408 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 26 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:15.452 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:15.457 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 26 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:17.122 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:17.128 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 27 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:18.167 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:18.173 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 27 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:18.341 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:55:19.929 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:19.934 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 28 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:20.987 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:20.993 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 28 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:22.843 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:22.848 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 29 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:23.905 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:23.911 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 29 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:25.853 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:25.859 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 30 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:26.927 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:26.932 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 30 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:28.971 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:28.976 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 31 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:30.047 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:30.052 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 31 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:32.180 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:32.185 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 32 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:33.259 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:35.496 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:36.265 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 32 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:38.515 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 33 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:39.573 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:41.956 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:42.076 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 33 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:44.969 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 34 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:45.478 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:48.441 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:55:48.472 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:48.490 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 34 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:51.475 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 35 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:52.004 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:55.009 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Fail to connect server, after trying 35 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:55.086 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:58.092 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Fail to connect server, after trying 36 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
21:55:58.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:55:58.917 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Success to connect a server [21.12.2.1:8848], connectionId = 1724421355251_21.12.5.6_62513
21:55:58.918 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1724421045291_21.12.5.6_62873
21:55:58.918 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724421045291_21.12.5.6_62873
21:55:58.920 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Notify disconnected event to listeners
21:55:58.920 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] DisConnected,clear listen context...
21:55:58.920 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Notify connected event to listeners.
21:55:58.920 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [e7979e6a-aea2-4308-ad18-96c5a6942e60_config-0] Connected,notify listen context...
21:56:01.795 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:56:02.137 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Success to connect a server [21.12.2.1:8848], connectionId = 1724421358449_21.12.5.6_62521
21:56:02.137 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1724421063327_21.12.5.6_62957
21:56:02.137 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724421063327_21.12.5.6_62957
21:56:02.137 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Notify disconnected event to listeners
21:56:02.140 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cf7573b0-a2ca-4104-87a2-6b05da9a296a] Notify connected event to listeners.
21:56:02.140 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
21:56:04.503 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-datasource
21:56:28.539 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:56:28.764 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 21.12.5.3/<unresolved>:6379
21:57:05.750 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /21.12.5.3:6379
21:57:13.154 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:57:25.743 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:57:35.846 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:57:40.940 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:57:46.542 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
21:57:49.322 [lettuce-nioEventLoop-4-12] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 21.12.5.3/<unresolved>:6379

View File

@ -0,0 +1,884 @@
21:40:19.870 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
21:40:21.812 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
21:40:21.813 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
21:40:21.871 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
21:40:21.924 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
21:40:23.857 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
21:40:23.858 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
21:40:23.915 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
21:40:26.058 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
21:40:26.059 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
21:40:26.059 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
21:40:26.099 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
21:40:26.723 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
21:40:27.608 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
21:40:27.609 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
21:40:27.609 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
21:40:27.650 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
21:40:28.284 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
21:40:33.728 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
21:40:33.729 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
21:40:33.729 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
21:40:33.733 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
21:40:33.737 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
21:40:33.737 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
21:40:33.889 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f29f2790-ee6d-4647-970a-9ca2d11cd6fb
21:40:33.891 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->f29f2790-ee6d-4647-970a-9ca2d11cd6fb
21:40:33.891 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
21:40:33.891 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
21:40:33.891 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
21:40:33.891 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Try to connect to server on start up, server: {serverIp = '21.12.2.1', server main port = 8848}
21:40:33.891 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:40:34.038 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
21:40:34.039 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
21:40:34.043 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
21:40:34.044 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
21:40:34.044 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
21:40:34.045 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
21:40:34.123 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Success to connect to server [21.12.2.1:8848] on start up, connectionId = 1724852432399_21.12.5.6_62268
21:40:34.123 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
21:40:34.123 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Notify connected event to listeners.
21:40:34.123 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$592/0x0000026c2f4e5c28
21:40:34.124 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
21:40:34.125 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wu_zu_cloud registering service cloud-datasource with instance Instance{instanceId='null', ip='192.168.1.107', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
21:40:34.506 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-datasource 192.168.1.107:10003 register finished
21:40:35.628 [main] INFO c.m.e.CloudDataSourceApplication - [logStarted,56] - Started CloudDataSourceApplication in 20.429 seconds (process running for 21.507)
21:40:35.648 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
21:40:35.649 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
21:40:35.650 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource.yml+DEFAULT_GROUP+wu_zu_cloud
21:40:35.657 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource.yml, group=DEFAULT_GROUP, cnt=1
21:40:35.657 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource.yml, group=DEFAULT_GROUP
21:40:35.658 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource+DEFAULT_GROUP+wu_zu_cloud
21:40:35.658 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource, group=DEFAULT_GROUP, cnt=1
21:40:35.658 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource, group=DEFAULT_GROUP
21:40:35.661 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource-dev.yml+DEFAULT_GROUP+wu_zu_cloud
21:40:35.661 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP, cnt=1
21:40:35.661 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP
21:40:35.983 [RMI TCP Connection(3)-192.168.1.107] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
21:43:44.384 [nacos-grpc-client-executor-21.12.2.1-41] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 1060
21:43:44.385 [nacos-grpc-client-executor-21.12.2.1-41] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 1060
21:44:01.487 [nacos-grpc-client-executor-21.12.2.1-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Receive server push request, request = ClientDetectionRequest, requestId = 1059
21:44:01.488 [nacos-grpc-client-executor-21.12.2.1-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Ack server push request, request = ClientDetectionRequest, requestId = 1059
21:44:01.697 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Server healthy check fail, currentConnection = 1724852417590_21.12.5.6_62239
21:44:01.697 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Server healthy check fail, currentConnection = 1724852432399_21.12.5.6_62268
21:44:01.698 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
21:44:01.698 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Try to reconnect to a new server, server is not appointed, will choose a random server.
21:44:01.698 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:44:01.698 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:44:01.920 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Success to connect a server [21.12.2.1:8848], connectionId = 1724852640167_21.12.5.6_62497
21:44:01.920 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Success to connect a server [21.12.2.1:8848], connectionId = 1724852640168_21.12.5.6_62498
21:44:01.920 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1724852432399_21.12.5.6_62268
21:44:01.920 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724852432399_21.12.5.6_62268
21:44:01.920 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1724852417590_21.12.5.6_62239
21:44:01.920 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724852417590_21.12.5.6_62239
21:44:01.926 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Notify disconnected event to listeners
21:44:01.926 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Notify disconnected event to listeners
21:44:01.926 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
21:44:01.926 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Try to reconnect to a new server, server is not appointed, will choose a random server.
21:44:01.926 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] DisConnected,clear listen context...
21:44:01.926 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Notify connected event to listeners.
21:44:01.926 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:44:01.926 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Connected,notify listen context...
21:44:01.926 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:44:01.929 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Notify connected event to listeners.
21:44:01.929 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
21:44:02.565 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Success to connect a server [21.12.2.1:8848], connectionId = 1724852640409_21.12.5.6_62499
21:44:02.565 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1724852640167_21.12.5.6_62497
21:44:02.565 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724852640167_21.12.5.6_62497
21:44:02.569 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Success to connect a server [21.12.2.1:8848], connectionId = 1724852640409_21.12.5.6_62500
21:44:02.569 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1724852640168_21.12.5.6_62498
21:44:02.569 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724852640168_21.12.5.6_62498
21:44:02.569 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Notify disconnected event to listeners
21:44:02.569 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Notify connected event to listeners.
21:44:02.569 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Notify disconnected event to listeners
21:44:02.569 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
21:44:02.569 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] DisConnected,clear listen context...
21:44:02.569 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Notify connected event to listeners.
21:44:02.569 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Connected,notify listen context...
21:44:04.498 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-datasource
21:44:21.317 [http-nio-10003-exec-3] INFO c.m.d.pool.MysqlPool - [<init>,52] - MySQL连接池实例化完成
22:21:01.187 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
22:21:01.242 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:21:01.243 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:01.310 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /21.12.5.3:6379
22:21:01.333 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Server healthy check fail, currentConnection = 1724852640409_21.12.5.6_62500
22:21:01.334 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:21:01.335 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:01.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:01.431 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 1 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:01.452 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:01.458 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:01.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:01.664 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 2 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:01.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:01.678 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:01.967 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:01.972 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 3 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:01.983 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:01.987 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:02.386 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:02.390 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 4 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:02.403 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:02.406 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:02.898 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:02.901 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 5 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:02.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:02.916 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:03.510 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:03.525 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:06.521 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 6 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:06.536 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:07.227 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:07.242 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:10.241 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 7 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:10.258 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:11.054 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:11.069 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:14.066 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 8 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:14.081 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:14.971 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:14.987 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:16.191 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:21:17.977 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 9 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:17.990 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:18.978 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:18.994 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:21.994 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 10 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:22.009 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:23.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:23.117 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:26.108 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 11 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:26.123 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:27.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:27.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:30.338 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 12 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:30.352 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:30.390 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:21:31.650 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:31.666 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:34.657 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 13 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:34.672 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:36.057 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:36.073 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:39.067 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 14 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:39.082 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:40.580 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:40.595 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:43.583 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 15 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:43.597 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:45.183 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:45.198 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:48.197 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 16 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:48.212 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:48.594 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:21:49.907 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:49.923 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:52.915 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 17 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:52.931 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:54.725 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:54.740 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:57.743 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 18 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:57.757 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 18 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:21:59.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:59.663 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:02.656 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 19 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:02.671 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 19 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:04.668 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:04.683 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:07.673 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 20 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:07.688 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 20 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:09.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:09.791 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:12.782 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 21 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:12.797 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 21 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:14.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:14.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:14.998 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:22:18.005 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 22 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:18.005 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 22 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:20.316 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:20.316 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:23.327 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 23 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:23.328 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 23 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:25.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:25.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:28.733 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 24 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:28.733 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 24 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:31.237 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:31.237 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:34.249 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 25 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:34.249 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 25 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:36.863 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:36.863 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:39.877 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 26 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:39.877 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 26 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:42.582 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:42.582 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:45.583 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 27 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:45.583 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 27 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:48.386 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:48.386 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:51.387 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 28 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:51.387 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 28 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:54.290 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:54.290 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:22:55.089 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:22:57.307 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 29 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:22:57.307 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 29 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:00.323 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:00.323 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:03.343 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 30 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:04.021 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 30 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:06.444 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:07.126 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:09.454 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 31 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:10.136 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 31 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:12.658 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:13.339 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:15.667 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 32 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:16.347 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 32 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:18.974 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:19.653 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:21.979 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 33 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:22.666 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 33 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:25.389 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:26.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:28.398 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 34 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:29.078 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 34 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:31.900 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:32.587 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:34.911 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 35 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:35.207 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:23:35.590 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 35 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:38.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:39.198 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:41.520 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 36 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:42.214 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 36 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:45.229 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:45.921 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:48.231 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 37 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:48.934 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 37 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:52.038 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:52.739 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:55.042 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 38 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:55.754 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 38 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:23:58.945 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:23:59.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:24:01.950 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 39 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:24:02.680 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 39 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:24:05.964 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:24:06.688 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:24:08.980 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 40 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:24:09.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 40 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:24:13.092 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:24:13.818 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:24:15.289 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:24:16.106 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 41 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:24:16.832 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 41 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:24:20.312 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:24:21.036 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:24:23.328 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 42 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:24:24.041 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 42 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:24:27.632 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:24:28.357 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:24:30.643 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 43 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:24:31.366 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 43 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:24:35.049 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:24:35.776 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:24:38.065 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 44 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:24:38.794 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 44 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:24:42.567 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:24:43.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:24:45.575 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 45 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:24:46.315 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 45 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:24:50.183 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:24:50.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:24:53.185 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 46 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:24:53.931 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 46 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:24:55.390 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:24:57.898 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:24:58.642 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:25:00.908 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 47 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:25:01.659 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 47 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:25:05.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:25:06.471 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:25:08.720 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 48 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:25:09.478 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 48 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:25:13.632 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:25:14.386 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:25:16.644 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 49 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:25:17.391 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 49 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:25:21.651 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:25:22.403 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:25:24.666 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 50 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:25:25.414 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 50 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:25:29.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:25:30.425 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:25:32.686 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 51 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:25:33.429 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 51 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:25:35.489 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:25:37.688 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:25:38.444 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:25:40.696 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 52 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:25:41.454 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 52 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:25:45.706 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:25:46.466 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:25:48.710 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 53 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:25:49.471 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 53 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:25:53.734 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:25:54.503 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:25:57.114 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 54 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:25:57.513 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 54 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:26:02.127 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:02.515 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:05.143 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 55 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:26:05.530 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 55 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:26:10.157 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:10.545 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:13.168 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 56 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:26:13.549 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 56 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:26:15.594 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:26:18.180 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:18.552 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:21.194 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 57 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:26:21.568 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 57 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:26:26.206 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:26.579 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:29.215 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 58 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:26:29.586 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 58 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:26:34.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:34.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:37.235 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 59 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:26:37.604 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 59 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:26:42.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:42.618 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:45.258 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 60 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:26:45.628 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 60 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:26:50.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:50.640 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:53.271 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 61 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:26:53.644 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 61 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:26:55.693 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:26:58.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:58.657 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:01.282 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 62 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:27:01.669 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 62 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:27:06.289 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:06.673 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:09.305 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 63 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:27:09.677 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 63 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:27:14.312 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:14.683 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:17.329 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 64 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:27:17.698 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 64 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:27:22.343 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:22.700 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:25.351 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 65 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:27:25.707 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 65 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:27:30.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:30.713 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:33.361 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 66 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:27:33.718 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 66 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:27:35.790 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:27:38.369 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:38.723 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:41.373 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 67 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:27:41.731 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 67 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:27:46.377 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:46.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:49.383 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 68 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:27:49.742 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 68 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:27:54.398 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:54.754 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:57.401 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 69 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:27:57.771 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 69 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:28:02.406 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:28:02.777 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:28:05.415 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 70 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:28:05.789 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 70 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:28:10.417 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:28:10.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:28:13.430 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 71 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:28:13.817 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 71 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:28:15.890 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:28:18.440 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:28:18.826 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:28:21.454 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 72 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:28:21.827 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 72 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:28:26.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:28:26.833 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:28:29.481 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 73 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:28:29.838 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 73 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:28:34.488 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:28:34.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:28:37.498 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 74 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:28:37.851 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 74 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:28:42.499 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:28:42.867 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:28:45.511 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 75 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:28:45.872 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 75 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:28:50.526 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:28:50.882 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:28:53.537 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 76 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:28:53.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 76 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:28:55.992 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:28:58.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:28:58.898 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:29:01.558 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 77 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:29:01.912 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 77 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:29:06.560 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:29:06.919 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:29:09.569 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 78 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:29:09.922 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 78 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:29:14.578 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:29:14.925 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:29:17.581 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 79 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:29:17.934 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 79 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:29:22.585 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:29:22.945 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:29:25.587 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 80 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:29:25.959 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 80 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:29:30.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:29:30.968 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:29:33.606 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 81 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:29:33.981 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 81 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:29:36.089 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:29:38.611 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:29:38.986 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:29:41.627 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 82 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:29:41.988 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 82 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:29:46.635 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:29:46.991 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:29:49.651 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 83 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:29:49.992 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 83 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:29:54.664 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:29:55.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:29:57.670 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 84 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:29:58.014 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 84 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:30:02.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:30:03.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:30:05.695 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 85 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:30:06.036 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 85 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:30:10.701 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:30:11.042 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:30:13.714 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 86 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:30:14.053 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 86 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:30:16.191 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:30:18.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:30:19.057 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:30:21.739 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 87 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:30:22.066 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 87 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:30:26.763 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:30:27.117 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:30:29.773 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 88 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:30:30.126 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 88 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:30:34.786 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:30:35.140 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:30:37.788 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 89 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:30:38.152 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 89 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:30:42.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:30:43.157 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:30:45.805 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 90 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:30:46.161 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 90 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:30:50.816 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:30:51.171 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:30:53.827 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 91 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:30:54.183 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 91 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:30:56.292 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:30:58.842 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:30:59.184 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:31:01.847 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 92 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:31:02.201 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 92 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:31:06.855 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:31:07.212 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:31:09.858 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 93 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:31:10.215 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 93 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:31:14.867 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:31:15.227 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:31:17.871 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 94 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:31:18.228 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 94 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:31:22.883 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:31:23.243 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:31:25.896 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 95 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:31:26.255 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 95 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:31:30.905 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:31:31.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:31:33.914 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 96 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:31:34.271 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 96 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:31:36.399 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:31:38.925 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:31:39.279 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:31:41.934 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 97 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:31:42.288 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 97 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:31:46.937 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:31:47.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:31:49.948 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 98 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:31:50.302 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 98 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:31:54.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:31:55.311 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:31:57.963 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 99 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:31:58.320 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 99 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:32:02.971 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:32:03.327 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:32:05.980 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 100 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:32:06.332 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 100 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:32:10.989 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:32:11.347 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:32:13.990 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 101 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:32:14.354 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 101 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:32:16.489 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:32:18.993 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:32:19.366 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:32:22.002 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 102 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:32:22.370 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 102 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:32:27.010 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:32:27.384 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:32:30.020 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 103 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:32:30.391 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 103 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:32:35.033 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:32:35.405 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:32:38.047 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 104 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:32:38.418 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 104 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:32:43.062 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:32:43.422 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:32:46.065 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 105 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:32:46.438 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 105 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:32:51.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:32:51.448 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:32:54.082 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 106 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:32:54.465 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 106 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:32:56.592 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:32:59.083 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:32:59.466 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:33:02.098 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 107 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:33:02.472 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 107 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:33:07.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:33:07.475 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:33:10.116 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 108 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:33:10.487 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 108 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:33:15.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:33:15.487 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:33:18.136 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 109 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:33:18.508 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 109 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:33:23.141 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:33:23.513 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:33:26.156 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 110 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:33:26.522 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 110 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:33:31.169 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:33:31.537 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:33:34.183 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 111 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:33:34.553 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 111 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:33:36.690 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:33:39.184 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:33:39.556 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:33:42.198 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 112 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:33:42.569 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 112 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:33:47.202 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:33:47.573 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:33:50.211 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 113 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:33:50.586 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 113 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:33:55.216 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:33:55.587 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:33:58.226 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 114 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:33:58.589 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 114 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:34:03.237 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:34:03.595 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:34:06.245 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 115 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:34:06.599 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 115 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:34:11.254 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:34:11.613 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:34:14.265 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 116 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:34:14.621 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 116 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:34:16.795 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:34:19.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:34:19.626 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:34:22.288 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 117 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:34:22.630 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 117 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:34:27.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:34:27.634 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:34:30.310 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 118 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:34:30.647 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 118 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:34:35.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:34:35.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:34:38.325 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 119 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:34:38.677 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 119 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:34:43.340 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:34:43.678 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:34:46.356 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 120 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:34:46.693 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 120 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:34:51.367 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:34:51.708 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:34:54.383 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 121 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:34:54.722 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 121 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:34:56.891 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:34:59.383 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:34:59.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:02.391 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 122 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:35:02.733 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 122 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:35:07.395 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:07.736 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:10.397 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 123 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:35:10.751 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 123 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:35:15.402 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:15.757 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:18.419 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 124 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:35:18.770 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 124 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:35:23.434 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:23.775 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:26.442 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 125 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:35:26.781 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 125 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:35:31.447 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:31.784 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:34.453 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 126 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:35:34.786 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 126 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:35:36.989 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:35:39.456 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:39.793 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:42.460 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 127 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:35:42.802 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 127 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:35:47.475 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:47.804 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:50.485 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 128 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:35:50.817 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 128 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:35:55.486 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:55.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:58.497 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 129 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:35:58.828 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 129 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:36:03.502 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:36:03.830 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:36:06.509 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 130 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:36:06.833 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 130 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:36:11.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:36:11.847 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:36:14.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 131 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:36:14.854 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 131 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:36:17.089 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:36:19.540 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:36:19.867 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:36:22.553 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 132 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:36:22.880 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 132 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:36:27.563 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:36:27.891 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:36:30.580 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 133 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:36:30.901 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 133 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:36:35.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:36:35.915 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:36:38.590 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 134 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:36:38.918 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 134 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:36:43.604 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:36:43.931 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:36:46.612 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 135 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:36:46.936 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 135 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:36:51.625 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:36:51.951 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:36:54.631 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 136 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:36:54.956 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 136 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:36:57.193 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:36:59.634 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:36:59.972 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:37:02.636 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 137 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:37:02.974 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 137 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:37:07.643 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:37:07.985 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:37:10.657 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 138 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:37:10.987 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 138 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:37:15.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:37:15.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:37:18.669 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 139 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:37:19.013 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 139 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:37:23.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:37:24.019 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:37:26.692 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 140 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:37:27.036 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 140 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:37:31.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:37:32.050 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:37:34.704 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 141 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:37:35.058 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 141 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:37:37.289 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:37:39.712 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:37:40.073 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:37:42.718 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 142 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:37:43.088 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 142 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:37:47.731 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:37:48.088 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:37:50.739 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 143 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:37:51.096 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 143 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:37:55.750 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:37:56.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:37:58.759 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 144 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:37:59.115 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 144 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:38:03.768 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:38:04.122 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:38:06.776 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 145 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:38:07.133 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 145 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:38:11.788 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:38:12.146 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:38:14.790 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 146 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:38:15.158 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 146 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:38:17.392 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:38:19.792 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:38:20.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:38:22.800 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 147 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:38:23.172 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 147 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:38:27.801 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:38:28.174 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:38:30.804 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 148 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:38:31.177 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 148 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:38:35.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:38:36.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:38:38.828 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 149 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:38:39.197 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 149 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:38:43.831 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:38:44.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:38:46.842 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 150 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:38:47.214 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 150 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:38:51.856 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:38:52.218 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:38:54.859 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 151 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:38:55.230 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 151 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:38:57.490 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:38:59.865 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:39:00.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:39:02.874 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 152 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:39:03.246 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 152 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:39:07.879 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:39:08.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:39:10.895 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 153 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:39:11.270 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 153 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:39:15.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:39:16.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:39:18.909 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 154 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:39:19.283 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 154 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:39:23.916 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:39:24.290 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:39:26.922 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 155 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:39:27.294 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 155 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:39:31.931 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:39:32.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:39:34.937 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 156 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:39:35.308 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 156 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:39:37.591 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:39:39.947 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:39:40.321 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:39:42.954 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 157 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:39:43.327 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 157 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:39:47.955 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:39:48.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:39:50.968 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 158 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:39:51.344 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 158 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:39:55.973 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:39:56.347 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:39:58.981 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 159 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:39:59.354 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 159 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:40:03.985 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:40:04.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:40:06.989 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 160 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:40:07.378 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 160 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:40:12.002 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:40:12.392 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:40:15.007 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 161 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:40:15.408 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 161 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:40:17.699 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:40:20.012 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:40:20.419 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:40:23.019 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 162 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:40:23.429 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 162 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:40:28.022 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:40:28.442 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:40:31.026 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 163 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:40:31.460 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 163 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:40:36.028 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:40:36.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:40:39.037 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 164 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:40:39.468 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 164 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:40:44.051 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:40:44.485 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:40:47.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 165 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:40:47.502 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 165 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:40:52.081 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:40:52.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:40:55.088 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 166 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:40:55.523 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 166 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:40:57.798 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:41:00.094 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:41:00.529 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:41:03.100 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 167 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:41:03.532 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 167 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:41:08.103 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:41:08.539 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:41:11.112 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 168 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:41:11.549 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 168 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:41:16.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:41:16.554 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:41:19.137 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 169 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:41:19.557 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 169 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:41:24.149 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:41:24.570 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:41:27.161 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 170 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:41:27.580 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 170 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:41:32.165 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:41:32.584 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:41:35.169 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 171 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:41:35.602 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 171 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:41:37.891 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
22:41:40.169 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:41:40.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:41:43.182 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 172 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:41:43.612 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 172 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:41:48.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:41:48.614 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:41:51.205 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 173 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:41:51.626 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 173 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:41:56.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:41:56.638 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:41:59.231 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [af0af610-be41-4704-85b3-a76d261c7d22_config-0] Fail to connect server, after trying 174 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:41:59.652 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 174 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:42:04.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:42:04.543 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:42:04.545 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wu_zu_cloud deregistering service cloud-datasource with instance: Instance{instanceId='null', ip='192.168.1.107', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
22:42:04.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:42:04.800 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation UNREGISTER for DEFAULT_GROUP@@cloud-datasource
22:42:05.010 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
22:42:05.013 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
22:42:05.013 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
22:42:05.014 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
22:42:05.014 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
22:42:05.014 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
22:42:05.014 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
22:42:05.014 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
22:42:05.014 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
22:42:05.015 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
22:42:05.015 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
22:42:05.015 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
22:42:05.015 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->f29f2790-ee6d-4647-970a-9ca2d11cd6fb
22:42:05.015 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@129efe30[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1196]
22:42:05.015 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
22:42:05.015 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1918f8af[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:42:05.016 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724852640409_21.12.5.6_62499
22:42:05.016 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@203f9a9b[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 1001]
22:42:05.016 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->f29f2790-ee6d-4647-970a-9ca2d11cd6fb
22:42:05.016 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724852640409_21.12.5.6_62499
22:42:05.016 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f29f2790-ee6d-4647-970a-9ca2d11cd6fb] Fail to connect server, after trying 175 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
22:42:05.016 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
22:42:05.017 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
22:42:05.017 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
22:42:05.022 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
22:42:05.027 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
22:42:05.075 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
22:42:05.075 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
22:42:05.075 [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

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,563 @@
00:24:50.476 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
00:24:54.333 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
00:24:54.335 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
00:24:54.632 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
00:25:00.215 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
00:25:00.216 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
00:25:00.217 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
00:25:00.301 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
00:25:01.476 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
00:25:10.579 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
00:25:10.579 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
00:25:10.580 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
00:25:10.585 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
00:25:10.590 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
00:25:10.591 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
00:25:10.794 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 2fea0bc2-691c-4866-89b7-9446347f8255
00:25:10.796 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->2fea0bc2-691c-4866-89b7-9446347f8255
00:25:10.797 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2fea0bc2-691c-4866-89b7-9446347f8255] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
00:25:10.797 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2fea0bc2-691c-4866-89b7-9446347f8255] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
00:25:10.798 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2fea0bc2-691c-4866-89b7-9446347f8255] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
00:25:10.798 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2fea0bc2-691c-4866-89b7-9446347f8255] Try to connect to server on start up, server: {serverIp = '21.12.2.1', server main port = 8848}
00:25:10.798 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:25:11.195 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2fea0bc2-691c-4866-89b7-9446347f8255] Success to connect to server [21.12.2.1:8848] on start up, connectionId = 1725035110850_21.12.5.6_62221
00:25:11.195 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2fea0bc2-691c-4866-89b7-9446347f8255] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
00:25:11.195 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2fea0bc2-691c-4866-89b7-9446347f8255] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$592/0x000001ab934e5c28
00:25:11.195 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2fea0bc2-691c-4866-89b7-9446347f8255] Notify connected event to listeners.
00:25:11.196 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
00:25:11.197 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wu_zu_cloud registering service cloud-datasource with instance Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[240e:46c:7330:c82a:dfab:c76d:8f16:9744], preserved.register.source=SPRING_CLOUD}}
00:25:11.292 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-datasource 192.168.0.3:10003 register finished
00:25:12.558 [main] INFO c.m.e.CloudDataSourceApplication - [logStarted,56] - Started CloudDataSourceApplication in 28.626 seconds (process running for 30.688)
00:25:12.597 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
00:25:12.598 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
00:25:12.598 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource.yml+DEFAULT_GROUP+wu_zu_cloud
00:25:12.611 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource.yml, group=DEFAULT_GROUP, cnt=1
00:25:12.611 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource.yml, group=DEFAULT_GROUP
00:25:12.612 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource+DEFAULT_GROUP+wu_zu_cloud
00:25:12.613 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource, group=DEFAULT_GROUP, cnt=1
00:25:12.613 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource, group=DEFAULT_GROUP
00:25:12.616 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource-dev.yml+DEFAULT_GROUP+wu_zu_cloud
00:25:12.616 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP, cnt=1
00:25:12.616 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP
00:25:13.132 [RMI TCP Connection(5)-192.168.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
00:34:11.135 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
00:34:11.169 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [06eb8a1f-237f-4149-9478-b342f1a691e2_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
00:34:11.169 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:34:11.193 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /21.12.5.3:6379
00:34:14.301 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:34:17.314 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [06eb8a1f-237f-4149-9478-b342f1a691e2_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:34:17.522 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:34:20.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [06eb8a1f-237f-4149-9478-b342f1a691e2_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:34:20.835 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:34:21.353 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.5.3/<unresolved>:6379
00:34:23.268 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2fea0bc2-691c-4866-89b7-9446347f8255] Server healthy check fail, currentConnection = 1725035110850_21.12.5.6_62221
00:34:23.268 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2fea0bc2-691c-4866-89b7-9446347f8255] Try to reconnect to a new server, server is not appointed, will choose a random server.
00:34:23.268 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:34:23.849 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [06eb8a1f-237f-4149-9478-b342f1a691e2_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:34:24.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:34:26.381 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:34:27.263 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [06eb8a1f-237f-4149-9478-b342f1a691e2_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:34:27.776 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
00:34:28.847 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
00:34:28.847 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wu_zu_cloud deregistering service cloud-datasource with instance: Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
00:34:29.301 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
00:34:29.305 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
00:34:29.305 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
00:34:29.305 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
00:34:29.305 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
00:34:29.305 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
00:34:29.305 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
00:34:29.305 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
00:34:29.305 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
00:34:29.305 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
00:34:29.305 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
00:34:29.305 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
00:34:29.305 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->2fea0bc2-691c-4866-89b7-9446347f8255
00:34:29.305 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1838bd3a[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 185]
00:34:29.305 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
00:34:29.305 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3c38acc1[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
00:34:29.305 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725035110850_21.12.5.6_62221
00:34:29.309 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725035110850_21.12.5.6_62221
00:34:29.309 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2fea0bc2-691c-4866-89b7-9446347f8255] Fail to connect server, after trying 1 times, last try server is {serverIp = '21.12.2.1', server main port = 8848}, error = unknown
00:34:29.309 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@eff3a79[Running, pool size = 10, active threads = 1, queued tasks = 0, completed tasks = 118]
00:34:29.309 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->2fea0bc2-691c-4866-89b7-9446347f8255
00:34:29.309 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
00:34:29.309 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
00:34:29.309 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
00:34:29.313 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
00:34:29.317 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
00:34:29.333 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
00:34:29.333 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
00:34:29.333 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
08:54:45.372 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
08:54:48.560 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
08:54:48.560 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
08:54:48.637 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
08:54:53.236 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
08:54:53.237 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
08:54:53.237 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
08:54:53.300 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
08:54:54.327 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
08:55:02.633 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
08:55:02.634 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
08:55:02.634 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
08:55:02.639 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
08:55:02.643 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
08:55:02.643 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
08:55:02.898 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 371fdb6a-138a-490f-857c-8b12f83950a9
08:55:02.900 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->371fdb6a-138a-490f-857c-8b12f83950a9
08:55:02.900 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [371fdb6a-138a-490f-857c-8b12f83950a9] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
08:55:02.902 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [371fdb6a-138a-490f-857c-8b12f83950a9] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
08:55:02.902 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [371fdb6a-138a-490f-857c-8b12f83950a9] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
08:55:02.902 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [371fdb6a-138a-490f-857c-8b12f83950a9] Try to connect to server on start up, server: {serverIp = '21.12.2.1', server main port = 8848}
08:55:02.903 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:55:03.238 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [371fdb6a-138a-490f-857c-8b12f83950a9] Success to connect to server [21.12.2.1:8848] on start up, connectionId = 1725065702040_21.12.5.6_61522
08:55:03.239 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [371fdb6a-138a-490f-857c-8b12f83950a9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:55:03.239 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [371fdb6a-138a-490f-857c-8b12f83950a9] Notify connected event to listeners.
08:55:03.239 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [371fdb6a-138a-490f-857c-8b12f83950a9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$592/0x000001ba844e4ac0
08:55:03.239 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
08:55:03.240 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wu_zu_cloud registering service cloud-datasource with instance Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[240e:46c:7330:c82a:dfab:c76d:8f16:9744], preserved.register.source=SPRING_CLOUD}}
08:55:03.340 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-datasource 192.168.0.3:10003 register finished
08:55:04.549 [main] INFO c.m.e.CloudDataSourceApplication - [logStarted,56] - Started CloudDataSourceApplication in 25.349 seconds (process running for 26.633)
08:55:04.562 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
08:55:04.562 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
08:55:04.563 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource.yml+DEFAULT_GROUP+wu_zu_cloud
08:55:04.572 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource.yml, group=DEFAULT_GROUP, cnt=1
08:55:04.573 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource.yml, group=DEFAULT_GROUP
08:55:04.573 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource+DEFAULT_GROUP+wu_zu_cloud
08:55:04.574 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource, group=DEFAULT_GROUP, cnt=1
08:55:04.574 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource, group=DEFAULT_GROUP
08:55:04.577 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource-dev.yml+DEFAULT_GROUP+wu_zu_cloud
08:55:04.577 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP, cnt=1
08:55:04.577 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP
08:55:04.930 [RMI TCP Connection(3)-192.168.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
08:57:47.782 [http-nio-10003-exec-3] INFO c.m.d.pool.MysqlPool - [<init>,53] - MySQL连接池实例化完成
08:57:48.516 [http-nio-10003-exec-3] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
08:57:49.115 [http-nio-10003-exec-3] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
08:57:49.703 [http-nio-10003-exec-3] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
08:57:50.297 [http-nio-10003-exec-3] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
08:57:51.207 [http-nio-10003-exec-3] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
08:57:51.208 [http-nio-10003-exec-3] INFO c.m.d.pool.MysqlPool - [init,74] - MySQL连接池初始化完成
08:57:51.222 [http-nio-10003-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T08:57:51.220+0800]
08:58:14.804 [http-nio-10003-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T08:58:14.804+0800]
08:58:35.884 [pool-9-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T08:58:35.884+0800]
08:59:56.837 [nacos-grpc-client-executor-21.12.2.1-43] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [371fdb6a-138a-490f-857c-8b12f83950a9] Receive server push request, request = ClientDetectionRequest, requestId = 1380
08:59:56.837 [nacos-grpc-client-executor-21.12.2.1-43] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [371fdb6a-138a-490f-857c-8b12f83950a9] Ack server push request, request = ClientDetectionRequest, requestId = 1380
08:59:56.837 [nacos-grpc-client-executor-21.12.2.1-60] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aa16ddc1-257f-452d-ac7c-173529fcd287_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 1381
08:59:56.837 [nacos-grpc-client-executor-21.12.2.1-60] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aa16ddc1-257f-452d-ac7c-173529fcd287_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 1381
08:59:57.085 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
08:59:57.086 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wu_zu_cloud deregistering service cloud-datasource with instance: Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
08:59:57.201 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [371fdb6a-138a-490f-857c-8b12f83950a9] Server healthy check fail, currentConnection = 1725065702040_21.12.5.6_61522
08:59:57.201 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [371fdb6a-138a-490f-857c-8b12f83950a9] Try to reconnect to a new server, server is not appointed, will choose a random server.
08:59:57.201 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:57.324 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aa16ddc1-257f-452d-ac7c-173529fcd287_config-0] Server healthy check fail, currentConnection = 1725065683000_21.12.5.6_61509
08:59:57.324 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aa16ddc1-257f-452d-ac7c-173529fcd287_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
08:59:57.325 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
08:59:57.533 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
08:59:57.534 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
08:59:57.534 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
08:59:57.535 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
08:59:57.535 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
08:59:57.535 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
08:59:57.535 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
08:59:57.535 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
08:59:57.535 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
08:59:57.535 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
08:59:57.535 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
08:59:57.535 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
08:59:57.535 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->371fdb6a-138a-490f-857c-8b12f83950a9
08:59:57.535 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@508a07b[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 65]
08:59:57.536 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
08:59:57.536 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@23cf53b9[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
08:59:57.536 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725065702040_21.12.5.6_61522
08:59:57.536 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725065702040_21.12.5.6_61522
08:59:57.565 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3b1e7abd[Running, pool size = 8, active threads = 0, queued tasks = 0, completed tasks = 51]
08:59:57.566 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->371fdb6a-138a-490f-857c-8b12f83950a9
08:59:57.566 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
08:59:57.566 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
08:59:57.566 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
08:59:57.569 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
08:59:57.571 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
08:59:57.576 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
08:59:57.576 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
08:59:57.576 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
09:00:13.329 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
09:00:16.238 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:00:16.238 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
09:00:16.302 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:00:22.708 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
09:00:22.709 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
09:00:22.710 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:00:22.764 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
09:00:23.669 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:00:32.315 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
09:00:32.316 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
09:00:32.316 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
09:00:32.320 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
09:00:32.325 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:00:32.325 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:00:32.913 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of fe011453-d402-4aa2-b234-112167ca0f82
09:00:32.917 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->fe011453-d402-4aa2-b234-112167ca0f82
09:00:32.917 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:00:32.917 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:00:32.917 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:00:32.918 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Try to connect to server on start up, server: {serverIp = '21.12.2.1', server main port = 8848}
09:00:32.918 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:00:33.627 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Success to connect to server [21.12.2.1:8848] on start up, connectionId = 1725066032200_21.12.5.6_61720
09:00:33.627 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:00:33.627 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Notify connected event to listeners.
09:00:33.627 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$592/0x00000284814e7060
09:00:33.627 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:00:33.629 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wu_zu_cloud registering service cloud-datasource with instance Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[240e:46c:7330:c82a:dfab:c76d:8f16:9744], preserved.register.source=SPRING_CLOUD}}
09:00:33.758 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-datasource 192.168.0.3:10003 register finished
09:00:34.967 [main] INFO c.m.e.CloudDataSourceApplication - [logStarted,56] - Started CloudDataSourceApplication in 29.931 seconds (process running for 30.879)
09:00:34.979 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
09:00:34.979 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
09:00:34.980 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource.yml+DEFAULT_GROUP+wu_zu_cloud
09:00:34.987 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource.yml, group=DEFAULT_GROUP, cnt=1
09:00:34.988 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource.yml, group=DEFAULT_GROUP
09:00:34.988 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource+DEFAULT_GROUP+wu_zu_cloud
09:00:34.990 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource, group=DEFAULT_GROUP, cnt=1
09:00:34.990 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource, group=DEFAULT_GROUP
09:00:34.993 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource-dev.yml+DEFAULT_GROUP+wu_zu_cloud
09:00:34.993 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP, cnt=1
09:00:34.993 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP
09:00:35.353 [RMI TCP Connection(3)-192.168.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:00:38.434 [http-nio-10003-exec-1] INFO c.m.d.pool.MysqlPool - [<init>,53] - MySQL连接池实例化完成
09:00:52.500 [http-nio-10003-exec-2] INFO c.m.d.pool.MysqlPool - [<init>,53] - MySQL连接池实例化完成
09:00:55.059 [http-nio-10003-exec-1] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
09:00:57.058 [http-nio-10003-exec-1] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
09:00:57.065 [http-nio-10003-exec-2] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
09:00:59.087 [http-nio-10003-exec-1] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
09:00:59.311 [http-nio-10003-exec-2] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
09:01:00.413 [http-nio-10003-exec-2] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
09:01:00.511 [http-nio-10003-exec-1] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
09:01:03.181 [http-nio-10003-exec-1] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
09:01:03.181 [http-nio-10003-exec-1] INFO c.m.d.pool.MysqlPool - [init,74] - MySQL连接池初始化完成
09:01:03.274 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:01:03.271+0800]
09:01:03.673 [http-nio-10003-exec-2] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
09:01:16.952 [http-nio-10003-exec-2] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
09:01:16.955 [http-nio-10003-exec-2] INFO c.m.d.pool.MysqlPool - [init,74] - MySQL连接池初始化完成
09:01:20.476 [http-nio-10003-exec-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:01:20.476+0800]
09:01:26.277 [http-nio-10003-exec-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:01:26.276+0800]
09:01:27.843 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:01:27.842+0800]
09:01:33.554 [http-nio-10003-exec-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:01:33.554+0800]
09:01:36.425 [pool-9-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:01:36.425+0800]
09:01:37.904 [pool-11-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:01:37.903+0800]
09:02:44.424 [nacos-grpc-client-executor-21.12.2.1-32] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [289a6340-c0b5-46e7-ab41-3a29d7e3bc49_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 1386
09:02:44.426 [nacos-grpc-client-executor-21.12.2.1-32] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [289a6340-c0b5-46e7-ab41-3a29d7e3bc49_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 1386
09:02:44.426 [nacos-grpc-client-executor-21.12.2.1-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Receive server push request, request = ClientDetectionRequest, requestId = 1384
09:02:44.427 [nacos-grpc-client-executor-21.12.2.1-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Ack server push request, request = ClientDetectionRequest, requestId = 1384
09:02:46.530 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Server healthy check fail, currentConnection = 1725066032200_21.12.5.6_61720
09:02:46.530 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:02:46.530 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:46.533 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [289a6340-c0b5-46e7-ab41-3a29d7e3bc49_config-0] Server healthy check fail, currentConnection = 1725066010283_21.12.5.6_61700
09:02:46.533 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [289a6340-c0b5-46e7-ab41-3a29d7e3bc49_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:02:46.533 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:47.283 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Success to connect a server [21.12.2.1:8848], connectionId = 1725066165806_21.12.5.6_61888
09:02:47.283 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1725066032200_21.12.5.6_61720
09:02:47.283 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725066032200_21.12.5.6_61720
09:02:47.283 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [289a6340-c0b5-46e7-ab41-3a29d7e3bc49_config-0] Success to connect a server [21.12.2.1:8848], connectionId = 1725066165806_21.12.5.6_61889
09:02:47.283 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [289a6340-c0b5-46e7-ab41-3a29d7e3bc49_config-0] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1725066010283_21.12.5.6_61700
09:02:47.283 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725066010283_21.12.5.6_61700
09:02:47.285 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [289a6340-c0b5-46e7-ab41-3a29d7e3bc49_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:02:47.285 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:02:47.285 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [289a6340-c0b5-46e7-ab41-3a29d7e3bc49_config-0] Notify disconnected event to listeners
09:02:47.285 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Notify disconnected event to listeners
09:02:47.286 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [289a6340-c0b5-46e7-ab41-3a29d7e3bc49_config-0] DisConnected,clear listen context...
09:02:47.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:47.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:02:47.286 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [289a6340-c0b5-46e7-ab41-3a29d7e3bc49_config-0] Notify connected event to listeners.
09:02:47.286 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [289a6340-c0b5-46e7-ab41-3a29d7e3bc49_config-0] Connected,notify listen context...
09:02:47.287 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Notify connected event to listeners.
09:02:47.287 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:02:47.426 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-datasource
09:02:47.852 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [289a6340-c0b5-46e7-ab41-3a29d7e3bc49_config-0] Success to connect a server [21.12.2.1:8848], connectionId = 1725066166471_21.12.5.6_61891
09:02:47.852 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [289a6340-c0b5-46e7-ab41-3a29d7e3bc49_config-0] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1725066165806_21.12.5.6_61889
09:02:47.852 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725066165806_21.12.5.6_61889
09:02:47.852 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Success to connect a server [21.12.2.1:8848], connectionId = 1725066166471_21.12.5.6_61890
09:02:47.852 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1725066165806_21.12.5.6_61888
09:02:47.853 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725066165806_21.12.5.6_61888
09:02:47.854 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Notify disconnected event to listeners
09:02:47.854 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [289a6340-c0b5-46e7-ab41-3a29d7e3bc49_config-0] Notify disconnected event to listeners
09:02:47.854 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [289a6340-c0b5-46e7-ab41-3a29d7e3bc49_config-0] DisConnected,clear listen context...
09:02:47.854 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fe011453-d402-4aa2-b234-112167ca0f82] Notify connected event to listeners.
09:02:47.854 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [289a6340-c0b5-46e7-ab41-3a29d7e3bc49_config-0] Notify connected event to listeners.
09:02:47.854 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:02:47.854 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [289a6340-c0b5-46e7-ab41-3a29d7e3bc49_config-0] Connected,notify listen context...
09:02:50.519 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-datasource
09:04:29.364 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
09:04:29.364 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wu_zu_cloud deregistering service cloud-datasource with instance: Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
09:04:29.595 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
09:04:29.596 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
09:04:29.596 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
09:04:29.597 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
09:04:29.597 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
09:04:29.597 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
09:04:29.597 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
09:04:29.597 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
09:04:29.597 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
09:04:29.598 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
09:04:29.598 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
09:04:29.598 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
09:04:29.598 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->fe011453-d402-4aa2-b234-112167ca0f82
09:04:29.598 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@20d5c2e8[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 54]
09:04:29.598 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
09:04:29.598 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6835ec32[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
09:04:29.598 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725066166471_21.12.5.6_61890
09:04:29.599 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6ca482b2[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 56]
09:04:29.599 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->fe011453-d402-4aa2-b234-112167ca0f82
09:04:29.599 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
09:04:29.599 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
09:04:29.600 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
09:04:29.602 [com.alibaba.nacos.client.Worker.8] INFO c.a.n.c.a.r.i.CredentialWatcher - [loadCredentialFromEnv,189] - null No credential found
09:04:29.602 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
09:04:29.605 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
09:04:29.607 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
09:04:29.608 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
09:04:29.608 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
09:04:53.327 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
09:04:55.263 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:04:55.263 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
09:04:55.324 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:05:01.027 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
09:05:01.028 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
09:05:01.029 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:05:01.087 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
09:05:01.971 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:05:10.934 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
09:05:10.934 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
09:05:10.934 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
09:05:10.939 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
09:05:10.943 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:05:10.943 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:05:11.167 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 89bb8cd9-83a7-47d7-91d9-e5f03533ff44
09:05:11.170 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->89bb8cd9-83a7-47d7-91d9-e5f03533ff44
09:05:11.171 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89bb8cd9-83a7-47d7-91d9-e5f03533ff44] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:05:11.171 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89bb8cd9-83a7-47d7-91d9-e5f03533ff44] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:05:11.171 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89bb8cd9-83a7-47d7-91d9-e5f03533ff44] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:05:11.172 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89bb8cd9-83a7-47d7-91d9-e5f03533ff44] Try to connect to server on start up, server: {serverIp = '21.12.2.1', server main port = 8848}
09:05:11.172 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
09:05:11.503 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89bb8cd9-83a7-47d7-91d9-e5f03533ff44] Success to connect to server [21.12.2.1:8848] on start up, connectionId = 1725066310274_21.12.5.6_61959
09:05:11.504 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89bb8cd9-83a7-47d7-91d9-e5f03533ff44] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:05:11.504 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89bb8cd9-83a7-47d7-91d9-e5f03533ff44] Notify connected event to listeners.
09:05:11.505 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89bb8cd9-83a7-47d7-91d9-e5f03533ff44] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$592/0x000002172a4e7060
09:05:11.505 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:05:11.506 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wu_zu_cloud registering service cloud-datasource with instance Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[240e:46c:7330:c82a:dfab:c76d:8f16:9744], preserved.register.source=SPRING_CLOUD}}
09:05:11.738 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-datasource 192.168.0.3:10003 register finished
09:05:12.927 [main] INFO c.m.e.CloudDataSourceApplication - [logStarted,56] - Started CloudDataSourceApplication in 26.118 seconds (process running for 27.126)
09:05:12.940 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
09:05:12.941 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
09:05:12.943 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource.yml+DEFAULT_GROUP+wu_zu_cloud
09:05:12.951 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource.yml, group=DEFAULT_GROUP, cnt=1
09:05:12.951 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource.yml, group=DEFAULT_GROUP
09:05:12.952 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource+DEFAULT_GROUP+wu_zu_cloud
09:05:12.952 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource, group=DEFAULT_GROUP, cnt=1
09:05:12.952 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource, group=DEFAULT_GROUP
09:05:12.955 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource-dev.yml+DEFAULT_GROUP+wu_zu_cloud
09:05:12.955 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP, cnt=1
09:05:12.955 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP
09:05:13.436 [RMI TCP Connection(2)-192.168.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:05:17.870 [http-nio-10003-exec-1] INFO c.m.d.pool.MysqlPool - [<init>,53] - MySQL连接池实例化完成
09:05:18.450 [http-nio-10003-exec-1] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
09:05:19.020 [http-nio-10003-exec-1] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
09:05:19.565 [http-nio-10003-exec-1] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
09:05:20.345 [http-nio-10003-exec-1] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
09:05:21.016 [http-nio-10003-exec-1] INFO c.m.d.pool.MysqlPool - [createConn,143] - 初始化了一个数据库连接:{ip:21.12.5.3 port:3306databaseNameh6_cloud_server }
09:05:21.016 [http-nio-10003-exec-1] INFO c.m.d.pool.MysqlPool - [init,74] - MySQL连接池初始化完成
09:05:21.109 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:21.105+0800]
09:05:26.739 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:26.738+0800]
09:05:29.980 [pool-9-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:29.980+0800]
09:05:29.980 [pool-9-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:29.980+0800]
09:05:31.428 [pool-9-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:31.428+0800]
09:05:31.428 [pool-9-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:31.428+0800]
09:05:31.501 [pool-9-thread-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:31.501+0800]
09:05:31.501 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:31.501+0800]
09:05:31.588 [pool-9-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:31.588+0800]
09:05:31.656 [pool-9-thread-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:31.656+0800]
09:05:31.731 [pool-9-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:31.731+0800]
09:05:32.026 [pool-9-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:32.026+0800]
09:05:32.547 [pool-11-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:32.546+0800]
09:05:32.547 [pool-9-thread-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:32.546+0800]
09:05:32.666 [pool-9-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:32.666+0800]
09:05:32.765 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:32.764+0800]
09:05:32.872 [pool-9-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:32.871+0800]
09:05:33.182 [pool-9-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:33.182+0800]
09:05:33.695 [pool-13-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:33.695+0800]
09:05:33.774 [pool-9-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:33.774+0800]
09:05:33.852 [pool-11-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:33.852+0800]
09:05:33.856 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:33.856+0800]
09:05:33.941 [pool-13-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:33.941+0800]
09:05:34.001 [pool-9-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:34.001+0800]
09:05:34.071 [pool-13-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:34.071+0800]
09:05:37.097 [pool-13-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:37.097+0800]
09:05:37.171 [pool-15-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:37.171+0800]
09:05:37.236 [pool-9-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:37.236+0800]
09:05:37.307 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:37.307+0800]
09:05:37.382 [pool-13-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:37.382+0800]
09:05:37.456 [pool-15-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:37.456+0800]
09:05:37.523 [pool-9-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:37.523+0800]
09:05:37.586 [pool-15-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:37.586+0800]
09:05:37.759 [pool-13-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:37.759+0800]
09:05:37.816 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:37.816+0800]
09:05:37.894 [pool-9-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:37.894+0800]
09:05:37.976 [pool-17-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:37.976+0800]
09:05:38.056 [pool-11-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:38.056+0800]
09:05:38.118 [pool-13-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:38.118+0800]
09:05:38.346 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:38.346+0800]
09:05:38.496 [pool-19-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:38.496+0800]
09:05:38.786 [pool-19-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:38.786+0800]
09:05:38.958 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:38.958+0800]
09:05:39.026 [pool-11-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:39.026+0800]
09:05:39.026 [pool-17-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:39.026+0800]
09:05:39.106 [pool-9-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:39.106+0800]
09:05:39.176 [pool-9-thread-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:39.176+0800]
09:05:39.256 [pool-13-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:39.256+0800]
09:05:39.493 [pool-23-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:39.493+0800]
09:05:39.573 [pool-9-thread-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:39.573+0800]
09:05:39.626 [pool-13-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:39.626+0800]
09:05:39.729 [pool-23-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:39.729+0800]
09:05:39.817 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:39.817+0800]
09:05:39.881 [pool-9-thread-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:39.881+0800]
09:05:39.958 [pool-13-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:39.958+0800]
09:05:39.958 [pool-15-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:39.958+0800]
09:05:40.023 [pool-9-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:40.023+0800]
09:05:40.346 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:40.346+0800]
09:05:40.420 [pool-25-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:40.420+0800]
09:05:40.492 [pool-13-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:40.492+0800]
09:05:40.564 [pool-23-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:40.564+0800]
09:05:40.564 [pool-15-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:40.564+0800]
09:05:40.564 [pool-13-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:40.564+0800]
09:05:40.852 [pool-19-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:40.852+0800]
09:05:40.852 [pool-11-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:40.852+0800]
09:05:40.852 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:40.852+0800]
09:05:40.988 [pool-27-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:40.988+0800]
09:05:41.062 [pool-25-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:41.062+0800]
09:05:41.185 [pool-11-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:41.185+0800]
09:05:41.185 [pool-15-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:41.185+0800]
09:05:41.796 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:41.796+0800]
09:05:42.004 [pool-25-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:42.004+0800]
09:05:42.004 [pool-9-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:42.004+0800]
09:05:42.071 [pool-15-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:42.071+0800]
09:05:42.151 [pool-19-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:42.151+0800]
09:05:42.369 [pool-19-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:42.369+0800]
09:05:42.528 [pool-31-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:42.528+0800]
09:05:42.610 [pool-27-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:42.610+0800]
09:05:42.694 [pool-25-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:42.694+0800]
09:05:42.694 [pool-27-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:42.694+0800]
09:05:42.779 [pool-15-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:42.779+0800]
09:05:42.852 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:42.852+0800]
09:05:43.003 [pool-31-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:43.003+0800]
09:05:43.068 [pool-15-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:43.068+0800]
09:05:43.140 [pool-15-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:43.140+0800]
09:05:43.212 [pool-19-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:43.212+0800]
09:05:43.212 [pool-25-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:43.212+0800]
09:05:43.276 [pool-31-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:43.276+0800]
09:05:43.411 [pool-19-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:43.411+0800]
09:05:43.568 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:43.568+0800]
09:05:43.628 [pool-31-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:43.628+0800]
09:05:43.628 [pool-15-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:43.628+0800]
09:05:43.709 [pool-31-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:43.709+0800]
09:05:43.778 [pool-33-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:43.778+0800]
09:05:43.860 [pool-19-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:43.860+0800]
09:05:44.016 [pool-33-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:44.016+0800]
09:05:44.092 [pool-31-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:44.092+0800]
09:05:44.151 [pool-31-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:44.151+0800]
09:05:45.320 [pool-15-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:45.320+0800]
09:05:45.385 [pool-15-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:45.385+0800]
09:05:45.466 [pool-15-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:45.466+0800]
09:05:45.559 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:45.559+0800]
09:05:45.623 [pool-17-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:45.623+0800]
09:05:45.623 [pool-35-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:45.623+0800]
09:05:45.708 [pool-35-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:45.708+0800]
09:05:45.812 [pool-33-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:45.812+0800]
09:05:45.911 [pool-31-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:45.911+0800]
09:05:46.008 [pool-17-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:46.007+0800]
09:05:46.081 [pool-19-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:46.081+0800]
09:05:46.178 [pool-31-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:46.178+0800]
09:05:47.009 [pool-33-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:47.009+0800]
09:05:47.149 [pool-15-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:47.149+0800]
09:05:47.246 [pool-33-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:47.246+0800]
09:05:47.336 [pool-19-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:47.336+0800]
09:05:47.492 [pool-37-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:47.492+0800]
09:05:47.495 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:47.495+0800]
09:05:47.562 [pool-15-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:47.561+0800]
09:05:47.630 [pool-31-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:47.630+0800]
09:05:47.630 [pool-19-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:47.630+0800]
09:05:47.861 [pool-33-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:47.861+0800]
09:05:47.924 [pool-31-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:47.924+0800]
09:05:47.988 [pool-31-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:47.988+0800]
09:05:48.061 [pool-39-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:48.061+0800]
09:05:48.218 [pool-37-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:48.218+0800]
09:05:48.218 [pool-17-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:48.218+0800]
09:05:48.218 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:48.218+0800]
09:05:48.291 [pool-39-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:48.291+0800]
09:05:48.291 [pool-29-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:48.291+0800]
09:05:48.391 [pool-39-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:48.391+0800]
09:05:48.644 [pool-33-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:48.644+0800]
09:05:49.477 [pool-33-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:49.477+0800]
09:05:49.558 [pool-39-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:49.558+0800]
09:05:49.626 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:49.626+0800]
09:05:49.730 [pool-33-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:49.730+0800]
09:05:49.809 [pool-41-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:49.809+0800]
09:05:49.897 [pool-39-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:49.897+0800]
09:05:49.977 [pool-39-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:49.977+0800]
09:05:50.136 [pool-43-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:50.136+0800]
09:05:50.227 [pool-41-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:50.227+0800]
09:05:50.367 [pool-43-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:50.367+0800]
09:05:50.592 [pool-17-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:50.592+0800]
09:05:50.594 [http-nio-10003-exec-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:50.594+0800]
09:05:50.677 [pool-17-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:50.677+0800]
09:05:50.747 [pool-41-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:50.747+0800]
09:05:50.833 [pool-33-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:50.833+0800]
09:05:50.897 [pool-39-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:50.897+0800]
09:05:50.982 [pool-39-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:50.982+0800]
09:05:51.045 [pool-33-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:51.041+0800]
09:05:51.137 [pool-17-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:51.137+0800]
09:05:51.228 [pool-39-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:51.228+0800]
09:05:51.468 [pool-33-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:51.468+0800]
09:05:51.557 [pool-17-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,39] - 修改元素字段填充--[updateBy:0, updateTime:2024-08-31T09:05:51.557+0800]
09:11:23.832 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
09:11:23.832 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wu_zu_cloud deregistering service cloud-datasource with instance: Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
09:11:23.913 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
09:11:23.913 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
09:11:23.913 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
09:11:23.913 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
09:11:23.913 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
09:11:23.916 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
09:11:23.916 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
09:11:23.916 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
09:11:23.916 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
09:11:23.916 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
09:11:23.916 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
09:11:23.916 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
09:11:23.916 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->89bb8cd9-83a7-47d7-91d9-e5f03533ff44
09:11:23.916 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@39aaeda3[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 123]
09:11:23.916 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
09:11:23.916 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@dbd3039[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
09:11:23.916 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725066310274_21.12.5.6_61959
09:11:23.916 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@44b50a54[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 76]
09:11:23.916 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->89bb8cd9-83a7-47d7-91d9-e5f03533ff44
09:11:23.916 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
09:11:23.916 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
09:11:23.916 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
09:11:23.916 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
09:11:23.927 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
09:11:23.927 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
09:11:23.927 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
09:11:23.927 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye

View File

@ -0,0 +1,560 @@
20:55:40.123 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
20:55:41.777 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:55:41.778 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
20:55:41.823 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:55:46.040 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
20:55:46.041 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
20:55:46.041 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
20:55:46.079 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
20:55:46.136 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
20:55:46.137 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
20:55:46.141 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
20:55:46.141 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
20:55:46.141 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
20:55:46.142 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
20:57:28.824 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
20:57:30.479 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:57:30.479 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
20:57:30.533 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:57:34.698 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
20:57:34.699 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
20:57:34.699 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
20:57:34.734 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
20:57:34.773 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
20:57:34.774 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
20:57:34.778 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
20:57:34.778 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
20:57:34.778 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
20:57:34.780 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
21:02:04.385 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
21:02:05.939 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
21:02:05.940 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
21:02:05.988 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
21:02:10.147 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
21:02:10.147 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
21:02:10.148 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
21:02:10.184 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
21:02:10.228 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
21:02:10.228 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
21:02:10.233 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
21:02:10.233 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
21:02:10.233 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
21:02:10.234 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
21:02:57.599 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
21:02:59.069 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
21:02:59.069 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
21:02:59.119 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
21:03:03.443 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
21:03:03.444 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
21:03:03.444 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
21:03:03.485 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
21:03:03.529 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
21:03:03.530 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
21:03:03.534 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
21:03:03.534 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
21:03:03.534 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
21:03:03.535 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
21:06:04.934 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
21:06:06.827 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
21:06:06.827 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
21:06:06.898 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
21:06:11.284 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
21:06:11.285 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
21:06:11.285 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
21:06:11.328 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
21:06:11.396 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
21:06:11.398 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
21:06:11.402 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
21:06:11.402 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
21:06:11.402 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
21:06:11.403 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
21:30:46.730 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
21:30:48.258 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
21:30:48.258 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
21:30:48.305 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
21:30:53.538 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
21:30:53.538 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
21:30:53.539 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
21:30:53.576 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
21:30:54.240 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
21:30:54.295 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
21:30:54.296 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
21:30:54.300 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
21:30:54.301 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
21:30:54.301 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
21:30:54.301 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
21:36:17.091 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
21:36:18.665 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
21:36:18.665 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
21:36:18.711 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
21:36:23.126 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
21:36:23.127 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
21:36:23.127 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
21:36:23.171 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
21:36:23.807 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
21:36:30.673 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
21:36:30.674 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
21:36:30.674 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
21:36:30.677 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
21:36:30.680 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
21:36:30.680 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
21:36:30.863 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of c9dc0477-5462-4af1-983f-74573e1ff232
21:36:30.865 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->c9dc0477-5462-4af1-983f-74573e1ff232
21:36:30.865 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c9dc0477-5462-4af1-983f-74573e1ff232] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
21:36:30.865 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c9dc0477-5462-4af1-983f-74573e1ff232] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
21:36:30.865 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c9dc0477-5462-4af1-983f-74573e1ff232] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
21:36:30.865 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c9dc0477-5462-4af1-983f-74573e1ff232] Try to connect to server on start up, server: {serverIp = '21.12.2.1', server main port = 8848}
21:36:30.866 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:36:31.201 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c9dc0477-5462-4af1-983f-74573e1ff232] Success to connect to server [21.12.2.1:8848] on start up, connectionId = 1725197788378_21.12.5.6_62704
21:36:31.201 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c9dc0477-5462-4af1-983f-74573e1ff232] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
21:36:31.201 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c9dc0477-5462-4af1-983f-74573e1ff232] Notify connected event to listeners.
21:36:31.201 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c9dc0477-5462-4af1-983f-74573e1ff232] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$592/0x000001aa814e8870
21:36:31.202 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
21:36:31.202 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wu_zu_cloud registering service cloud-datasource with instance Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[240e:46c:7330:bc30:2d22:75e9:9581:e1f5], preserved.register.source=SPRING_CLOUD}}
21:36:31.284 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-datasource 192.168.0.3:10003 register finished
21:36:32.416 [main] INFO c.m.e.CloudDataSourceApplication - [logStarted,56] - Started CloudDataSourceApplication in 19.94 seconds (process running for 20.556)
21:36:32.423 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
21:36:32.423 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
21:36:32.424 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource.yml+DEFAULT_GROUP+wu_zu_cloud
21:36:32.429 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource.yml, group=DEFAULT_GROUP, cnt=1
21:36:32.429 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource.yml, group=DEFAULT_GROUP
21:36:32.429 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource+DEFAULT_GROUP+wu_zu_cloud
21:36:32.430 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource, group=DEFAULT_GROUP, cnt=1
21:36:32.430 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource, group=DEFAULT_GROUP
21:36:32.431 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource-dev.yml+DEFAULT_GROUP+wu_zu_cloud
21:36:32.432 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP, cnt=1
21:36:32.432 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP
21:36:32.793 [RMI TCP Connection(5)-192.168.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
21:41:19.339 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
21:41:19.340 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wu_zu_cloud deregistering service cloud-datasource with instance: Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
21:41:19.472 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
21:41:19.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
21:41:19.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
21:41:19.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
21:41:19.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
21:41:19.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
21:41:19.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
21:41:19.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
21:41:19.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
21:41:19.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
21:41:19.474 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
21:41:19.474 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
21:41:19.474 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->c9dc0477-5462-4af1-983f-74573e1ff232
21:41:19.474 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@47af0557[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 95]
21:41:19.474 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
21:41:19.474 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5520eec5[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
21:41:19.474 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725197788378_21.12.5.6_62704
21:41:19.477 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@510112d4[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 63]
21:41:19.477 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->c9dc0477-5462-4af1-983f-74573e1ff232
21:41:19.478 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
21:41:19.478 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
21:41:19.478 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
21:41:19.479 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
21:41:19.481 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
21:41:19.483 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
21:41:19.484 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
21:41:19.484 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
21:41:28.578 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
21:41:30.301 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
21:41:30.301 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
21:41:30.352 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
21:41:34.799 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
21:41:34.800 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
21:41:34.800 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
21:41:34.838 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
21:41:35.462 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
21:41:41.991 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
21:41:41.992 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
21:41:41.992 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
21:41:41.994 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
21:41:41.996 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
21:41:41.997 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
21:41:42.508 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of bc57b40d-7a4e-41bd-93e5-1f0fe6346e50
21:41:42.510 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->bc57b40d-7a4e-41bd-93e5-1f0fe6346e50
21:41:42.510 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bc57b40d-7a4e-41bd-93e5-1f0fe6346e50] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
21:41:42.510 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bc57b40d-7a4e-41bd-93e5-1f0fe6346e50] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
21:41:42.510 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bc57b40d-7a4e-41bd-93e5-1f0fe6346e50] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
21:41:42.510 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bc57b40d-7a4e-41bd-93e5-1f0fe6346e50] Try to connect to server on start up, server: {serverIp = '21.12.2.1', server main port = 8848}
21:41:42.510 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
21:41:42.799 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bc57b40d-7a4e-41bd-93e5-1f0fe6346e50] Success to connect to server [21.12.2.1:8848] on start up, connectionId = 1725198100009_21.12.5.6_63234
21:41:42.801 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bc57b40d-7a4e-41bd-93e5-1f0fe6346e50] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
21:41:42.801 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bc57b40d-7a4e-41bd-93e5-1f0fe6346e50] Notify connected event to listeners.
21:41:42.801 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bc57b40d-7a4e-41bd-93e5-1f0fe6346e50] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$592/0x000002570e4e4f40
21:41:42.801 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
21:41:42.802 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wu_zu_cloud registering service cloud-datasource with instance Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[240e:46c:7330:bc30:2d22:75e9:9581:e1f5], preserved.register.source=SPRING_CLOUD}}
21:41:42.881 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-datasource 192.168.0.3:10003 register finished
21:41:44.013 [main] INFO c.m.e.CloudDataSourceApplication - [logStarted,56] - Started CloudDataSourceApplication in 20.247 seconds (process running for 20.903)
21:41:44.021 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
21:41:44.021 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
21:41:44.022 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource.yml+DEFAULT_GROUP+wu_zu_cloud
21:41:44.028 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource.yml, group=DEFAULT_GROUP, cnt=1
21:41:44.029 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource.yml, group=DEFAULT_GROUP
21:41:44.029 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource+DEFAULT_GROUP+wu_zu_cloud
21:41:44.033 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource, group=DEFAULT_GROUP, cnt=1
21:41:44.034 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource, group=DEFAULT_GROUP
21:41:44.036 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource-dev.yml+DEFAULT_GROUP+wu_zu_cloud
21:41:44.036 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP, cnt=1
21:41:44.036 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP
21:41:44.596 [RMI TCP Connection(9)-192.168.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
22:01:30.205 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:01:30.205 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wu_zu_cloud deregistering service cloud-datasource with instance: Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
22:01:30.299 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
22:01:30.301 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
22:01:30.301 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
22:01:30.301 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
22:01:30.301 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
22:01:30.301 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
22:01:30.301 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
22:01:30.302 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
22:01:30.302 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
22:01:30.302 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
22:01:30.302 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
22:01:30.302 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
22:01:30.302 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->bc57b40d-7a4e-41bd-93e5-1f0fe6346e50
22:01:30.302 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@3e283766[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 394]
22:01:30.303 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
22:01:30.303 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@37fef9e8[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:01:30.303 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725198100009_21.12.5.6_63234
22:01:30.305 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1a1352b0[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 232]
22:01:30.305 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->bc57b40d-7a4e-41bd-93e5-1f0fe6346e50
22:01:30.305 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
22:01:30.305 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
22:01:30.306 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
22:01:30.307 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
22:01:30.309 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
22:01:30.312 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
22:01:30.313 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
22:01:30.313 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
22:35:46.454 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:35:46.824 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:47.133 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.a.AbstractAbilityControlManager - [initAbilityTable,61] - Ready to get current node abilities...
22:35:47.134 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.a.AbstractAbilityControlManager - [initAbilityTable,89] - Ready to initialize current node abilities, support modes: [SDK_CLIENT]
22:35:47.135 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.a.AbstractAbilityControlManager - [initAbilityTable,94] - Initialize current abilities finish...
22:35:47.136 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.a.d.NacosAbilityManagerHolder - [initAbilityControlManager,85] - [AbilityControlManager] Successfully initialize AbilityControlManager
22:35:47.232 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c570d6b1-caaf-41dc-8739-1c14d3e2a2e8_config-0] Success to connect a server [21.12.2.1:8848], connectionId = 1725201344146_21.12.5.6_61566
22:35:47.232 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c570d6b1-caaf-41dc-8739-1c14d3e2a2e8_config-0] Notify connected event to listeners.
22:35:47.233 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [c570d6b1-caaf-41dc-8739-1c14d3e2a2e8_config-0] Connected,notify listen context...
22:35:48.370 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10003"]
22:35:48.371 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:35:48.371 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:35:48.432 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:35:53.397 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
22:35:53.398 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
22:35:53.398 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
22:35:53.441 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
22:35:54.227 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:36:01.078 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:36:01.078 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:36:01.078 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:36:01.081 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:36:01.084 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
22:36:01.084 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
22:36:01.257 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of e1b82ad3-d488-47d1-a26a-07323144febc
22:36:01.258 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->e1b82ad3-d488-47d1-a26a-07323144febc
22:36:01.258 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e1b82ad3-d488-47d1-a26a-07323144febc] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:36:01.259 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e1b82ad3-d488-47d1-a26a-07323144febc] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:36:01.259 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e1b82ad3-d488-47d1-a26a-07323144febc] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:36:01.259 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e1b82ad3-d488-47d1-a26a-07323144febc] Try to connect to server on start up, server: {serverIp = '21.12.2.1', server main port = 8848}
22:36:01.259 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:36:01.541 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e1b82ad3-d488-47d1-a26a-07323144febc] Success to connect to server [21.12.2.1:8848] on start up, connectionId = 1725201358552_21.12.5.6_61632
22:36:01.541 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e1b82ad3-d488-47d1-a26a-07323144febc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:36:01.541 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e1b82ad3-d488-47d1-a26a-07323144febc] Notify connected event to listeners.
22:36:01.541 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e1b82ad3-d488-47d1-a26a-07323144febc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$589/0x000001d2814b8658
22:36:01.541 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:36:01.542 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wu_zu_cloud registering service cloud-datasource with instance Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[240e:46c:7330:bc30:2d22:75e9:9581:e1f5], preserved.register.source=SPRING_CLOUD}}
22:36:01.662 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-datasource 192.168.0.3:10003 register finished
22:36:02.814 [main] INFO c.m.e.CloudDataSourceApplication - [logStarted,56] - Started CloudDataSourceApplication in 33.317 seconds (process running for 34.041)
22:36:02.820 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:36:02.821 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:36:02.821 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource.yml+DEFAULT_GROUP+wu_zu_cloud
22:36:02.826 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource.yml, group=DEFAULT_GROUP, cnt=1
22:36:02.826 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource.yml, group=DEFAULT_GROUP
22:36:02.827 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource+DEFAULT_GROUP+wu_zu_cloud
22:36:02.827 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource, group=DEFAULT_GROUP, cnt=1
22:36:02.827 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource, group=DEFAULT_GROUP
22:36:02.828 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource-dev.yml+DEFAULT_GROUP+wu_zu_cloud
22:36:02.828 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP, cnt=1
22:36:02.829 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP
22:36:02.839 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:36:02.839 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wu_zu_cloud deregistering service cloud-datasource with instance: Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
22:36:02.909 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
22:36:02.910 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
22:36:02.910 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
22:36:02.910 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
22:36:02.911 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
22:36:02.911 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
22:36:02.911 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
22:36:02.911 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
22:36:02.911 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
22:36:02.911 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
22:36:02.911 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
22:36:02.911 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
22:36:02.911 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->e1b82ad3-d488-47d1-a26a-07323144febc
22:36:02.911 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@275e07c[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 0]
22:36:02.911 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
22:36:02.912 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6b9cc47f[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:36:02.912 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725201358552_21.12.5.6_61632
22:36:02.912 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@377d6a78[Running, pool size = 9, active threads = 0, queued tasks = 0, completed tasks = 9]
22:36:02.912 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->e1b82ad3-d488-47d1-a26a-07323144febc
22:36:02.912 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
22:36:02.913 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
22:36:02.913 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
22:36:02.915 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
22:36:02.916 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
22:36:02.921 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
22:36:02.921 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
22:36:02.921 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
22:36:12.767 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:36:14.380 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:36:14.380 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:36:14.425 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:36:21.228 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
22:36:21.229 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
22:36:21.229 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
22:36:21.266 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
22:36:21.967 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:36:29.004 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:36:29.005 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:36:29.005 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:36:29.008 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:36:29.011 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
22:36:29.011 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
22:36:29.176 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 18965288-cc21-4eb3-91ff-eb768208fb48
22:36:29.179 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->18965288-cc21-4eb3-91ff-eb768208fb48
22:36:29.179 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:36:29.179 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:36:29.179 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:36:29.180 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Try to connect to server on start up, server: {serverIp = '21.12.2.1', server main port = 8848}
22:36:29.180 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:36:29.519 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Success to connect to server [21.12.2.1:8848] on start up, connectionId = 1725201386494_21.12.5.6_61722
22:36:29.519 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:36:29.519 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Notify connected event to listeners.
22:36:29.519 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$592/0x000002f0874e8d88
22:36:29.519 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:36:29.520 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wu_zu_cloud registering service cloud-datasource with instance Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[240e:46c:7330:bc30:2d22:75e9:9581:e1f5], preserved.register.source=SPRING_CLOUD}}
22:36:29.607 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-datasource 192.168.0.3:10003 register finished
22:36:30.724 [main] INFO c.m.e.CloudDataSourceApplication - [logStarted,56] - Started CloudDataSourceApplication in 23.064 seconds (process running for 23.724)
22:36:30.732 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:36:30.732 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:36:30.732 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource.yml+DEFAULT_GROUP+wu_zu_cloud
22:36:30.738 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource.yml, group=DEFAULT_GROUP, cnt=1
22:36:30.738 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource.yml, group=DEFAULT_GROUP
22:36:30.738 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource+DEFAULT_GROUP+wu_zu_cloud
22:36:30.739 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource, group=DEFAULT_GROUP, cnt=1
22:36:30.739 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource, group=DEFAULT_GROUP
22:36:30.740 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource-dev.yml+DEFAULT_GROUP+wu_zu_cloud
22:36:30.740 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP, cnt=1
22:36:30.740 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP
22:36:30.946 [RMI TCP Connection(3)-192.168.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
22:38:09.848 [nacos-grpc-client-executor-21.12.2.1-35] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1192abad-b9d1-467d-9550-d6bf773a7087_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 1550
22:38:09.848 [nacos-grpc-client-executor-21.12.2.1-35] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1192abad-b9d1-467d-9550-d6bf773a7087_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 1550
22:38:48.261 [nacos-grpc-client-executor-21.12.2.1-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Receive server push request, request = ClientDetectionRequest, requestId = 1551
22:38:48.262 [nacos-grpc-client-executor-21.12.2.1-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Ack server push request, request = ClientDetectionRequest, requestId = 1551
22:38:48.504 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1192abad-b9d1-467d-9550-d6bf773a7087_config-0] Server healthy check fail, currentConnection = 1725201368670_21.12.5.6_61672
22:38:48.504 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1192abad-b9d1-467d-9550-d6bf773a7087_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:38:48.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.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:38:48.773 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1192abad-b9d1-467d-9550-d6bf773a7087_config-0] Success to connect a server [21.12.2.1:8848], connectionId = 1725201525803_21.12.5.6_62163
22:38:48.773 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1192abad-b9d1-467d-9550-d6bf773a7087_config-0] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1725201368670_21.12.5.6_61672
22:38:48.773 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725201368670_21.12.5.6_61672
22:38:48.776 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1192abad-b9d1-467d-9550-d6bf773a7087_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:38:48.776 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1192abad-b9d1-467d-9550-d6bf773a7087_config-0] Notify disconnected event to listeners
22:38:48.777 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:38:48.777 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [1192abad-b9d1-467d-9550-d6bf773a7087_config-0] DisConnected,clear listen context...
22:38:48.777 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1192abad-b9d1-467d-9550-d6bf773a7087_config-0] Notify connected event to listeners.
22:38:48.777 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [1192abad-b9d1-467d-9550-d6bf773a7087_config-0] Connected,notify listen context...
22:38:48.831 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Server healthy check fail, currentConnection = 1725201386494_21.12.5.6_61722
22:38:48.831 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:38:48.831 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:38:49.041 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1192abad-b9d1-467d-9550-d6bf773a7087_config-0] Success to connect a server [21.12.2.1:8848], connectionId = 1725201526061_21.12.5.6_62165
22:38:49.041 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1192abad-b9d1-467d-9550-d6bf773a7087_config-0] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1725201525803_21.12.5.6_62163
22:38:49.041 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725201525803_21.12.5.6_62163
22:38:49.042 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1192abad-b9d1-467d-9550-d6bf773a7087_config-0] Notify disconnected event to listeners
22:38:49.042 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [1192abad-b9d1-467d-9550-d6bf773a7087_config-0] DisConnected,clear listen context...
22:38:49.042 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1192abad-b9d1-467d-9550-d6bf773a7087_config-0] Notify connected event to listeners.
22:38:49.042 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [1192abad-b9d1-467d-9550-d6bf773a7087_config-0] Connected,notify listen context...
22:38:49.121 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Success to connect a server [21.12.2.1:8848], connectionId = 1725201526128_21.12.5.6_62166
22:38:49.122 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1725201386494_21.12.5.6_61722
22:38:49.122 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725201386494_21.12.5.6_61722
22:38:49.122 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:38:49.122 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Notify disconnected event to listeners
22:38:49.122 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:38:49.123 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Notify connected event to listeners.
22:38:49.123 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:38:49.419 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Success to connect a server [21.12.2.1:8848], connectionId = 1725201526435_21.12.5.6_62167
22:38:49.419 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Abandon prev connection, server is 21.12.2.1:8848, connectionId is 1725201526128_21.12.5.6_62166
22:38:49.419 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725201526128_21.12.5.6_62166
22:38:49.419 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Notify disconnected event to listeners
22:38:49.419 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [18965288-cc21-4eb3-91ff-eb768208fb48] Notify connected event to listeners.
22:38:49.419 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:38:50.308 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:38:50.308 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wu_zu_cloud deregistering service cloud-datasource with instance: Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
22:38:50.415 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
22:38:50.417 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
22:38:50.417 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
22:38:50.417 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
22:38:50.417 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
22:38:50.417 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
22:38:50.417 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
22:38:50.417 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
22:38:50.418 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
22:38:50.418 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
22:38:50.418 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
22:38:50.418 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
22:38:50.418 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->18965288-cc21-4eb3-91ff-eb768208fb48
22:38:50.419 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@29bb2887[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 27]
22:38:50.419 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
22:38:50.419 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@41faa2c3[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:38:50.419 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725201526435_21.12.5.6_62167
22:38:50.419 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4300cb25[Running, pool size = 17, active threads = 0, queued tasks = 0, completed tasks = 40]
22:38:50.420 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->18965288-cc21-4eb3-91ff-eb768208fb48
22:38:50.420 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
22:38:50.420 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
22:38:50.420 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
22:38:50.421 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
22:38:50.423 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
22:38:50.426 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
22:38:50.426 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
22:38:50.426 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
22:39:02.141 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:39:03.769 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:39:03.769 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:39:03.815 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:39:09.129 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
22:39:09.130 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
22:39:09.130 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
22:39:09.170 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
22:39:09.860 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:39:16.441 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:39:16.441 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:39:16.442 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:39:16.446 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:39:16.448 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
22:39:16.449 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
22:39:16.619 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 7292aa47-47d5-4029-8a44-d4633b5a2f52
22:39:16.620 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->7292aa47-47d5-4029-8a44-d4633b5a2f52
22:39:16.620 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7292aa47-47d5-4029-8a44-d4633b5a2f52] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:39:16.620 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7292aa47-47d5-4029-8a44-d4633b5a2f52] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:39:16.621 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7292aa47-47d5-4029-8a44-d4633b5a2f52] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:39:16.621 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7292aa47-47d5-4029-8a44-d4633b5a2f52] Try to connect to server on start up, server: {serverIp = '21.12.2.1', server main port = 8848}
22:39:16.621 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:39:16.987 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7292aa47-47d5-4029-8a44-d4633b5a2f52] Success to connect to server [21.12.2.1:8848] on start up, connectionId = 1725201553983_21.12.5.6_62261
22:39:16.987 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7292aa47-47d5-4029-8a44-d4633b5a2f52] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:39:16.987 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7292aa47-47d5-4029-8a44-d4633b5a2f52] Notify connected event to listeners.
22:39:16.987 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7292aa47-47d5-4029-8a44-d4633b5a2f52] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$592/0x000001e3554e5c28
22:39:16.987 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:39:16.989 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wu_zu_cloud registering service cloud-datasource with instance Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[240e:46c:7330:bc30:2d22:75e9:9581:e1f5], preserved.register.source=SPRING_CLOUD}}
22:39:17.061 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-datasource 192.168.0.3:10003 register finished
22:39:18.200 [main] INFO c.m.e.CloudDataSourceApplication - [logStarted,56] - Started CloudDataSourceApplication in 21.685 seconds (process running for 22.335)
22:39:18.207 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:39:18.208 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:39:18.208 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource.yml+DEFAULT_GROUP+wu_zu_cloud
22:39:18.213 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource.yml, group=DEFAULT_GROUP, cnt=1
22:39:18.214 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource.yml, group=DEFAULT_GROUP
22:39:18.214 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource+DEFAULT_GROUP+wu_zu_cloud
22:39:18.214 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource, group=DEFAULT_GROUP, cnt=1
22:39:18.214 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource, group=DEFAULT_GROUP
22:39:18.216 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource-dev.yml+DEFAULT_GROUP+wu_zu_cloud
22:39:18.217 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP, cnt=1
22:39:18.217 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP
22:39:18.299 [RMI TCP Connection(1)-192.168.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
22:40:10.423 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:40:10.423 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wu_zu_cloud deregistering service cloud-datasource with instance: Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
22:40:10.496 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
22:40:10.497 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
22:40:10.497 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
22:40:10.498 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
22:40:10.498 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
22:40:10.498 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
22:40:10.498 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
22:40:10.498 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
22:40:10.498 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
22:40:10.498 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
22:40:10.499 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
22:40:10.499 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
22:40:10.499 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->7292aa47-47d5-4029-8a44-d4633b5a2f52
22:40:10.499 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@4dfffc34[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 17]
22:40:10.499 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
22:40:10.499 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2787f89f[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:40:10.499 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725201553983_21.12.5.6_62261
22:40:10.501 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7bf24ca5[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 21]
22:40:10.502 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->7292aa47-47d5-4029-8a44-d4633b5a2f52
22:40:10.502 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
22:40:10.502 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
22:40:10.502 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
22:40:10.504 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
22:40:10.505 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
22:40:10.508 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
22:40:10.508 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
22:40:10.508 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
22:40:19.507 [main] INFO c.m.e.CloudDataSourceApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:40:21.044 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:40:21.044 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:40:21.096 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:40:26.499 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
22:40:26.499 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
22:40:26.499 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
22:40:26.537 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,23] - 元对象数据填充控制器【MyMetaObjectHandler】 ---》 加载完成
22:40:27.203 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:40:33.695 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:40:33.696 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:40:33.696 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:40:33.699 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:40:33.701 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
22:40:33.701 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
22:40:33.874 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 9334b406-de3b-4873-a9dc-6d44bb3975ed
22:40:33.875 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->9334b406-de3b-4873-a9dc-6d44bb3975ed
22:40:33.875 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9334b406-de3b-4873-a9dc-6d44bb3975ed] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:40:33.875 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9334b406-de3b-4873-a9dc-6d44bb3975ed] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:40:33.876 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9334b406-de3b-4873-a9dc-6d44bb3975ed] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:40:33.876 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9334b406-de3b-4873-a9dc-6d44bb3975ed] Try to connect to server on start up, server: {serverIp = '21.12.2.1', server main port = 8848}
22:40:33.876 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.2.1 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:40:34.315 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9334b406-de3b-4873-a9dc-6d44bb3975ed] Success to connect to server [21.12.2.1:8848] on start up, connectionId = 1725201631259_21.12.5.6_62617
22:40:34.315 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9334b406-de3b-4873-a9dc-6d44bb3975ed] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:40:34.315 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9334b406-de3b-4873-a9dc-6d44bb3975ed] Notify connected event to listeners.
22:40:34.315 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9334b406-de3b-4873-a9dc-6d44bb3975ed] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$592/0x0000016e924e8228
22:40:34.316 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:40:34.316 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wu_zu_cloud registering service cloud-datasource with instance Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[240e:46c:7330:bc30:2d22:75e9:9581:e1f5], preserved.register.source=SPRING_CLOUD}}
22:40:34.459 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-datasource 192.168.0.3:10003 register finished
22:40:35.591 [main] INFO c.m.e.CloudDataSourceApplication - [logStarted,56] - Started CloudDataSourceApplication in 20.596 seconds (process running for 21.251)
22:40:35.599 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:40:35.599 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:40:35.599 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource.yml+DEFAULT_GROUP+wu_zu_cloud
22:40:35.605 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource.yml, group=DEFAULT_GROUP, cnt=1
22:40:35.605 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource.yml, group=DEFAULT_GROUP
22:40:35.606 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource+DEFAULT_GROUP+wu_zu_cloud
22:40:35.606 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource, group=DEFAULT_GROUP, cnt=1
22:40:35.606 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource, group=DEFAULT_GROUP
22:40:35.607 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wu_zu_cloud-21.12.2.1_8848] [subscribe] cloud-datasource-dev.yml+DEFAULT_GROUP+wu_zu_cloud
22:40:35.609 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wu_zu_cloud-21.12.2.1_8848] [add-listener] ok, tenant=wu_zu_cloud, dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP, cnt=1
22:40:35.609 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-datasource-dev.yml, group=DEFAULT_GROUP
22:40:35.855 [RMI TCP Connection(3)-192.168.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
22:41:16.713 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:41:16.713 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wu_zu_cloud deregistering service cloud-datasource with instance: Instance{instanceId='null', ip='192.168.0.3', port=10003, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
22:41:16.819 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
22:41:16.820 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
22:41:16.821 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
22:41:16.821 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
22:41:16.821 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
22:41:16.821 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
22:41:16.821 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
22:41:16.821 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
22:41:16.821 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
22:41:16.821 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
22:41:16.821 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
22:41:16.821 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
22:41:16.821 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->9334b406-de3b-4873-a9dc-6d44bb3975ed
22:41:16.822 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@38d40bf1[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 14]
22:41:16.822 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
22:41:16.822 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@587c4b42[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:41:16.822 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725201631259_21.12.5.6_62617
22:41:16.825 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@521b3730[Running, pool size = 5, active threads = 1, queued tasks = 0, completed tasks = 18]
22:41:16.826 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->9334b406-de3b-4873-a9dc-6d44bb3975ed
22:41:16.826 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
22:41:16.826 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9334b406-de3b-4873-a9dc-6d44bb3975ed] Server healthy check fail, currentConnection = 1725201631259_21.12.5.6_62617
22:41:16.826 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
22:41:16.826 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
22:41:16.827 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
22:41:16.828 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
22:41:16.831 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
22:41:16.831 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
22:41:16.831 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye

Some files were not shown because too many files have changed in this diff Show More