数据获取结构字段

master
Yueng 2024-08-23 18:46:59 +08:00
parent 596e1e20d5
commit 1a073d19c5
31 changed files with 4391 additions and 228 deletions

23
Dockerfile 100644
View File

@ -0,0 +1,23 @@
# |— home
# |— app.jar - 启动jar报
# |— logs - 日志文件
# |— uploadPath - 上传路径
#指定构建镜像的起始镜像
FROM anolis-registry.cn-zhangjiakou.cr.aliyuncs.com/openanolis/openjdk:17-8.6
#执行 一些必备的条件
#定义时区参数
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo '$TZ' > /etc/timezone
# 挂在工作目录 YouMoments ago · Uncommitted changes
VOLUME ["/home/logs/cloud-property","/home/uploadPath"]
#拷贝执行jar包文件
COPY ./cloud-property/target/cloud-property.jar /home/app.jar
#构建启动命令
ENTRYPOINT ["java","-Dfile.encoding=utf-8","-jar"]
CMD ["/home/app.jar"]

View File

@ -1,9 +1,11 @@
package com.muyu.common.domain;
import com.muyu.common.core.web.domain.BaseEntity;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
/**
* @Author
@ -13,15 +15,15 @@ import lombok.NoArgsConstructor;
* @Date2024/8/21 1:00
*/
@Data
@Builder
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
public class Connect {
public class Connect extends BaseEntity {
/**
*
*/
private String driver;
private String driver = "com.mysql.cj.jdbc.Driver";
//jdbc:mysql://127.0.0.1:3306/test
/**
@ -34,6 +36,11 @@ public class Connect {
*/
private String ipAddress;
/**
*
*/
private String databaseName;
/**
*
*/

View File

@ -25,6 +25,7 @@ import java.util.Date;
@TableName(value = "data_source")
@AllArgsConstructor
@NoArgsConstructor
//核心数据库初始化
public class DataSourceInfo extends BaseEntity {
/**

View File

@ -20,8 +20,8 @@ import java.util.Date;
@Data
@Builder
@TableName(value = "data_source")
@AllArgsConstructor
@NoArgsConstructor
@AllArgsConstructor
public class DataSourceList {
/**

View File

@ -25,37 +25,37 @@ public class InitialData {
@TableId(value = "id",type = IdType.AUTO)
private String id ;
private String Name ;
private String CardNo ;
private String Descriot ;
private String CtfTp ;
private String CtfId ;
private String Gender ;
private String Birthday ;
private String Address ;
private String Zip ;
private String Dirty ;
private String District1 ;
private String District2 ;
private String District3 ;
private String District4 ;
private String District5 ;
private String District6 ;
private String FirstNm ;
private String LastNm ;
private String Duty ;
private String Mobile ;
private String Tel ;
private String Fax ;
private String EMail ;
private String Nation ;
private String Taste ;
private String Education ;
private String Company ;
private String CTel ;
private String CAddress ;
private String CZip ;
private String Family ;
private String Version ;
private String name ;
private String cardNo ;
private String descriot ;
private String ctfTp ;
private String ctfId ;
private String gender ;
private String birthday ;
private String address ;
private String zip ;
private String dirty ;
private String district1 ;
private String district2 ;
private String district3 ;
private String district4 ;
private String district5 ;
private String district6 ;
private String firstNm ;
private String lastNm ;
private String duty ;
private String mobile ;
private String tel ;
private String fax ;
private String eMail ;
private String nation ;
private String taste ;
private String education ;
private String company ;
private String cTel ;
private String cAddress ;
private String cZip ;
private String family ;
private String version ;
}

View File

@ -0,0 +1,31 @@
package com.muyu.common.domain;
import com.baomidou.mybatisplus.annotation.TableName;
import com.muyu.common.core.web.domain.BaseEntity;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @Authoryang
* @Packagecom.muyu.common.domain
* @Projectcloud-property
* @nameTableField
* @Date2024/8/23 11:39
*/
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@TableName("TableField")
public class TableField extends BaseEntity {
private String fieId;
private String type;
private String collation;
private String Null;
private String key;
private String comment;
}

View File

@ -1,5 +1,6 @@
package com.muyu.server;
import com.muyu.common.security.annotation.EnableMyFeignClients;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@ -10,6 +11,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
* @nameIntegration
* @Date2024/8/19 9:56
*/
@EnableMyFeignClients
@SpringBootApplication
public class IntegrationApplication {
public static void main(String[] args) {

View File

@ -3,14 +3,19 @@ package com.muyu.server.controller;
import com.muyu.common.core.domain.Result;
import com.muyu.common.domain.Connect;
import com.muyu.common.domain.DataSourceList;
import com.muyu.common.domain.TableField;
import com.muyu.server.service.DataSourceService;
import com.muyu.server.service.TableFieldService;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.AllArgsConstructor;
import org.springframework.util.CollectionUtils;
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 java.util.Collections;
import java.util.List;
/**
@ -21,19 +26,32 @@ import java.util.List;
* @Date2024/8/20 18:58
*/
@RestController
@RequestMapping("/datas")
@RequestMapping("/dataSource")
@Tag(name = "抽取数据",description = "从数据源抽取数据")
@AllArgsConstructor
public class DataSourceController {
private final DataSourceService dataSourceService;
private final TableFieldService tableFieldService;
@PostMapping("/extractData")
@Operation(summary = "抽取数据",description = "从数据源中抽取数据")
public Result<List<DataSourceList>> extractData(Connect connect){
List<DataSourceList> dataSourceLists = dataSourceService.extractData(connect);
dataSourceService.detailData(dataSourceLists);
public Result<List<DataSourceList>> extractData(@RequestBody Connect connect){
return Result.success(dataSourceService.extractData(connect),"您的数据已成功获取");
}
@PostMapping("/tableField")
@Operation(summary = "抽取结构",description = "从数据源中抽取结构")
public Result<String> extractTableField(@RequestBody Connect connect){
List<TableField> tableFields = dataSourceService.extractTableField(connect);
if (CollectionUtils.isEmpty(tableFields)){
return Result.success(null,"未查询到结构,请检查数据库");
}
for (TableField tableField : tableFields) {
tableFieldService.save(tableField);
}
return Result.success(null,"您的数据已成功获取");
}

View File

@ -1,38 +0,0 @@
package com.muyu.server.controller;
import com.muyu.common.core.domain.Result;
import com.muyu.common.domain.InitialData;
import com.muyu.server.service.InitialDataService;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
/**
* @Author
* @Packagecom.muyu.server.controller
* @Projectcloud-integration
* @nameInitialDataController
* @Date2024/8/21 1:07
*/
@RestController
@RequestMapping("/initialData")
@Tag(name = "查询源数据",description = "从数据源查询")
public class InitialDataController {
@Autowired private InitialDataService initialDataService;
@RequestMapping(path = "/list",method = RequestMethod.POST)
@Operation(summary = "查询源数据")
public Result<List<InitialData>> getInitialDataList() {
return Result.success(
initialDataService.getInitialDataList()
);
}
}

View File

@ -1,18 +0,0 @@
package com.muyu.server.controller;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @Authoryang
* @Packagecom.muyu.server.controller
* @Projectcloud-integration
* @nameRuleDataClassifyController
* @Date2024/8/21 21:49
*/
@RestController
@RequestMapping("/initialData")
@Tag(name = "查询规则类型",description = "从自由数据库查询规则类型")
public class RuleDataClassifyController {
}

View File

@ -1,18 +0,0 @@
package com.muyu.server.controller;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @Authoryang
* @Packagecom.muyu.server.controller
* @Projectcloud-integration
* @nameRuleDataController
* @Date2024/8/21 20:36
*/
@RestController
@RequestMapping("/ruleData")
@Tag(name = "查询源规则",description = "从自由数据库查询")
public class RuleDataController {
}

View File

@ -1,16 +0,0 @@
package com.muyu.server.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.muyu.common.domain.InitialData;
import org.apache.ibatis.annotations.Mapper;
/**
* @Author
* @Packagecom.muyu.server.mapper
* @Projectcloud-integration
* @nameInitialDataMapper
* @Date2024/8/21 12:56
*/
@Mapper
public interface InitialDataMapper extends BaseMapper<InitialData> {
}

View File

@ -0,0 +1,19 @@
package com.muyu.server.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.service.IService;
import com.muyu.common.domain.TableField;
import org.apache.ibatis.annotations.Mapper;
import java.util.ArrayList;
/**
* @Authoryang
* @Packagecom.muyu.server.service
* @Projectcloud-property
* @nameTableFieldService
* @Date2024/8/23 14:00
*/
@Mapper
public interface TableFieldMapper extends BaseMapper<TableField> {
}

View File

@ -4,6 +4,7 @@ package com.muyu.server.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.muyu.common.domain.Connect;
import com.muyu.common.domain.DataSourceList;
import com.muyu.common.domain.TableField;
import java.util.List;
@ -20,4 +21,6 @@ public interface DataSourceService extends IService<DataSourceList> {
void detailData(List<DataSourceList> dataSourceLists);
List<TableField> extractTableField(Connect connect);
}

View File

@ -1,16 +0,0 @@
package com.muyu.server.service;
import com.muyu.common.domain.InitialData;
import java.util.List;
/**
* @Author
* @Packagecom.muyu.server.service
* @Projectcloud-integration
* @nameInitialDataService
* @Date2024/8/21 12:56
*/
public interface InitialDataService {
List<InitialData> getInitialDataList();
}

View File

@ -0,0 +1,16 @@
package com.muyu.server.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.muyu.common.domain.TableField;
import java.util.ArrayList;
/**
* @Authoryang
* @Packagecom.muyu.server.service
* @Projectcloud-property
* @nameTableFieldService
* @Date2024/8/23 14:00
*/
public interface TableFieldService extends IService<TableField> {
}

View File

@ -4,16 +4,23 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.muyu.common.core.utils.StringUtils;
import com.muyu.common.domain.Connect;
import com.muyu.common.domain.DataSourceList;
import com.muyu.common.domain.TableField;
import com.muyu.server.mapper.DataSourceMapper;
import com.muyu.server.service.DataSourceService;
import com.muyu.server.service.TableFieldService;
import com.muyu.server.util.JdbcHelper;
import lombok.AllArgsConstructor;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
/**
* @Author
@ -26,10 +33,100 @@ import java.util.List;
public class DataSourceServiceImpl
extends ServiceImpl<DataSourceMapper, DataSourceList>
implements DataSourceService {
@Autowired
private TableFieldService tableFieldService;
@Override
public List<DataSourceList> extractData(Connect connect) {
ExecutorService executorService = Executors.newFixedThreadPool(100);
ArrayList<DataSourceList> dataSourceLists = new ArrayList<>();
int size = 5000;
executorService.submit(()->{
try {
if (StringUtils.isEmpty(connect.getIpAddress())){
throw new RuntimeException("请输入ip地址+端口号! 格式:127.0.0.1:3306");
}
if (StringUtils.isEmpty(connect.getUserName())){
throw new RuntimeException("请输入数据库用户名!");
}
if (StringUtils.isEmpty(connect.getPassword())){
throw new RuntimeException("请输入数据库密码");
}
int count = 2;
for (int i = 1; i < count; i++) {
try {
String sql = null;
Connection conn = JdbcHelper.getConn(connect);
String like = "";
for (String s : connect.getLike()) {
if (s.equals("Name") || s.equals("name")){
like += ",dashuju." + "`\uFEFFName`";
}else{
like += "," + s;
}
}
String substring = like.substring(1);
if (StringUtils.isNotEmpty(connect.getTableName())) {
sql = "select " + substring + " from " + connect.getTableName() +" LIMIT "+i+","+size;
i=i+size;
count=count+size;
count++;
}
PreparedStatement preparedStatement = conn.prepareStatement(sql);
ResultSet rs = preparedStatement.executeQuery();
while (rs.next()) {
int id = 0;
if (substring.contains("id")){
id = rs.getInt("id");
}
String name = (rs.getString("COLUMN_NAME"));
String gender = (rs.getString("gender"));
Date birthday = (rs.getDate("birthday"));
String address = (rs.getString("address"));
String mibile = (rs.getString("mibile"));
String idCard = (rs.getString("idCard"));
String email = (rs.getString("email"));
String credit = (rs.getString("credit"));
DataSourceList dataSourceList = new DataSourceList(
id,name,gender,birthday,address,mibile,idCard,email,credit
);
dataSourceLists.add(dataSourceList);
}
if (!rs.next()){
break;
}
JdbcHelper.close(conn, preparedStatement, rs);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
} catch (Exception e) {
e.printStackTrace();
}
});
return dataSourceLists;
}
@Override
public void detailData(List<DataSourceList> dataSourceLists) {
}
@Override
public List<TableField> extractTableField(Connect connect) {
if (StringUtils.isEmpty(connect.getIpAddress())){
throw new RuntimeException("请输入ip地址+端口号! 格式:127.0.0.1:3306");
@ -42,43 +139,34 @@ public class DataSourceServiceImpl
if (StringUtils.isEmpty(connect.getPassword())){
throw new RuntimeException("请输入数据库密码");
}
int count = 2;
for (int i = 1; i < count; i++) {
try {
String sql = null;
Connection conn = JdbcHelper.getConn(connect);
String like="";
for (String s : connect.getLike()) {
like+=","+s;
}
String substring = like.substring(1);
if (StringUtils.isNotEmpty(connect.getTableName())) {
sql = "select "+substring+" from "+connect.getTableName();
sql = "SHOW FULL FIELDS FROM " + connect.getTableName();
}
PreparedStatement preparedStatement = conn.prepareStatement(sql);
ResultSet rs = preparedStatement.executeQuery();
ArrayList<DataSourceList> dataSourceLists = new ArrayList<>();
ArrayList<TableField> tableFields = new ArrayList<>();
while (rs.next()) {
DataSourceList build = DataSourceList.builder()
.id(rs.getInt("id"))
.name(rs.getString("name"))
.gender(rs.getString("gender"))
.birthday(rs.getDate("birthday"))
.address(rs.getString("address"))
.mibile(rs.getString("mibile"))
.idCard(rs.getString("idCard"))
.credit(rs.getString("credit"))
TableField build = TableField.builder()
.fieId(rs.getString("fieId"))
.type(rs.getString("type"))
.collation(rs.getString("collation"))
.Null(rs.getString("Null"))
.key(rs.getString("key"))
.comment(rs.getString("comment"))
.build();
dataSourceLists.add(build);
tableFields.add(build);
}
JdbcHelper.close(conn,preparedStatement,rs);
return dataSourceLists;
} catch (Exception e) {
throw new RuntimeException(e);
return tableFields;
}catch (Exception e){}
}
}
@Override
public void detailData(List<DataSourceList> dataSourceLists) {
return null;
}
}

View File

@ -1,42 +0,0 @@
package com.muyu.server.service.impl;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.muyu.common.domain.InitialData;
import com.muyu.server.mapper.InitialDataMapper;
import lombok.extern.log4j.Log4j2;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* @Author
* @Packagecom.muyu.server.service.impl
* @Projectcloud-integration
* @nameInitialDataService
* @Date2024/8/21 12:57
*/
@Log4j2
@Service
public class InitialDataService
extends ServiceImpl<InitialDataMapper, InitialData>
implements com.muyu.server.service.InitialDataService {
@Autowired private InitialDataMapper initialDataMapper;
@Override
public List<InitialData> getInitialDataList() {
int pageNum = 1;
long total = initialDataMapper.selectCount(null);
long pageSize = (total + 10000 -1) / 10000;
while (pageNum <= pageSize) {
Page<InitialData> page = new Page(pageNum, 10000);
List<InitialData> records = initialDataMapper.selectPage(page, null).getRecords();
System.out.println(records.size());
pageNum++;
}
return List.of();
}
}

View File

@ -27,7 +27,7 @@ public class OperateCoreDataServiceImpl
@Autowired private OperateCoreDataMapper operateCoreDataMapper;
private final ExecutorService executor = Executors.newFixedThreadPool(1000);
private final ExecutorService executor = Executors.newFixedThreadPool(100);
/**
* 使线 mybatis-plus
@ -37,7 +37,7 @@ public class OperateCoreDataServiceImpl
@Override
public void addCoreData(List<CoreDataListReq> coreDataReqList) {
int size = 10000;
int size = 5000;
int totalBatches = (coreDataReqList.size() + size - 1) / size;
List<CompletableFuture<?>> futures = new ArrayList<>();

View File

@ -0,0 +1,23 @@
package com.muyu.server.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.muyu.common.domain.TableField;
import com.muyu.server.mapper.TableFieldMapper;
import com.muyu.server.service.TableFieldService;
import org.springframework.stereotype.Service;
import java.util.ArrayList;
/**
* @Authoryang
* @Packagecom.muyu.server.service.impl
* @Projectcloud-property
* @nameTableFieldServiceImpl
* @Date2024/8/23 16:59
*/
@Service
public class TableFieldServiceImpl
extends ServiceImpl<TableFieldMapper,TableField>
implements TableFieldService {
}

View File

@ -18,8 +18,8 @@ public class JdbcHelper {
public static Connection getConn( Connect connect) throws SQLException, ClassNotFoundException {
Class.forName(connect.getDriver());
return DriverManager.getConnection(new ConnectReq().getUrl()+connect.getIpAddress(),connect.getUserName(),connect.getPassword());
Class.forName(new ConnectReq().getDriver());
return DriverManager.getConnection(new ConnectReq().getUrl()+connect.getIpAddress()+"/"+connect.getDatabaseName(),connect.getUserName(),connect.getPassword());
}
public static void close(Connection connection,PreparedStatement preparedStatement,ResultSet resultSet) throws SQLException {

View File

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

View File

@ -0,0 +1,56 @@
# Tomcat
server:
port: 9701
# nacos线上地址
nacos:
addr: 21.12.0.8:8848
user-name: nacos
password: nacos
namespace: ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
# Spring
spring:
main:
allow-bean-definition-overriding: true
application:
# 应用名称
name: cloud-integration
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}
# rabbitMQ 配置文件
- application-rabbit-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-property"/>
<!-- 日志输出格式 -->
<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-property"/>
<!-- 日志输出格式 -->
<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-property"/>
<!-- 日志输出格式 -->
<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,211 @@
22:03:09.479 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter - [report,40] -
***************************
APPLICATION FAILED TO START
***************************
Description:
Field asyncLogService in com.muyu.common.log.aspect.LogAspect required a bean of type 'com.muyu.common.system.remote.RemoteLogService' that could not be found.
The injection point has the following annotations:
- @org.springframework.beans.factory.annotation.Autowired(required=true)
Action:
Consider defining a bean of type 'com.muyu.common.system.remote.RemoteLogService' in your configuration.
22:19:12.004 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter - [report,40] -
***************************
APPLICATION FAILED TO START
***************************
Description:
Field asyncLogService in com.muyu.common.log.aspect.LogAspect required a bean of type 'com.muyu.common.system.remote.RemoteLogService' that could not be found.
The injection point has the following annotations:
- @org.springframework.beans.factory.annotation.Autowired(required=true)
Action:
Consider defining a bean of type 'com.muyu.common.system.remote.RemoteLogService' in your configuration.
22:20:31.238 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter - [report,40] -
***************************
APPLICATION FAILED TO START
***************************
Description:
Field asyncLogService in com.muyu.common.log.aspect.LogAspect required a bean of type 'com.muyu.common.system.remote.RemoteLogService' that could not be found.
The injection point has the following annotations:
- @org.springframework.beans.factory.annotation.Autowired(required=true)
Action:
Consider defining a bean of type 'com.muyu.common.system.remote.RemoteLogService' in your configuration.
22:26:31.706 [nacos-grpc-client-executor-21.12.0.8-61] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1724336502762_21.12.0.11_62778]Request stream onCompleted, switch server
22:26:31.706 [nacos-grpc-client-executor-21.12.0.8-51] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1724336515001_21.12.0.11_62844]Request stream onCompleted, switch server
22:28:03.458 [http-nio-9701-exec-1] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleException,108] - 请求地址'/dataSource/extractData',发生系统异常.
org.springframework.web.HttpMediaTypeNotSupportedException: Content-Type 'application/x-www-form-urlencoded;charset=UTF-8' is not supported
at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodArgumentResolver.readWithMessageConverters(AbstractMessageConverterMethodArgumentResolver.java:213)
at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.readWithMessageConverters(RequestResponseBodyMethodProcessor.java:161)
at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.resolveArgument(RequestResponseBodyMethodProcessor.java:135)
at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)
at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:224)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:178)
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:653)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723)
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)
22:28:25.093 [http-nio-9701-exec-2] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleException,108] - 请求地址'/dataSource/extractData',发生系统异常.
org.springframework.web.HttpMediaTypeNotSupportedException: Content-Type 'application/x-www-form-urlencoded;charset=UTF-8' is not supported
at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodArgumentResolver.readWithMessageConverters(AbstractMessageConverterMethodArgumentResolver.java:213)
at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.readWithMessageConverters(RequestResponseBodyMethodProcessor.java:161)
at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.resolveArgument(RequestResponseBodyMethodProcessor.java:135)
at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)
at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:224)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:178)
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:653)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723)
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)
22:35:45.532 [nacos-grpc-client-executor-21.12.0.8-41] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1724336867210_21.12.0.11_62446]Request stream onCompleted, switch server
22:35:45.535 [nacos-grpc-client-executor-21.12.0.8-28] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1724336879226_21.12.0.11_62498]Request stream onCompleted, switch server
22:35:45.834 [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
22:35:45.853 [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=df70396a04782e034d8e5f4538e4d4a8, Client-RequestTS=1724337345509, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered.
22:35:45.935 [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
22:35:46.037 [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
22:35:46.144 [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
22:35:46.156 [SpringApplicationShutdownHook] ERROR c.a.c.n.r.NacosServiceRegistry - [deregister,111] - ERR_NACOS_DEREGISTER, de-register failed...NacosRegistration{nacosDiscoveryProperties=NacosDiscoveryProperties{serverAddr='21.12.0.8:8848', username='nacos', password='nacos', endpoint='', namespace='ec66ecf1-f28e-43bc-aa86-625f1bc53bf8', watchDelay=30000, logName='', service='cloud-integration', weight=1.0, clusterName='DEFAULT', group='DEFAULT_GROUP', namingLoadCacheAtStart='false', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}, registerEnabled=true, ip='192.168.1.129', networkInterface='', port=9701, 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)

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,521 @@
22:03:01.537 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:03:03.241 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:03:03.242 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:03:03.301 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:03:05.317 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
22:03:05.319 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
22:03:05.319 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
22:03:05.926 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:03:09.427 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
22:03:09.429 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
22:03:09.438 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
22:03:09.438 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
22:03:09.439 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
22:03:09.439 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
22:19:02.832 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:19:05.080 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:19:05.080 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:19:05.158 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:19:07.705 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
22:19:07.707 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
22:19:07.708 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
22:19:08.308 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:19:11.953 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
22:19:11.955 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
22:19:11.960 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
22:19:11.960 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
22:19:11.961 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
22:19:11.962 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
22:20:23.097 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:20:24.761 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:20:24.761 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:20:24.821 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:20:26.932 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
22:20:26.933 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
22:20:26.933 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
22:20:27.535 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:20:31.187 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
22:20:31.188 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
22:20:31.193 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
22:20:31.193 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
22:20:31.193 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
22:20:31.194 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
22:21:43.129 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:21:44.838 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:21:44.838 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:21:44.895 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:21:47.220 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
22:21:47.222 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
22:21:47.223 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
22:21:47.824 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:21:51.832 [main] INFO c.m.r.RabbitConfig - [init,29] - rabbitMQ启动成功
22:21:54.865 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:21:54.866 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:21:54.866 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:21:54.870 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:21:54.874 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
22:21:54.874 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
22:21:54.974 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of a4788e9b-2b86-44c0-adbd-7608370210b8
22:21:54.977 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->a4788e9b-2b86-44c0-adbd-7608370210b8
22:21:54.977 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:21:54.977 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:21:54.978 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:21:54.978 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Try to connect to server on start up, server: {serverIp = '21.12.0.8', server main port = 8848}
22:21:54.978 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:21:55.039 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Success to connect to server [21.12.0.8:8848] on start up, connectionId = 1724336515001_21.12.0.11_62844
22:21:55.039 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:21:55.040 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x0000015dd64ee7e0
22:21:55.040 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Notify connected event to listeners.
22:21:55.040 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:21:55.043 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 registering service cloud-integration with instance Instance{instanceId='null', ip='192.168.1.129', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
22:21:55.065 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-integration 192.168.1.129:9701 register finished
22:21:56.243 [main] INFO c.m.s.IntegrationApplication - [logStarted,56] - Started IntegrationApplication in 17.133 seconds (process running for 17.712)
22:21:56.252 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:21:56.252 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:21:56.254 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-integration-dev.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
22:21:56.260 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-integration-dev.yml, group=DEFAULT_GROUP, cnt=1
22:21:56.261 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-integration-dev.yml, group=DEFAULT_GROUP
22:21:56.261 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-integration.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
22:21:56.261 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-integration.yml, group=DEFAULT_GROUP, cnt=1
22:21:56.261 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-integration.yml, group=DEFAULT_GROUP
22:21:56.262 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-integration+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
22:21:56.262 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-integration, group=DEFAULT_GROUP, cnt=1
22:21:56.262 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-integration, group=DEFAULT_GROUP
22:21:56.663 [RMI TCP Connection(5)-192.168.1.129] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
22:26:31.704 [nacos-grpc-client-executor-21.12.0.8-61] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d0ca0c1-e27b-4547-8b3e-5b6e7f84ed2a_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 80
22:26:31.704 [nacos-grpc-client-executor-21.12.0.8-51] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Receive server push request, request = ClientDetectionRequest, requestId = 79
22:26:31.704 [nacos-grpc-client-executor-21.12.0.8-61] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d0ca0c1-e27b-4547-8b3e-5b6e7f84ed2a_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 80
22:26:31.704 [nacos-grpc-client-executor-21.12.0.8-51] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Ack server push request, request = ClientDetectionRequest, requestId = 79
22:26:31.973 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d0ca0c1-e27b-4547-8b3e-5b6e7f84ed2a_config-0] Server healthy check fail, currentConnection = 1724336502762_21.12.0.11_62778
22:26:31.974 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d0ca0c1-e27b-4547-8b3e-5b6e7f84ed2a_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:26:31.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.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:32.021 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d0ca0c1-e27b-4547-8b3e-5b6e7f84ed2a_config-0] Success to connect a server [21.12.0.8:8848], connectionId = 1724336791994_21.12.0.11_62151
22:26:32.021 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d0ca0c1-e27b-4547-8b3e-5b6e7f84ed2a_config-0] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1724336502762_21.12.0.11_62778
22:26:32.022 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724336502762_21.12.0.11_62778
22:26:32.025 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d0ca0c1-e27b-4547-8b3e-5b6e7f84ed2a_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:26:32.025 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d0ca0c1-e27b-4547-8b3e-5b6e7f84ed2a_config-0] Notify disconnected event to listeners
22:26:32.025 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [5d0ca0c1-e27b-4547-8b3e-5b6e7f84ed2a_config-0] DisConnected,clear listen context...
22:26:32.025 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:32.026 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d0ca0c1-e27b-4547-8b3e-5b6e7f84ed2a_config-0] Notify connected event to listeners.
22:26:32.026 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [5d0ca0c1-e27b-4547-8b3e-5b6e7f84ed2a_config-0] Connected,notify listen context...
22:26:32.085 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d0ca0c1-e27b-4547-8b3e-5b6e7f84ed2a_config-0] Success to connect a server [21.12.0.8:8848], connectionId = 1724336792045_21.12.0.11_62152
22:26:32.086 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d0ca0c1-e27b-4547-8b3e-5b6e7f84ed2a_config-0] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1724336791994_21.12.0.11_62151
22:26:32.086 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724336791994_21.12.0.11_62151
22:26:32.089 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d0ca0c1-e27b-4547-8b3e-5b6e7f84ed2a_config-0] Notify disconnected event to listeners
22:26:32.089 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [5d0ca0c1-e27b-4547-8b3e-5b6e7f84ed2a_config-0] DisConnected,clear listen context...
22:26:32.089 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d0ca0c1-e27b-4547-8b3e-5b6e7f84ed2a_config-0] Notify connected event to listeners.
22:26:32.090 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [5d0ca0c1-e27b-4547-8b3e-5b6e7f84ed2a_config-0] Connected,notify listen context...
22:26:32.104 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Server healthy check fail, currentConnection = 1724336515001_21.12.0.11_62844
22:26:32.104 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:26:32.104 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:32.180 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Success to connect a server [21.12.0.8:8848], connectionId = 1724336792148_21.12.0.11_62154
22:26:32.181 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1724336515001_21.12.0.11_62844
22:26:32.181 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724336515001_21.12.0.11_62844
22:26:32.181 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:26:32.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.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:26:32.182 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Notify disconnected event to listeners
22:26:32.183 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Notify connected event to listeners.
22:26:32.183 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:26:32.278 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Success to connect a server [21.12.0.8:8848], connectionId = 1724336792199_21.12.0.11_62155
22:26:32.278 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1724336792148_21.12.0.11_62154
22:26:32.278 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724336792148_21.12.0.11_62154
22:26:32.278 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Notify disconnected event to listeners
22:26:32.279 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4788e9b-2b86-44c0-adbd-7608370210b8] Notify connected event to listeners.
22:26:32.279 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:26:34.698 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-integration
22:27:39.191 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:27:39.191 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 deregistering service cloud-integration with instance: Instance{instanceId='null', ip='192.168.1.129', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
22:27:39.219 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
22:27:39.221 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
22:27:39.221 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
22:27:39.222 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
22:27:39.222 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
22:27:39.222 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
22:27:39.222 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
22:27:39.222 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
22:27:39.223 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
22:27:39.223 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
22:27:39.223 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
22:27:39.224 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
22:27:39.225 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->a4788e9b-2b86-44c0-adbd-7608370210b8
22:27:39.226 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@3def34f2[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 98]
22:27:39.226 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
22:27:39.226 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6ea2bf5f[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:27:39.227 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724336792199_21.12.0.11_62155
22:27:39.227 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@abd9c0c[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 80]
22:27:39.227 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->a4788e9b-2b86-44c0-adbd-7608370210b8
22:27:39.227 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
22:27:39.228 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
22:27:39.228 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
22:27:39.230 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
22:27:39.232 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
22:27:39.236 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
22:27:39.236 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
22:27:39.236 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
22:27:47.880 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:27:49.611 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:27:49.611 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:27:49.665 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:27:51.533 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
22:27:51.535 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
22:27:51.536 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
22:27:52.148 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:27:56.049 [main] INFO c.m.r.RabbitConfig - [init,29] - rabbitMQ启动成功
22:27:59.069 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:27:59.070 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:27:59.071 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:27:59.078 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:27:59.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:27:59.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:27:59.194 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of e841a445-195e-445d-82ea-104eed04d068
22:27:59.197 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->e841a445-195e-445d-82ea-104eed04d068
22:27:59.198 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:27:59.198 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:27:59.198 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:27:59.199 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Try to connect to server on start up, server: {serverIp = '21.12.0.8', server main port = 8848}
22:27:59.199 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:27:59.527 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Success to connect to server [21.12.0.8:8848] on start up, connectionId = 1724336879226_21.12.0.11_62498
22:27:59.527 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:27:59.527 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x0000025e014d2b60
22:27:59.527 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Notify connected event to listeners.
22:27:59.528 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:27:59.529 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 registering service cloud-integration with instance Instance{instanceId='null', ip='192.168.1.129', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
22:27:59.551 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-integration 192.168.1.129:9701 register finished
22:28:00.691 [main] INFO c.m.s.IntegrationApplication - [logStarted,56] - Started IntegrationApplication in 17.195 seconds (process running for 17.873)
22:28:00.706 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:28:00.706 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:28:00.709 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-integration-dev.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
22:28:00.719 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-integration-dev.yml, group=DEFAULT_GROUP, cnt=1
22:28:00.719 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-integration-dev.yml, group=DEFAULT_GROUP
22:28:00.720 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-integration.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
22:28:00.720 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-integration.yml, group=DEFAULT_GROUP, cnt=1
22:28:00.720 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-integration.yml, group=DEFAULT_GROUP
22:28:00.720 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-integration+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
22:28:00.721 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-integration, group=DEFAULT_GROUP, cnt=1
22:28:00.721 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-integration, group=DEFAULT_GROUP
22:28:00.951 [RMI TCP Connection(4)-192.168.1.129] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
22:35:45.525 [nacos-grpc-client-executor-21.12.0.8-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Receive server push request, request = ClientDetectionRequest, requestId = 86
22:35:45.525 [nacos-grpc-client-executor-21.12.0.8-41] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [855751f1-ec8e-4bc2-959b-1a49f2e6ccf1_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 85
22:35:45.527 [nacos-grpc-client-executor-21.12.0.8-41] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [855751f1-ec8e-4bc2-959b-1a49f2e6ccf1_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 85
22:35:45.533 [nacos-grpc-client-executor-21.12.0.8-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Ack server push request, request = ClientDetectionRequest, requestId = 86
22:35:45.729 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:35:45.730 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 deregistering service cloud-integration with instance: Instance{instanceId='null', ip='192.168.1.129', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
22:35:45.752 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [855751f1-ec8e-4bc2-959b-1a49f2e6ccf1_config-0] Server healthy check fail, currentConnection = 1724336867210_21.12.0.11_62446
22:35:45.752 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [855751f1-ec8e-4bc2-959b-1a49f2e6ccf1_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:35:45.753 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:45.794 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [855751f1-ec8e-4bc2-959b-1a49f2e6ccf1_config-0] Success to connect a server [21.12.0.8:8848], connectionId = 1724337345769_21.12.0.11_62416
22:35:45.796 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [855751f1-ec8e-4bc2-959b-1a49f2e6ccf1_config-0] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1724336867210_21.12.0.11_62446
22:35:45.796 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724336867210_21.12.0.11_62446
22:35:45.800 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [855751f1-ec8e-4bc2-959b-1a49f2e6ccf1_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:35:45.800 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [855751f1-ec8e-4bc2-959b-1a49f2e6ccf1_config-0] Notify disconnected event to listeners
22:35:45.800 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [855751f1-ec8e-4bc2-959b-1a49f2e6ccf1_config-0] DisConnected,clear listen context...
22:35:45.800 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:45.801 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [855751f1-ec8e-4bc2-959b-1a49f2e6ccf1_config-0] Notify connected event to listeners.
22:35:45.801 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [855751f1-ec8e-4bc2-959b-1a49f2e6ccf1_config-0] Connected,notify listen context...
22:35:45.839 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [855751f1-ec8e-4bc2-959b-1a49f2e6ccf1_config-0] Success to connect a server [21.12.0.8:8848], connectionId = 1724337345816_21.12.0.11_62417
22:35:45.840 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [855751f1-ec8e-4bc2-959b-1a49f2e6ccf1_config-0] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1724337345769_21.12.0.11_62416
22:35:45.840 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724337345769_21.12.0.11_62416
22:35:45.841 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [855751f1-ec8e-4bc2-959b-1a49f2e6ccf1_config-0] Notify disconnected event to listeners
22:35:45.841 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [855751f1-ec8e-4bc2-959b-1a49f2e6ccf1_config-0] DisConnected,clear listen context...
22:35:45.841 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [855751f1-ec8e-4bc2-959b-1a49f2e6ccf1_config-0] Notify connected event to listeners.
22:35:45.842 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [855751f1-ec8e-4bc2-959b-1a49f2e6ccf1_config-0] Connected,notify listen context...
22:35:46.015 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Server healthy check fail, currentConnection = 1724336879226_21.12.0.11_62498
22:35:46.016 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:35:46.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.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:46.060 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Success to connect a server [21.12.0.8:8848], connectionId = 1724337346032_21.12.0.11_62419
22:35:46.061 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1724336879226_21.12.0.11_62498
22:35:46.061 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724336879226_21.12.0.11_62498
22:35:46.061 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Try to reconnect to a new server, server is not appointed, will choose a random server.
22:35:46.061 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Notify disconnected event to listeners
22:35:46.061 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:35:46.062 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Notify connected event to listeners.
22:35:46.062 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:35:46.119 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Success to connect a server [21.12.0.8:8848], connectionId = 1724337346091_21.12.0.11_62420
22:35:46.119 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1724337346032_21.12.0.11_62419
22:35:46.119 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724337346032_21.12.0.11_62419
22:35:46.119 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Notify disconnected event to listeners
22:35:46.119 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e841a445-195e-445d-82ea-104eed04d068] Notify connected event to listeners.
22:35:46.120 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:35:46.157 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
22:35:46.159 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
22:35:46.160 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
22:35:46.160 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
22:35:46.160 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
22:35:46.160 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
22:35:46.160 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
22:35:46.160 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
22:35:46.161 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
22:35:46.161 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
22:35:46.161 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
22:35:46.161 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
22:35:46.161 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->e841a445-195e-445d-82ea-104eed04d068
22:35:46.161 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@9e29c6e[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 39]
22:35:46.161 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
22:35:46.161 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@63d628a4[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:35:46.161 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724337346091_21.12.0.11_62420
22:35:46.162 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@22c58cb2[Running, pool size = 16, active threads = 0, queued tasks = 0, completed tasks = 44]
22:35:46.163 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->e841a445-195e-445d-82ea-104eed04d068
22:35:46.163 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
22:35:46.163 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
22:35:46.164 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
22:35:46.165 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
22:35:46.167 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
22:35:46.173 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
22:35:46.173 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
22:35:46.173 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
22:35:55.707 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:35:57.422 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:35:57.422 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:35:57.478 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:35:58.911 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
22:35:58.914 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
22:35:58.914 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
22:35:59.545 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:36:03.581 [main] INFO c.m.r.RabbitConfig - [init,29] - rabbitMQ启动成功
22:36:06.654 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:36:06.655 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:36:06.656 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:36:06.663 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:36:06.668 [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:06.669 [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:06.777 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 7b308f96-ce28-4e72-98e8-0715bcfc2a33
22:36:06.780 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->7b308f96-ce28-4e72-98e8-0715bcfc2a33
22:36:06.780 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7b308f96-ce28-4e72-98e8-0715bcfc2a33] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:36:06.781 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7b308f96-ce28-4e72-98e8-0715bcfc2a33] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:36:06.781 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7b308f96-ce28-4e72-98e8-0715bcfc2a33] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:36:06.782 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7b308f96-ce28-4e72-98e8-0715bcfc2a33] Try to connect to server on start up, server: {serverIp = '21.12.0.8', server main port = 8848}
22:36:06.783 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:36:06.847 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7b308f96-ce28-4e72-98e8-0715bcfc2a33] Success to connect to server [21.12.0.8:8848] on start up, connectionId = 1724337366807_21.12.0.11_62496
22:36:06.848 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7b308f96-ce28-4e72-98e8-0715bcfc2a33] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:36:06.848 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7b308f96-ce28-4e72-98e8-0715bcfc2a33] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x00000183814f0440
22:36:06.848 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7b308f96-ce28-4e72-98e8-0715bcfc2a33] Notify connected event to listeners.
22:36:06.848 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:36:06.850 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 registering service cloud-integration with instance Instance{instanceId='null', ip='192.168.1.129', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
22:36:06.868 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-integration 192.168.1.129:9701 register finished
22:36:08.037 [main] INFO c.m.s.IntegrationApplication - [logStarted,56] - Started IntegrationApplication in 16.748 seconds (process running for 17.4)
22:36:08.044 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:36:08.045 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:36:08.046 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-integration-dev.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
22:36:08.053 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-integration-dev.yml, group=DEFAULT_GROUP, cnt=1
22:36:08.053 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-integration-dev.yml, group=DEFAULT_GROUP
22:36:08.053 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-integration.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
22:36:08.054 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-integration.yml, group=DEFAULT_GROUP, cnt=1
22:36:08.054 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-integration.yml, group=DEFAULT_GROUP
22:36:08.054 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-integration+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
22:36:08.054 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-integration, group=DEFAULT_GROUP, cnt=1
22:36:08.054 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-integration, group=DEFAULT_GROUP
22:36:08.231 [RMI TCP Connection(3)-192.168.1.129] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
22:37:27.764 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:37:27.765 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 deregistering service cloud-integration with instance: Instance{instanceId='null', ip='192.168.1.129', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
22:37:27.781 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
22:37:27.783 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
22:37:27.784 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
22:37:27.784 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
22:37:27.784 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
22:37:27.784 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
22:37:27.785 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
22:37:27.785 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
22:37:27.785 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
22:37:27.785 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
22:37:27.785 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
22:37:27.785 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
22:37:27.785 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->7b308f96-ce28-4e72-98e8-0715bcfc2a33
22:37:27.785 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@5e68aac8[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 25]
22:37:27.787 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
22:37:27.795 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@39969118[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:37:27.802 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724337366807_21.12.0.11_62496
22:37:27.838 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6efe849f[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 23]
22:37:27.848 [nacos-grpc-client-executor-21.12.0.8-23] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1724337366807_21.12.0.11_62496]Ignore complete event,isRunning:false,isAbandon=false
22:37:27.841 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->7b308f96-ce28-4e72-98e8-0715bcfc2a33
22:37:27.859 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
22:37:27.861 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
22:37:27.863 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
22:37:27.866 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
22:37:27.871 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
22:37:27.897 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
22:37:27.897 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
22:37:27.897 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
22:37:43.895 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:37:45.601 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:37:45.601 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:37:45.659 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:37:47.069 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
22:37:47.071 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
22:37:47.071 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
22:37:47.659 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:37:52.156 [main] INFO c.m.r.RabbitConfig - [init,29] - rabbitMQ启动成功
22:37:55.332 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:37:55.332 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:37:55.333 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:37:55.336 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:37:55.339 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
22:37:55.339 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
22:37:55.438 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of a65ae1a3-a2db-423a-8d5f-bcea45935c03
22:37:55.440 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->a65ae1a3-a2db-423a-8d5f-bcea45935c03
22:37:55.441 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a65ae1a3-a2db-423a-8d5f-bcea45935c03] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:37:55.441 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a65ae1a3-a2db-423a-8d5f-bcea45935c03] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:37:55.441 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a65ae1a3-a2db-423a-8d5f-bcea45935c03] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:37:55.441 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a65ae1a3-a2db-423a-8d5f-bcea45935c03] Try to connect to server on start up, server: {serverIp = '21.12.0.8', server main port = 8848}
22:37:55.441 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:37:55.527 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a65ae1a3-a2db-423a-8d5f-bcea45935c03] Success to connect to server [21.12.0.8:8848] on start up, connectionId = 1724337475471_21.12.0.11_62900
22:37:55.527 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a65ae1a3-a2db-423a-8d5f-bcea45935c03] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:37:55.527 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a65ae1a3-a2db-423a-8d5f-bcea45935c03] Notify connected event to listeners.
22:37:55.529 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a65ae1a3-a2db-423a-8d5f-bcea45935c03] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x000001f8c84f16e8
22:37:55.529 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:37:55.531 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 registering service cloud-integration with instance Instance{instanceId='null', ip='192.168.1.129', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
22:37:55.554 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-integration 192.168.1.129:9701 register finished
22:37:56.709 [main] INFO c.m.s.IntegrationApplication - [logStarted,56] - Started IntegrationApplication in 17.454 seconds (process running for 18.526)
22:37:56.717 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:37:56.717 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:37:56.719 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-integration-dev.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
22:37:56.724 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-integration-dev.yml, group=DEFAULT_GROUP, cnt=1
22:37:56.725 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-integration-dev.yml, group=DEFAULT_GROUP
22:37:56.725 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-integration.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
22:37:56.725 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-integration.yml, group=DEFAULT_GROUP, cnt=1
22:37:56.726 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-integration.yml, group=DEFAULT_GROUP
22:37:56.726 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-integration+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
22:37:56.726 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-integration, group=DEFAULT_GROUP, cnt=1
22:37:56.726 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-integration, group=DEFAULT_GROUP
22:37:57.112 [RMI TCP Connection(5)-192.168.1.129] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
22:39:15.373 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:39:15.373 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 deregistering service cloud-integration with instance: Instance{instanceId='null', ip='192.168.1.129', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
22:39:15.400 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
22:39:15.402 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
22:39:15.402 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
22:39:15.402 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
22:39:15.402 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
22:39:15.404 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
22:39:15.404 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
22:39:15.404 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
22:39:15.404 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
22:39:15.404 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
22:39:15.405 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
22:39:15.405 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
22:39:15.405 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->a65ae1a3-a2db-423a-8d5f-bcea45935c03
22:39:15.405 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@2539499c[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 23]
22:39:15.406 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
22:39:15.406 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@4ed1d30e[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:39:15.406 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724337475471_21.12.0.11_62900
22:39:15.408 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@616352c1[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 21]
22:39:15.410 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->a65ae1a3-a2db-423a-8d5f-bcea45935c03
22:39:15.410 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
22:39:15.410 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
22:39:15.410 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
22:39:15.412 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
22:39:15.414 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
22:39:15.418 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
22:39:15.418 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
22:39:15.418 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
22:39:25.337 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:39:27.043 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:39:27.043 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:39:27.094 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:39:31.846 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
22:39:31.847 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
22:39:31.847 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
22:39:32.504 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:39:36.611 [main] INFO c.m.r.RabbitConfig - [init,29] - rabbitMQ启动成功
22:39:39.711 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:39:39.712 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:39:39.713 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:39:39.722 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:39:39.726 [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:39.727 [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:39.933 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of dba0595d-108a-463d-bf88-4bbb3d8491e5
22:39:39.935 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->dba0595d-108a-463d-bf88-4bbb3d8491e5
22:39:39.935 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dba0595d-108a-463d-bf88-4bbb3d8491e5] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:39:39.935 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dba0595d-108a-463d-bf88-4bbb3d8491e5] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:39:39.935 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dba0595d-108a-463d-bf88-4bbb3d8491e5] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:39:39.936 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dba0595d-108a-463d-bf88-4bbb3d8491e5] Try to connect to server on start up, server: {serverIp = '21.12.0.8', server main port = 8848}
22:39:39.936 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:39:40.476 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dba0595d-108a-463d-bf88-4bbb3d8491e5] Success to connect to server [21.12.0.8:8848] on start up, connectionId = 1724337580031_21.12.0.11_63369
22:39:40.477 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dba0595d-108a-463d-bf88-4bbb3d8491e5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:39:40.477 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dba0595d-108a-463d-bf88-4bbb3d8491e5] Notify connected event to listeners.
22:39:40.477 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dba0595d-108a-463d-bf88-4bbb3d8491e5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x00000152bc4f0a70
22:39:40.477 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:39:40.480 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 registering service cloud-integration with instance Instance{instanceId='null', ip='192.168.1.129', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
22:39:40.746 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-integration 192.168.1.129:9701 register finished
22:39:41.929 [main] INFO c.m.s.IntegrationApplication - [logStarted,56] - Started IntegrationApplication in 21.955 seconds (process running for 22.568)
22:39:41.937 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:39:41.937 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:39:41.939 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-integration-dev.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
22:39:41.945 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-integration-dev.yml, group=DEFAULT_GROUP, cnt=1
22:39:41.945 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-integration-dev.yml, group=DEFAULT_GROUP
22:39:41.945 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-integration.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
22:39:41.946 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-integration.yml, group=DEFAULT_GROUP, cnt=1
22:39:41.946 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-integration.yml, group=DEFAULT_GROUP
22:39:41.946 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-integration+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
22:39:41.946 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-integration, group=DEFAULT_GROUP, cnt=1
22:39:41.946 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-integration, group=DEFAULT_GROUP
22:39:42.533 [RMI TCP Connection(10)-192.168.1.129] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
22:42:16.860 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
22:42:16.860 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 deregistering service cloud-integration with instance: Instance{instanceId='null', ip='192.168.1.129', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
22:42:16.873 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
22:42:16.875 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
22:42:16.875 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
22:42:16.875 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
22:42:16.875 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
22:42:16.875 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
22:42:16.875 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
22:42:16.875 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
22:42:16.875 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
22:42:16.876 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
22:42:16.876 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
22:42:16.876 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
22:42:16.876 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->dba0595d-108a-463d-bf88-4bbb3d8491e5
22:42:16.876 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@4f3f6ccc[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 51]
22:42:16.876 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
22:42:16.876 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@324ae0d[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:42:16.876 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724337580031_21.12.0.11_63369
22:42:16.880 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6d169942[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 36]
22:42:16.881 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->dba0595d-108a-463d-bf88-4bbb3d8491e5
22:42:16.882 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
22:42:16.883 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
22:42:16.883 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
22:42:16.884 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
22:42:16.886 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
22:42:16.891 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
22:42:16.891 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
22:42:16.891 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
22:43:12.488 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
22:43:14.227 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
22:43:14.227 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
22:43:14.280 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
22:43:15.527 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
22:43:15.529 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
22:43:15.530 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
22:43:16.139 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
22:43:20.094 [main] INFO c.m.r.RabbitConfig - [init,29] - rabbitMQ启动成功
22:43:23.174 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
22:43:23.175 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
22:43:23.175 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
22:43:23.180 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
22:43:23.184 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
22:43:23.184 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
22:43:23.288 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 14e68eda-e6d4-4470-8715-e79e69b80f6c
22:43:23.290 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->14e68eda-e6d4-4470-8715-e79e69b80f6c
22:43:23.290 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14e68eda-e6d4-4470-8715-e79e69b80f6c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
22:43:23.290 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14e68eda-e6d4-4470-8715-e79e69b80f6c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
22:43:23.291 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14e68eda-e6d4-4470-8715-e79e69b80f6c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
22:43:23.291 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14e68eda-e6d4-4470-8715-e79e69b80f6c] Try to connect to server on start up, server: {serverIp = '21.12.0.8', server main port = 8848}
22:43:23.291 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
22:43:23.341 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14e68eda-e6d4-4470-8715-e79e69b80f6c] Success to connect to server [21.12.0.8:8848] on start up, connectionId = 1724337803313_21.12.0.11_62146
22:43:23.341 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14e68eda-e6d4-4470-8715-e79e69b80f6c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
22:43:23.341 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14e68eda-e6d4-4470-8715-e79e69b80f6c] Notify connected event to listeners.
22:43:23.341 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14e68eda-e6d4-4470-8715-e79e69b80f6c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x000001d72f4f0440
22:43:23.341 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
22:43:23.342 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 registering service cloud-integration with instance Instance{instanceId='null', ip='192.168.1.129', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
22:43:23.358 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-integration 192.168.1.129:9701 register finished
22:43:24.512 [main] INFO c.m.s.IntegrationApplication - [logStarted,56] - Started IntegrationApplication in 16.112 seconds (process running for 16.906)
22:43:24.520 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
22:43:24.520 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
22:43:24.521 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-integration-dev.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
22:43:24.529 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-integration-dev.yml, group=DEFAULT_GROUP, cnt=1
22:43:24.529 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-integration-dev.yml, group=DEFAULT_GROUP
22:43:24.529 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-integration.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
22:43:24.530 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-integration.yml, group=DEFAULT_GROUP, cnt=1
22:43:24.530 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-integration.yml, group=DEFAULT_GROUP
22:43:24.530 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-integration+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8
22:43:24.530 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-integration, group=DEFAULT_GROUP, cnt=1
22:43:24.531 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-integration, group=DEFAULT_GROUP
22:43:25.105 [RMI TCP Connection(5)-192.168.1.129] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'

File diff suppressed because it is too large Load Diff