更换数据连接池,和查询二维数据和添加数据

master
lwj 2024-09-08 01:35:04 +08:00
parent f850395dc6
commit 1375fb4abf
31 changed files with 3334 additions and 662 deletions

View File

@ -0,0 +1,38 @@
package com.muyu.Hikari;
import com.muyu.domain.Source;
import com.zaxxer.hikari.HikariConfig;
import com.zaxxer.hikari.HikariDataSource;
import jakarta.validation.constraints.NotNull;
//连接池供所有连接是调用
public class HikariPool {
public static HikariDataSource instance = null;
@NotNull
public static synchronized HikariDataSource getHikariDataSource(Source dataSources) {
if(instance == null) {
HikariConfig hikariConfig = new HikariConfig();
hikariConfig.setPoolName("HikariCP 连接池");
hikariConfig.setDriverClassName(dataSources.getDriverName());
hikariConfig.setJdbcUrl(dataSources.getUrl());
hikariConfig.setUsername(dataSources.getUsername());
hikariConfig.setPassword(dataSources.getPassword());
hikariConfig.setMinimumIdle(2);
hikariConfig.setMaximumPoolSize(10);
// com.mysql.cj.jdbc.Driver
// hikariConfig.setJdbcUrl("jdbc:mysql://localhost:3306/yourDatabase");
// hikariConfig.setDataSourceClassName(dataSources.getDriverName());
// hikariConfig.addDataSourceProperty("user", dataSources.getUsername());
// hikariConfig.addDataSourceProperty("password", dataSources.getPassword());
// hikariConfig.addDataSourceProperty("url", dataSources.getUrl());
//
// hikariConfig.setMaximumPoolSize(15);
instance = new HikariDataSource(hikariConfig);
}
return instance;
}
}

View File

@ -0,0 +1,16 @@
package com.muyu.data.base;
public abstract class BaseDataAbsSource implements BaseDataSource{
@Override
public void setQuery(BaseQuery baseQuery){
BaseQueryHandler.set(baseQuery);
}
@Override
public <T> T getQuery(){
return BaseQueryHandler.get();
}
}

View File

@ -0,0 +1,24 @@
package com.muyu.data.base;
import com.muyu.domain.DataValue;
/**
*
*/
public interface BaseDataSource {
public void setQuery(BaseQuery baseQuery);
public <T> T getQuery();
public DataValue getDataValue();
DataValue[] getRow();
DataValue[][] getRows();
}

View File

@ -0,0 +1,15 @@
package com.muyu.data.base;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
@Data
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
public class BaseQuery {
private Long dataSourceId;
}

View File

@ -0,0 +1,18 @@
package com.muyu.data.base;
/**
*
*/
public class BaseQueryHandler {
private static final ThreadLocal<BaseQuery> BASE_QUERY_THREAD_LOCAL = new ThreadLocal<>();
public static void set(BaseQuery baseQuery){
BASE_QUERY_THREAD_LOCAL.set(baseQuery);
}
public static <T> T get(){
return (T) BASE_QUERY_THREAD_LOCAL.get();
}
}

View File

@ -1,5 +1,6 @@
package com.muyu.domain; package com.muyu.domain;
import com.muyu.domain.enums.DataType;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Builder; import lombok.Builder;
import lombok.Data; import lombok.Data;
@ -15,7 +16,7 @@ public class DataValue {
private String label; private String label;
private String type; private DataType type;
private Object value; private Object value;
} }

View File

@ -5,6 +5,8 @@ import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import com.muyu.common.core.annotation.Excel; import com.muyu.common.core.annotation.Excel;
import com.muyu.common.core.web.domain.BaseEntity; import com.muyu.common.core.web.domain.BaseEntity;
import com.muyu.domain.mysql.BaseConfig;
import com.muyu.domain.mysql.config.MysqlPoolConfig;
import jakarta.validation.constraints.NotBlank; import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotNull; import jakarta.validation.constraints.NotNull;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
@ -72,8 +74,6 @@ public class Source extends BaseEntity {
@Excel(name ="连接参数") @Excel(name ="连接参数")
private String connectionParams; private String connectionParams;
@Excel(name ="用户名") @Excel(name ="用户名")
private String username; private String username;
@ -86,5 +86,36 @@ public class Source extends BaseEntity {
@Excel(name ="状态") @Excel(name ="状态")
private String status; private String status;
@Excel(name = "驱动 ")
private String driverName;
public static MysqlPoolConfig getMysqlPoolConfig(Source source) {
return MysqlPoolConfig.builder()
.id(source.getId())
.dataResourceName(source.getDataResourceName())
.dataSourcesSystemName(source.getDataSourcesSystemName())
.host(source.getHost())
.port(source.getPort())
.databaseType(source.getDatabaseType())
.databaseName(source.getDatabaseName())
.initLinkNum(source.getInitLinkNum())
.maxLinkNum(source.getMaxLinkNum())
.build();
}
public String getUrl(){
StringBuilder urlSb = new StringBuilder(BaseConfig.MYSQLJDBCPRO);
urlSb.append(this.host);
urlSb.append(":");
urlSb.append(this.port);
urlSb.append("/");
urlSb.append(this.databaseName);
// urlSb.append("?");
// urlSb.append(this.connectionParams);
return urlSb.toString();
}
} }

View File

@ -5,6 +5,7 @@ import java.util.Date;
public enum DataType { public enum DataType {
VARCHAR("varchar",String.class,"String"), VARCHAR("varchar",String.class,"String"),
BIGINT("bigint",Long.class,"Long"), BIGINT("bigint",Long.class,"Long"),
INT("int",Integer.class,"Integer"), INT("int",Integer.class,"Integer"),
@ -17,12 +18,27 @@ public enum DataType {
private final Class<?> targetType; private final Class<?> targetType;
private final String javaType; private final String javaType;
public String getSourceType() {
return sourceType;
}
public Class<?> getTargetType() {
return targetType;
}
public String getJavaType() {
return javaType;
}
DataType(String sourceType, Class<?> targetType, String javaType) { DataType(String sourceType, Class<?> targetType, String javaType) {
this.sourceType = sourceType; this.sourceType = sourceType;
this.targetType = targetType; this.targetType = targetType;
this.javaType = javaType; this.javaType = javaType;
} }
public static Class convertType(String type){ public static Class convertType(String type){
for (DataType dataType : DataType.values()) { for (DataType dataType : DataType.values()) {
if(dataType.sourceType.equalsIgnoreCase(type)){ if(dataType.sourceType.equalsIgnoreCase(type)){
@ -33,14 +49,27 @@ public enum DataType {
} }
public static String getJavaType(String type){ public static String convertTypeString(String type){
for (DataType value : DataType.values()) {
if(value.sourceType.equalsIgnoreCase(type)){ for (DataType dataType : DataType.values()) {
return value.javaType; if (dataType.sourceType.equalsIgnoreCase(type)){
} return dataType.javaType;
} }
return String.class.getName(); }
} return "String";
}
public static DataType findBySqlType(String sqlType){
for (DataType dataType : DataType.values()) {
if (dataType.getSourceType().equalsIgnoreCase(sqlType)){
return dataType;
}
}
return VARCHAR;
}

View File

@ -1,4 +1,4 @@
package com.muyu.cloud.etl.mysql; package com.muyu.domain.mysql;
public class BaseConfig { public class BaseConfig {

View File

@ -1,4 +1,4 @@
package com.muyu.cloud.etl.mysql; package com.muyu.domain.mysql;
/** /**
* *
@ -12,4 +12,6 @@ public interface BasePool<T> {
public void replease(T conn); public void replease(T conn);
//创建连接 //创建连接
public T createConn(); public T createConn();
//关闭连接
public void closeConn();
} }

View File

@ -1,4 +1,5 @@
package com.muyu.cloud.etl.mysql; package com.muyu.domain.mysql;
public class MysqlConnException extends RuntimeException{ public class MysqlConnException extends RuntimeException{

View File

@ -1,6 +1,6 @@
package com.muyu.cloud.etl.mysql; package com.muyu.domain.mysql;
import com.muyu.cloud.etl.mysql.config.MysqlPoolConfig; import com.muyu.domain.mysql.config.MysqlPoolConfig;
import lombok.extern.log4j.Log4j2; import lombok.extern.log4j.Log4j2;
import java.sql.Connection; import java.sql.Connection;
@ -40,21 +40,22 @@ public class MysqlPool implements BasePool<Connection> {
log.info("MySQL连接池实例化完成"); log.info("MySQL连接池实例化完成");
} }
//进行初始化连接池 //进行初始化连接池
@Override @Override
public void init() { public void init() {
int maxTotal = this.mysqlPoolConfig.getMaxTotal(); Long maxLinkNum = this.mysqlPoolConfig.getMaxLinkNum();
int initTotal = this.mysqlPoolConfig.getInitTotal(); Long initLinkNum = this.mysqlPoolConfig.getInitLinkNum();
this.mysqlConneQueue=new LinkedBlockingQueue<Connection>(maxTotal); this.mysqlConneQueue=new LinkedBlockingQueue<Connection>(Math.toIntExact(maxLinkNum));
this.activeMysqlConnQueue=new LinkedBlockingQueue<Connection>(maxTotal); this.activeMysqlConnQueue=new LinkedBlockingQueue<Connection>(Math.toIntExact(initLinkNum));
for (int i = 0; i < initTotal; i++) { for (int i = 0; i < initLinkNum; i++) {
this.mysqlConneQueue.offer(createConn()); this.mysqlConneQueue.offer(createConn());
count.incrementAndGet(); count.incrementAndGet();
} }
log.info("MYSQL连接池初始化完成"); log.info("MYSQL连接池初始化完成");
} }
/** /**
* 1. * 1.
* 2. * 2.
@ -77,7 +78,7 @@ public class MysqlPool implements BasePool<Connection> {
return conn; return conn;
} }
//如果当前的连接数量小于最大的连接数量的时候创建新的连接0000. //如果当前的连接数量小于最大的连接数量的时候创建新的连接0000.
if(count.get()>this.mysqlPoolConfig.getMaxTotal()){ if(count.get()>this.mysqlPoolConfig.getMaxLinkNum()){
Connection mysqlConn = createConn(); Connection mysqlConn = createConn();
this.activeMysqlConnQueue.offer(mysqlConn); this.activeMysqlConnQueue.offer(mysqlConn);
count.incrementAndGet(); count.incrementAndGet();
@ -99,12 +100,11 @@ public class MysqlPool implements BasePool<Connection> {
this.mysqlConneQueue.offer(conn); this.mysqlConneQueue.offer(conn);
} }
} }
//获取mysql连接信息 //获取mysql连接信息
public Connection createConn() { public Connection createConn() {
String url = this.mysqlPoolConfig.getUrl(); String url = this.mysqlPoolConfig.getUrl();
String userName = this.mysqlPoolConfig.getUserName(); String userName = this.mysqlPoolConfig.getUsername();
String password = this.mysqlPoolConfig.getPassword(); String password = this.mysqlPoolConfig.getPassword();
Connection mysqlConn = null; Connection mysqlConn = null;
try { try {
@ -112,8 +112,73 @@ public class MysqlPool implements BasePool<Connection> {
} catch (SQLException e) { } catch (SQLException e) {
throw new RuntimeException(e); throw new RuntimeException(e);
} }
log.info("初始化一个数据库连接");
return mysqlConn; return mysqlConn;
} }
//关闭连接
@Override
public void closeConn() {
this.closeBaseConn();
this.closeActiveConn();
}
//关闭空闲连接
/**
*
*/
public void closeBaseConn() {
//从空闲连接当中拿出一个连接 准备进行关闭
//如何拿出的这个链接为null 表示以列当中没有连接信息
Connection poll = this.mysqlConneQueue.poll();
if (poll!=null){
try {
poll.close();
} catch (SQLException e) {
try {
//判断这个接是否被关闭了,如果连接被关闭则不需要放入队列当中
//如何这个链接没有被关闭 则放入队列当中 尝试下次关闭
if (!poll.isClosed()){
this.mysqlConneQueue.offer(poll);
}
} catch (SQLException ex) {
throw new RuntimeException(ex);
}
throw new RuntimeException(e);
}finally {
closeBaseConn();
}
}
}
//关闭活动队列
public void closeActiveConn() {
//从空闲连接当中拿出一个连接 准备进行关闭
//如何拿出的这个链接为null 表示以列当中没有连接信息
Connection poll = this.activeMysqlConnQueue.poll();
if (poll!=null){
try {
poll.close();
} catch (SQLException e) {
try {
//判断这个接是否被关闭了,如果连接被关闭则不需要放入队列当中
//如何这个链接没有被关闭 则放入队列当中 尝试下次关闭
if (!poll.isClosed()){
this.activeMysqlConnQueue.offer(poll);
}
} catch (SQLException ex) {
throw new RuntimeException(ex);
}
throw new RuntimeException(e);
}finally {
closeActiveConn();
}
}
}
} }

View File

@ -0,0 +1,102 @@
package com.muyu.domain.mysql.config;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.muyu.common.core.annotation.Excel;
import com.muyu.domain.mysql.BaseConfig;
import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotNull;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class MysqlPoolConfig {
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/** 接入源名称 */
@Excel(name = "接入源名称")
@NotBlank
private String dataResourceName;
/** 数据来源系统名称 */
@Excel(name = "数据来源系统名称")
@NotBlank
private String dataSourcesSystemName;
/** 主机ip地址 */
@NotNull
@Excel(name = "主机ip地址")
private String host;
/** 端口 */
@Excel(name = "端口")
private String port;
/** 数据接入类型 */
@Excel(name = "数据接入类型")
private String databaseType;
/** 数据库名称 */
@Excel(name = "数据库名称")
private String databaseName;
/** 初始化连接数量 */
@Excel(name = "初始化连接数量")
private Long initLinkNum;
/** 最大连接数量 */
@Excel(name = "最大连接数量")
private Long maxLinkNum;
/** 最大等待时间 */
@Excel(name = "最大等待时间")
private Long maxWaitTime;
/** 最大等待次数 */
@Excel(name = "最大等待次数")
private Long maxWaitTimes;
@Excel(name ="连接参数")
private String connectionParams;
@Excel(name ="用户名")
private String username;
@Excel(name ="密码")
private String password;
@Excel(name ="备注")
private String remark;
@Excel(name ="状态")
private String status;
@Excel(name = "驱动 ")
private String driverName;
/**
*
* @return
*/
public String getUrl(){
StringBuilder urlSb = new StringBuilder(BaseConfig.MYSQLJDBCPRO);
urlSb.append(this.host);
urlSb.append(":");
urlSb.append(this.port);
urlSb.append("/");
urlSb.append(this.databaseName);
urlSb.append("?");
urlSb.append(this.connectionParams);
return urlSb.toString();
}
}

View File

@ -18,6 +18,19 @@
<dependencies> <dependencies>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>4.0.3</version>
</dependency>
<!-- //连接池依赖-->
<!-- <dependency>-->
<!-- <groupId>com.alibaba</groupId>-->
<!-- <artifactId>druid</artifactId>-->
<!-- <version>1.2.7</version> &lt;!&ndash; 根据实际情况选择版本 &ndash;&gt;-->
<!-- </dependency>-->

View File

@ -51,6 +51,7 @@ public class AccreditController {
return i>0?Result.success(i):Result.error(); return i>0?Result.success(i):Result.error();
} }
//根据数据源Id,和表Id部门Id和用户Id 删除中间表取消授权 //根据数据源Id,和表Id部门Id和用户Id 删除中间表取消授权
@PostMapping("/remove") @PostMapping("/remove")
public Result remove(@RequestBody AccreditReq accreditReq) { public Result remove(@RequestBody AccreditReq accreditReq) {

View File

@ -14,7 +14,6 @@ public class DataValueController {
@Autowired @Autowired
private DataValueService dataValueService; private DataValueService dataValueService;
//获取字段值 供任务调用 //获取字段值 供任务调用
@PostMapping("/findTableValue") @PostMapping("/findTableValue")
public Result findTableValue(@RequestParam("basicId") Long basicId,@RequestParam("sql") String sql) { public Result findTableValue(@RequestParam("basicId") Long basicId,@RequestParam("sql") String sql) {
@ -30,8 +29,6 @@ public class DataValueController {
return Result.success(list); return Result.success(list);
} }
//添加数据库 //添加数据库
//根据值添加的表中 //根据值添加的表中
@PostMapping("/addTable") @PostMapping("/addTable")
@ -46,6 +43,18 @@ public class DataValueController {
return dataValueService.findCount(basicId,sql); return dataValueService.findCount(basicId,sql);
} }
//获取字段值 供任务调用
@PostMapping("/findTableValueToArray")
public DataValue[][] findTableValueToArray(@RequestParam("basicId") Long basicId, @RequestParam("sql") String sql,@RequestParam("one") Long one, @RequestParam("two") Integer two){
return dataValueService.findTableValueArray(basicId,sql,one,two);
}

View File

@ -0,0 +1,43 @@
package com.muyu.cloud.etl.controller;
import com.muyu.cloud.etl.service.ProductService;
import com.muyu.common.core.domain.Result;
import com.muyu.domain.DataValue;
import lombok.extern.log4j.Log4j2;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
//用来处理数据
@Log4j2
@RestController
@RequestMapping("/product")
public class ProductController {
@Autowired
private ProductService productService;
// //获取字段值 供任务调用
// @PostMapping("/findTableValue")
// public Result findTableValue(@RequestParam("basicId") Long basicId,@RequestParam("sql") String sql) {
// List<List<DataValue>> list= dataValueService.findTableValue(basicId,sql);
// return Result.success(list);
// }
//添加数据值
@PostMapping("/addProduct")
public Result addProduct(@RequestParam("basicId") Long basicId, @RequestParam("tableId") Long tableId, @RequestBody DataValue[][] listList) {
long begin = System.currentTimeMillis();
int i = productService.addProduct(basicId,tableId,listList);
long end = System.currentTimeMillis();
long allTime = end - begin;
log.info("添加到产品数据库耗时:"+allTime);
return Result.success(i);
}
}

View File

@ -30,7 +30,6 @@ public class SourceController extends BaseController {
return getDataTable(list); return getDataTable(list);
} }
/* /*
* *
*/ */

View File

@ -5,10 +5,9 @@ import com.muyu.cloud.etl.service.SourceTypeService;
import com.muyu.common.core.domain.Result; import com.muyu.common.core.domain.Result;
import com.muyu.common.core.web.controller.BaseController; import com.muyu.common.core.web.controller.BaseController;
import com.muyu.domain.SourceType; import com.muyu.domain.SourceType;
import com.muyu.domain.mysql.config.MysqlPoolConfig;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.*;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List; import java.util.List;
@ -18,11 +17,25 @@ public class SourceTypeController extends BaseController {
@Autowired @Autowired
private SourceTypeService sourceTypeService; private SourceTypeService sourceTypeService;
//查询 //查询
@GetMapping("/findSourceType") @GetMapping("/findSourceType")
public Result<List<SourceType>> findSourceType() { public Result<List<SourceType>> findSourceType() {
List<SourceType> sourceTypeList=sourceTypeService.findSourceType(); List<SourceType> sourceTypeList=sourceTypeService.findSourceType();
return Result.success(sourceTypeList); return Result.success(sourceTypeList);
} }
// 数据源连接池测试连接
@PostMapping("TextSourcePool")
public Boolean TextSourcePool(@RequestBody MysqlPoolConfig mysqlPoolConfig) {
return sourceTypeService.TextSourcePool(mysqlPoolConfig);
}
} }

View File

@ -45,7 +45,6 @@ public class TableInfoController {
return Result.success(respList); return Result.success(respList);
} }
@NotNull @NotNull
private static List<TableInfoResp> getChildren(TableInfo tableInfo, List<TableInfo> list) { private static List<TableInfoResp> getChildren(TableInfo tableInfo, List<TableInfo> list) {
return list.stream().filter(tableInfo1 -> tableInfo1.getParentId().equals(tableInfo.getId())).map( return list.stream().filter(tableInfo1 -> tableInfo1.getParentId().equals(tableInfo.getId())).map(

View File

@ -0,0 +1,151 @@
package com.muyu.cloud.etl.mysql;
import com.muyu.Hikari.HikariPool;
import com.muyu.cloud.etl.service.SourceService;
import com.muyu.common.core.utils.SpringUtils;
import com.muyu.data.base.BaseDataAbsSource;
import com.muyu.domain.DataValue;
import com.muyu.domain.Source;
import com.muyu.domain.enums.DataType;
import com.muyu.domain.mysql.MysqlPool;
import com.muyu.domain.mysql.config.MysqlPoolConfig;
import com.zaxxer.hikari.HikariDataSource;
import lombok.extern.log4j.Log4j2;
import org.springframework.stereotype.Component;
import java.sql.*;
import java.util.concurrent.ConcurrentHashMap;
@Log4j2
@Component
public class MySqlDataSource extends BaseDataAbsSource {
SourceService sourceService = SpringUtils.getBean(SourceService.class);
@Override
public DataValue getDataValue() {
return null;
}
@Override
public DataValue[] getRow () {
MySqlQuery query = getQuery();
String sql = query.getSql();
Long dataSourceId = query.getDataSourceId();
ConcurrentHashMap<Integer, DataValue> map = new ConcurrentHashMap<>();
Source dataSources = sourceService.getById(dataSourceId);
MysqlPoolConfig mysqlPoolConfig = Source.getMysqlPoolConfig(dataSources);
MysqlPool mysqlPool = new MysqlPool(mysqlPoolConfig);
mysqlPool.init();
Connection conn = mysqlPool.getConn();
DataValue[] dataValues = null;
try {
PreparedStatement preparedStatement = conn.prepareStatement(sql);
ResultSet resultSet = preparedStatement.executeQuery();
ResultSetMetaData metaData = resultSet.getMetaData();
int columnCount = metaData.getColumnCount();
if (resultSet.next()){
for (int i = 1; i < columnCount; i++) {
if (resultSet.isFirst()){
String columnTypeName = metaData.getColumnTypeName(i);
DatabaseMetaData metadataColumns = conn.getMetaData();
ResultSet columns = metadataColumns.getColumns(null, null, metaData.getTableName(i), metaData.getColumnName(i));
String remarks =null;
while (columns.next()){
remarks = columns.getString("REMARKS");
log.info("字段备注:"+remarks);
}
DataValue build = DataValue.builder()
.key(metaData.getColumnName(i))
.label(remarks)
.value(resultSet.getObject(i, DataType.convertType(columnTypeName)))
.type(DataType.findBySqlType(columnTypeName))
.build();
map.put(i,build);
dataValues[i-1]=build;
}
}
}
} catch (SQLException e) {
throw new RuntimeException(e);
}
return dataValues;
}
@Override
public DataValue[][] getRows () {
MySqlQuery query = getQuery();
Integer one = Math.toIntExact(query.getOne());
Integer two = query.getTwo();
String sql = query.getSql();
Long dataSourceId = query.getDataSourceId();
ConcurrentHashMap<Integer, DataValue> map = new ConcurrentHashMap<>();
Source dataSources = sourceService.getById(dataSourceId);
HikariDataSource hikariDataSource = HikariPool.getHikariDataSource(dataSources);
Connection conn = null;
// try {
//
// } catch (SQLException e) {
// throw new RuntimeException(e);
// }
DataValue[][] dataValues = new DataValue[one][two];
try {
conn = hikariDataSource.getConnection();
PreparedStatement preparedStatement = conn.prepareStatement(sql);
ResultSet resultSet = preparedStatement.executeQuery();
ResultSetMetaData metaData = resultSet.getMetaData();
int columnCount = metaData.getColumnCount();
int c = 0;
while (resultSet.next()){
for (int i = 1; i <= columnCount; i++) {
if (resultSet.isFirst()){
String columnTypeName = metaData.getColumnTypeName(i);
DatabaseMetaData metaDataColumns = conn.getMetaData();
ResultSet columns = metaDataColumns.getColumns(null, null, metaData.getTableName(i), metaData.getColumnName(i));
String remarks =null;
while (columns.next()){
remarks = columns.getString("REMARKS");
log.info("字段备注:"+remarks);
}
DataValue build = DataValue.builder()
.key(metaData.getColumnName(i))
.label(remarks)
.value(resultSet.getObject(i, DataType.convertType(columnTypeName)))
.type(DataType.findBySqlType(columnTypeName))
.build();
map.put(i,build);
dataValues[c][i-1]=build;
}else {
DataValue build = DataValue.builder()
.key(metaData.getColumnName(i))
.label(map.get(i).getLabel())
.value(resultSet.getObject(i, map.get(i).getType().getTargetType()))
.type(map.get(i).getType())
.build();
dataValues[c][i-1]=build;
}
}
c++;
}
} catch (SQLException e) {
throw new RuntimeException(e);
}
return dataValues;
}
}

View File

@ -0,0 +1,25 @@
package com.muyu.cloud.etl.mysql;
import com.muyu.data.base.BaseQuery;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
@EqualsAndHashCode(callSuper = true)
@Data
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
public class MySqlQuery extends BaseQuery {
private String sql;
private String params;
private Long one;
private Integer two;
}

View File

@ -1,53 +0,0 @@
package com.muyu.cloud.etl.mysql.config;
import com.muyu.cloud.etl.mysql.BaseConfig;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@AllArgsConstructor
public class MysqlPoolConfig {
//id
public String id;
//初始化连接数量
private int initTotal;
//最大连接数
private int maxTotal;
//最长等待时间 毫秒
private long maxWaitTime;
//驱动
private String driverName;
//url ip 端口 数据库 编码
private String ip;
private int port;
private String databaseName;
private String param;
//用户名
public String userName;
//密码
private String password;
/**
*
* @return
*/
public String getUrl(){
StringBuilder urlSb = new StringBuilder(BaseConfig.MYSQLJDBCPRO);
urlSb.append(this.ip);
urlSb.append(":");
urlSb.append(this.port);
urlSb.append("/");
urlSb.append(this.databaseName);
urlSb.append("?");
urlSb.append(this.param);
return urlSb.toString();
}
}

View File

@ -13,4 +13,5 @@ public interface DataValueService {
Integer findCount(Long basicId, String sql); Integer findCount(Long basicId, String sql);
DataValue[][] findTableValueArray(Long basicId, String sql, Long one, Integer two);
} }

View File

@ -0,0 +1,7 @@
package com.muyu.cloud.etl.service;
import com.muyu.domain.DataValue;
public interface ProductService {
int addProduct(Long basicId, Long tableId, DataValue[][] listList);
}

View File

@ -2,10 +2,15 @@ package com.muyu.cloud.etl.service;
import com.baomidou.mybatisplus.extension.service.IService; import com.baomidou.mybatisplus.extension.service.IService;
import com.muyu.domain.SourceType; import com.muyu.domain.SourceType;
import com.muyu.domain.mysql.config.MysqlPoolConfig;
import java.util.List; import java.util.List;
public interface SourceTypeService extends IService<SourceType> { public interface SourceTypeService extends IService<SourceType> {
List<SourceType> findSourceType(); List<SourceType> findSourceType();
Boolean TextSourcePool(MysqlPoolConfig mysqlPoolConfig);
} }

View File

@ -1,12 +1,17 @@
package com.muyu.cloud.etl.service.impl; package com.muyu.cloud.etl.service.impl;
import com.muyu.Hikari.HikariPool;
import com.muyu.cloud.etl.mysql.MySqlDataSource;
import com.muyu.cloud.etl.mysql.MySqlQuery;
import com.muyu.cloud.etl.service.DataValueService; import com.muyu.cloud.etl.service.DataValueService;
import com.muyu.cloud.etl.service.SourceService; import com.muyu.cloud.etl.service.SourceService;
import com.muyu.cloud.etl.service.TableInfoService; import com.muyu.cloud.etl.service.TableInfoService;
import com.muyu.data.base.BaseQueryHandler;
import com.muyu.domain.DataValue; import com.muyu.domain.DataValue;
import com.muyu.domain.Source; import com.muyu.domain.Source;
import com.muyu.domain.TableInfo; import com.muyu.domain.TableInfo;
import com.muyu.domain.enums.DataType; import com.muyu.domain.enums.DataType;
import com.zaxxer.hikari.HikariDataSource;
import lombok.extern.log4j.Log4j2; import lombok.extern.log4j.Log4j2;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
@ -25,20 +30,28 @@ public class DataValueServiceImpl implements DataValueService {
@Override @Override
public List<List<DataValue>> findTableValue(Long basicId, String sql) { public List<List<DataValue>> findTableValue(Long basicId, String sql) {
Source source = sourceService.getInfo(basicId); Source source = sourceService.getInfo(basicId);
String host = source.getHost();
String port = source.getPort(); // HikariConfig hikariConfig = new HikariConfig();
String databaseName = source.getDatabaseName(); // hikariConfig.setPoolName("HikariCP 连接池");
String databaseType = source.getDatabaseType(); // hikariConfig.setDriverClassName(source.getDriverName());
String url = "jdbc:" + databaseType + "://" + host + ":" + port + "/" + databaseName + "?" + source.getConnectionParams(); // hikariConfig.setJdbcUrl(source.getUrl());
String user = source.getUsername(); // hikariConfig.setUsername(source.getUsername());
String password = source.getPassword(); // hikariConfig.setPassword(source.getPassword());
// hikariConfig.setMinimumIdle(2);
// hikariConfig.setMaximumPoolSize(10);
//
// HikariDataSource hikariDataSource = new HikariDataSource(hikariConfig);
HikariDataSource hikariDataSource = HikariPool.getHikariDataSource(source);
List<List<DataValue>> list = new ArrayList<>(); List<List<DataValue>> list = new ArrayList<>();
Connection conn=null; Connection conn=null;
try { try {
ArrayList<DataValue> dataValues = new ArrayList<>(); ArrayList<DataValue> dataValues = new ArrayList<>();
conn = DriverManager.getConnection(url, user, password); conn = hikariDataSource.getConnection();
try { try {
PreparedStatement preparedStatement = conn.prepareStatement(sql); PreparedStatement preparedStatement = conn.prepareStatement(sql);
ResultSet resultSet = preparedStatement.executeQuery(); ResultSet resultSet = preparedStatement.executeQuery();
@ -63,7 +76,7 @@ public class DataValueServiceImpl implements DataValueService {
.key(metaData.getColumnName(i)) .key(metaData.getColumnName(i))
.label(remarks) .label(remarks)
.value(resultSet.getObject(i, DataType.convertType(columnTypeName))) .value(resultSet.getObject(i, DataType.convertType(columnTypeName)))
.type(DataType.getJavaType(columnTypeName)) .type(DataType.findBySqlType(columnTypeName))
.build(); .build();
dataValues.add(build); dataValues.add(build);
} }
@ -119,7 +132,7 @@ public class DataValueServiceImpl implements DataValueService {
.key(metaData.getColumnName(i)) .key(metaData.getColumnName(i))
.label(remarks) .label(remarks)
.value(resultSet.getObject(i, DataType.convertType(columnTypeName))) .value(resultSet.getObject(i, DataType.convertType(columnTypeName)))
.type(DataType.getJavaType(columnTypeName)) .type(DataType.findBySqlType(columnTypeName))
.build(); .build();
dataValues.add(build); dataValues.add(build);
} }
@ -288,4 +301,19 @@ public class DataValueServiceImpl implements DataValueService {
return string; return string;
} }
@Override
public DataValue[][] findTableValueArray(Long basicId, String sql, Long one, Integer two) {
MySqlQuery mySqlQuery = new MySqlQuery();
mySqlQuery.setSql(sql);
mySqlQuery.setDataSourceId(basicId);
mySqlQuery.setOne(one);
mySqlQuery.setTwo(two);
BaseQueryHandler.set(mySqlQuery);
MySqlDataSource mySqlDataSource = new MySqlDataSource();
DataValue[][] rows = mySqlDataSource.getRows();
return rows;
}
} }

View File

@ -0,0 +1,232 @@
package com.muyu.cloud.etl.service.impl;
import com.muyu.Hikari.HikariPool;
import com.muyu.cloud.etl.service.ProductService;
import com.muyu.cloud.etl.service.SourceService;
import com.muyu.cloud.etl.service.TableInfoService;
import com.muyu.domain.DataValue;
import com.muyu.domain.Source;
import com.muyu.domain.TableInfo;
import com.zaxxer.hikari.HikariDataSource;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.Date;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;
@Slf4j
@Service
public class ProductServiceImpl implements ProductService {
@Autowired
private SourceService sourceService;
@Autowired
private TableInfoService tableInfoService;
public int addProduct(Long basicId, Long tableId, DataValue[][] listList) {
TableInfo tableInfoDataSources = tableInfoService.getById(basicId);
Long basicId1 = tableInfoDataSources.getBasicId();
Source dataSources = sourceService.getById(basicId1);
TableInfo tableInfo = tableInfoService.getById(tableId);
String tableName = tableInfo.getTableName();
// HikariDataSource hikariDataSource = getHikariDataSource(dataSources);
HikariDataSource hikariDataSource = HikariPool.getHikariDataSource(dataSources);
ExecutorService executorService = Executors.newFixedThreadPool(4);
AtomicInteger addCount = new AtomicInteger();
Connection connection = null;
try {
connection = hikariDataSource.getConnection();
// 遍历外部列表
for (DataValue[] dataValueList : listList) {
Connection finalConnection = connection;
executorService.submit(() -> {
try {
addCount.addAndGet(insertRow(finalConnection, tableName, dataValueList));
} catch (SQLException e) {
// 记录异常
e.printStackTrace();
}
});
}
executorService.shutdown();
executorService.awaitTermination(1, TimeUnit.HOURS);
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new RuntimeException("Thread interrupted", e);
} catch (SQLException e) {
throw new RuntimeException(e);
} finally {
closeConnection(connection);
}
return addCount.get();
}
// private int insertRow(Connection conn, String tableName, DataValue[] dataValueList) throws SQLException {
// // 获取当前行的所有字段名
// StringBuilder columns = new StringBuilder("(");
// StringBuilder values = new StringBuilder("VALUES (");
//
// // 构建字段名和占位符
// for (DataValue dataValue : dataValueList) {
// String key = dataValue.getKey();
// columns.append(key).append(", ");
// values.append("?, ");
// }
// // 删除最后一个逗号和空格
// columns.delete(columns.length() - 2, columns.length());
// values.delete(values.length() - 2, values.length());
//
// // 完成 SQL 插入语句
// String sql = "INSERT INTO " + tableName + " (" + columns.toString() + ") " + values.toString();
//
// int addCount = 0;
// try (PreparedStatement ps = conn.prepareStatement(sql)) {
// // 设置参数
// int index = 1;
// for (DataValue dataValue : dataValueList) {
// Object value = dataValue.getValue();
// if (value instanceof String) {
// ps.setString(index, (String) value);
// } else if (value instanceof Integer) {
// ps.setInt(index, (Integer) value);
// } else if (value instanceof Double) {
// ps.setDouble(index, (Double) value);
// } else if (value instanceof Date) {
// ps.setDate(index, new java.sql.Date(((Date) value).getTime()));
// } else {
// // 其他类型的处理
// ps.setObject(index, value);
// }
// index++;
// }
// // 执行插入操作
// addCount = ps.executeUpdate();
// }
// return addCount;
// }
public int insertRow(Connection conn, String tableName, DataValue[] dataValueList) throws SQLException {
// 获取当前行的所有字段名
StringBuilder columns = new StringBuilder("(");
StringBuilder values = new StringBuilder("VALUES (");
// 构建字段名和占位符
for (DataValue dataValue : dataValueList) {
String key = dataValue.getKey();
columns.append(key).append(", ");
values.append("?, ");
}
// 删除最后一个逗号和空格
columns.delete(columns.length() - 2, columns.length());
values.delete(values.length() - 2, values.length());
// 完成 SQL 插入语句
String sql = "INSERT INTO " + tableName + " (" + columns.toString() + ") " + values.toString() + ")";
int addCount = 0;
try {
conn.setAutoCommit(false);
try (
PreparedStatement ps = conn.prepareStatement(sql)) {
// 循环设置参数并执行插入
for (DataValue dataValue : dataValueList) {
int index = 1;
for (DataValue value : dataValueList) {
Object obj = value.getValue();
if (obj instanceof String) {
ps.setString(index++, (String) obj);
} else if (obj instanceof Integer) {
ps.setInt(index++, (Integer) obj);
} else if (obj instanceof Double) {
ps.setDouble(index++, (Double) obj);
} else if (obj instanceof Date) {
ps.setDate(index++, new java.sql.Date(((Date) obj).getTime()));
} else if (obj instanceof Boolean) {
ps.setBoolean(index++, (Boolean) obj);
} else if (obj instanceof Float) {
ps.setFloat(index++, (Float) obj);
} else if (obj instanceof Long) {
ps.setLong(index++, (Long) obj);
} else {
ps.setObject(index++, obj);
}
}
ps.addBatch();
}
// 执行批量插入操作
int[] ints = ps.executeBatch();
for (int anInt : ints) {
log.info("插入成功的数据有"+anInt);
}
conn.commit();
} catch (SQLException e) {
e.printStackTrace();
}
} catch (SQLException e) {
throw new RuntimeException(e);
}
return addCount;
}
private void closeConnection(Connection conn) {
if (conn != null) {
try {
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
// public static HikariDataSource instance = null;
// @NotNull
// public static synchronized HikariDataSource getHikariDataSource(Source dataSources) {
// if(instance == null) {
// HikariConfig hikariConfig = new HikariConfig();
// hikariConfig.setPoolName("HikariCP 连接池");
// hikariConfig.setDataSourceClassName(dataSources.getDriverName());
// hikariConfig.addDataSourceProperty("user", dataSources.getUsername());
// hikariConfig.addDataSourceProperty("password", dataSources.getPassword());
// hikariConfig.addDataSourceProperty("url", dataSources.getUrl());
// hikariConfig.setMaximumPoolSize(15);
//
// instance = new HikariDataSource(hikariConfig);
// }
// return instance;
// }
}

View File

@ -5,16 +5,142 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.muyu.cloud.etl.mapper.SourceTypeMapper; import com.muyu.cloud.etl.mapper.SourceTypeMapper;
import com.muyu.cloud.etl.service.SourceTypeService; import com.muyu.cloud.etl.service.SourceTypeService;
import com.muyu.domain.SourceType; import com.muyu.domain.SourceType;
import com.muyu.domain.Structure;
import com.muyu.domain.mysql.MysqlPool;
import com.muyu.domain.mysql.config.MysqlPoolConfig;
import lombok.extern.log4j.Log4j2;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import java.sql.*;
import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
@Log4j2
@Service @Service
public class SourceTypeServiceImpl extends ServiceImpl<SourceTypeMapper, SourceType> implements SourceTypeService { public class SourceTypeServiceImpl extends ServiceImpl<SourceTypeMapper, SourceType> implements SourceTypeService {
//数据源连接池线程
@Override @Override
public List<SourceType> findSourceType() { public List<SourceType> findSourceType() {
LambdaQueryWrapper<SourceType> sourceTypeLambdaQueryWrapper = new LambdaQueryWrapper<>(); LambdaQueryWrapper<SourceType> sourceTypeLambdaQueryWrapper = new LambdaQueryWrapper<>();
return this.list(sourceTypeLambdaQueryWrapper); return this.list(sourceTypeLambdaQueryWrapper);
} }
private static final int BATCH_SIZE = 100; // 定义每个批次的表数量
public Boolean TextSourcePool(MysqlPoolConfig mysqlPoolConfig) {
long startTime = System.currentTimeMillis();
List<Structure> structureArrayList = new CopyOnWriteArrayList<>(); // 使用线程安全的集合
MysqlPool mysqlPool = new MysqlPool(mysqlPoolConfig);
mysqlPool.init();
Connection conn = mysqlPool.getConn();
DatabaseMetaData metaData = null;
String databaseName = mysqlPoolConfig.getDatabaseName();
try {
metaData = conn.getMetaData();
ResultSet rs = metaData.getTables(databaseName, null, "%", new String[]{"TABLE", "VIEW"});
List<String> tableNames = new ArrayList<>();
while (rs.next()) {
tableNames.add(rs.getString("TABLE_NAME"));
}
int totalTables = tableNames.size();
int totalPages = (int) Math.ceil((double) totalTables / BATCH_SIZE);
ExecutorService threadPool = Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors()); // 创建一个固定大小的线程池
for (int i = 0; i < totalPages; i++) {
int start = i * BATCH_SIZE;
int end = Math.min(start + BATCH_SIZE, totalTables);
List<String> batchTableNames = tableNames.subList(start, end);
threadPool.submit(() -> {
try {
for (String tableName : batchTableNames) {
PreparedStatement ps = conn.prepareStatement(
"SELECT " +
"COLUMN_NAME, " +
"COLUMN_COMMENT, " +
"CASE WHEN COLUMN_KEY = 'PRI' THEN '是' ELSE '否' END, " +
"CASE " +
"WHEN DATA_TYPE = 'int' THEN 'Integer' " +
"WHEN DATA_TYPE = 'bigint' THEN 'Long' " +
"WHEN DATA_TYPE = 'varchar' THEN 'String' " +
"WHEN DATA_TYPE = 'decimal' THEN 'BigDecimal' " +
"WHEN DATA_TYPE = 'tinyint' AND COLUMN_TYPE = 'tinyint(1)' THEN 'Boolean' " +
"ELSE DATA_TYPE " +
"END AS javaType, " +
"DATA_TYPE, " +
"COLUMN_TYPE, " +
"CHARACTER_MAXIMUM_LENGTH, " +
"NUMERIC_SCALE, " +
"IS_NULLABLE, " +
"COLUMN_DEFAULT " +
"FROM INFORMATION_SCHEMA.COLUMNS " +
"WHERE TABLE_SCHEMA = ? AND TABLE_NAME = ?"
);
ps.setString(1, databaseName);
ps.setString(2, tableName);
ResultSet resultSet = ps.executeQuery();
while (resultSet.next()) {
Structure build = Structure.builder()
.columnName(resultSet.getString("COLUMN_NAME"))
.columnRemark(resultSet.getString("COLUMN_COMMENT"))
.isPrimary("是".equals(resultSet.getString("CASE WHEN COLUMN_KEY = 'PRI' THEN '是' ELSE '否' END")) ? "Y" : "N")
.javaType(resultSet.getString("javaType"))
.columnType(resultSet.getString("DATA_TYPE"))
.columnType(resultSet.getString("COLUMN_TYPE"))
.columnLength(resultSet.getString("CHARACTER_MAXIMUM_LENGTH"))
.columnDecimals(resultSet.getString("NUMERIC_SCALE"))
.isNull("YES".equals(resultSet.getString("IS_NULLABLE")) ? "Y" : "N")
.defaultValue(resultSet.getString("COLUMN_DEFAULT"))
.build();
structureArrayList.add(build);
}
}
} catch (SQLException e) {
e.printStackTrace();
}
});
}
threadPool.shutdown();
threadPool.awaitTermination(1, TimeUnit.HOURS); // 等待所有线程完成
} catch (SQLException | InterruptedException e) {
e.printStackTrace();
} finally {
try {
if (conn != null) {
conn.close();
mysqlPool.replease(conn);
mysqlPool.closeBaseConn();
}
} catch (SQLException e) {
e.printStackTrace();
}
}
long endTime = System.currentTimeMillis();
double totalTimeInMinutes = (endTime - startTime) / 60000.0;
System.out.println("程序总体的执行时间:" + totalTimeInMinutes + " 分钟");
log.info("接入的数据是"+structureArrayList.toString());
return true;
}
} }

File diff suppressed because it is too large Load Diff

View File

@ -1,362 +1,576 @@
16:02:46.705 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" 00:48:27.230 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
16:02:49.410 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] 00:48:33.467 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
16:02:49.410 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] 00:48:33.468 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
16:02:49.477 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext 00:48:33.704 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
16:02:53.012 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited 00:48:38.029 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
16:02:53.014 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success 00:48:38.031 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
16:02:53.014 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] 00:48:38.031 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
16:02:53.101 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成 00:48:38.294 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
16:02:54.067 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. 00:48:40.772 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
16:02:58.385 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. 00:48:50.148 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
16:03:00.773 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@5f597b1c[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] 00:48:54.624 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@6c67a17d[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
16:03:00.773 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@760d9d4a[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] 00:48:54.625 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@74f6fa34[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
16:03:01.047 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 00:48:55.332 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999
16:03:02.046 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null 00:48:56.358 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
16:03:02.046 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null 00:48:56.360 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
16:03:02.046 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null 00:48:56.361 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
16:03:02.051 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource 00:48:56.375 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
16:03:02.055 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. 00:48:56.386 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
16:03:02.055 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. 00:48:56.387 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
16:03:02.182 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 206b8266-4cd5-4dcb-9ced-bdce5a736a24 00:48:56.552 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of d557db88-5143-4535-af30-beb49685dda3
16:03:02.184 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->206b8266-4cd5-4dcb-9ced-bdce5a736a24 00:48:56.559 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->d557db88-5143-4535-af30-beb49685dda3
16:03:02.186 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [206b8266-4cd5-4dcb-9ced-bdce5a736a24] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager 00:48:56.560 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d557db88-5143-4535-af30-beb49685dda3] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
16:03:02.186 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [206b8266-4cd5-4dcb-9ced-bdce5a736a24] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService 00:48:56.561 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d557db88-5143-4535-af30-beb49685dda3] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
16:03:02.186 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [206b8266-4cd5-4dcb-9ced-bdce5a736a24] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler 00:48:56.563 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d557db88-5143-4535-af30-beb49685dda3] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
16:03:02.187 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [206b8266-4cd5-4dcb-9ced-bdce5a736a24] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848} 00:48:56.565 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d557db88-5143-4535-af30-beb49685dda3] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
16:03:02.187 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} 00:48:56.566 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
16:03:02.423 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [206b8266-4cd5-4dcb-9ced-bdce5a736a24] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725523383656_139.224.212.27_62150 00:48:56.757 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d557db88-5143-4535-af30-beb49685dda3] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725727736835_139.224.212.27_62304
16:03:02.424 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [206b8266-4cd5-4dcb-9ced-bdce5a736a24] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler 00:48:56.758 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d557db88-5143-4535-af30-beb49685dda3] Notify connected event to listeners.
16:03:02.424 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [206b8266-4cd5-4dcb-9ced-bdce5a736a24] Notify connected event to listeners. 00:48:56.758 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d557db88-5143-4535-af30-beb49685dda3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
16:03:02.424 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [206b8266-4cd5-4dcb-9ced-bdce5a736a24] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x000001f426523e60 00:48:56.759 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
16:03:02.424 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect 00:48:56.759 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d557db88-5143-4535-af30-beb49685dda3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$620/0x000001ab3d523240
16:03:02.425 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-source with instance Instance{instanceId='null', ip='192.168.178.81', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9105:b604:307c:8ff0:6eb3:361d], preserved.register.source=SPRING_CLOUD}} 00:48:56.762 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-source with instance Instance{instanceId='null', ip='192.168.43.160', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:e569:34fc:11bc:aa9f:89af], preserved.register.source=SPRING_CLOUD}}
16:03:02.496 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.178.81:10005 register finished 00:48:56.824 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.43.160:10005 register finished
16:03:03.672 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 22.796 seconds (process running for 24.431) 00:48:58.267 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 40.193 seconds (process running for 43.093)
16:03:03.684 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis 00:48:58.298 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
16:03:03.685 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true 00:48:58.299 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
16:03:03.686 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source-dev.yml+DEFAULT_GROUP+cloud-2112 00:48:58.302 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source-dev.yml+DEFAULT_GROUP+cloud-2112
16:03:03.699 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source-dev.yml, group=DEFAULT_GROUP, cnt=1 00:48:58.328 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source-dev.yml, group=DEFAULT_GROUP, cnt=1
16:03:03.700 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP 00:48:58.329 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP
16:03:03.700 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source.yml+DEFAULT_GROUP+cloud-2112 00:48:58.330 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source.yml+DEFAULT_GROUP+cloud-2112
16:03:03.700 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source.yml, group=DEFAULT_GROUP, cnt=1 00:48:58.331 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source.yml, group=DEFAULT_GROUP, cnt=1
16:03:03.701 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP 00:48:58.331 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP
16:03:03.701 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source+DEFAULT_GROUP+cloud-2112 00:48:58.334 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source+DEFAULT_GROUP+cloud-2112
16:03:03.702 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source, group=DEFAULT_GROUP, cnt=1 00:48:58.334 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source, group=DEFAULT_GROUP, cnt=1
16:03:03.702 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP 00:48:58.334 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP
16:03:04.334 [RMI TCP Connection(3)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' 00:48:58.476 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
16:08:23.316 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. 00:49:31.562 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
16:08:23.378 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://172.16.0.3:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null] 00:50:04.646 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
16:08:23.379 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. 00:50:37.756 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
16:08:23.379 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. 00:51:10.802 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
16:08:23.379 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. 00:51:43.862 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
16:08:23.379 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. 00:51:56.258 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
16:08:23.380 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. 00:51:59.319 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,90] - >>>>>>>>>>> xxl-job registry-remove fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registryRemove, content=null]
16:08:23.389 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... 00:51:59.319 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
16:08:23.389 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-source with instance: Instance{instanceId='null', ip='192.168.178.81', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} 00:51:59.320 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
16:08:23.464 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. 00:51:59.322 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
16:08:23.465 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin 00:51:59.323 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
16:08:23.466 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin 00:51:59.324 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
16:08:23.466 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop 00:51:59.349 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
16:08:23.466 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop 00:51:59.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-source with instance: Instance{instanceId='null', ip='192.168.43.160', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
16:08:23.466 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin 00:51:59.405 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
16:08:23.466 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin 00:51:59.408 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
16:08:23.466 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop 00:51:59.409 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
16:08:23.467 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin 00:51:59.409 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
16:08:23.467 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop 00:51:59.410 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
16:08:23.467 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin 00:51:59.410 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
16:08:23.467 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop 00:51:59.411 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
16:08:23.467 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->206b8266-4cd5-4dcb-9ced-bdce5a736a24 00:51:59.411 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
16:08:23.467 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@4da2a4da[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 106] 00:51:59.411 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
16:08:23.467 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown 00:51:59.412 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
16:08:23.468 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@438435e[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] 00:51:59.413 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
16:08:23.468 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725523383656_139.224.212.27_62150 00:51:59.413 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
16:08:23.472 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@499a66b1[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 78] 00:51:59.413 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->d557db88-5143-4535-af30-beb49685dda3
16:08:23.472 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->206b8266-4cd5-4dcb-9ced-bdce5a736a24 00:51:59.414 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@3ed0ecb8[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 60]
16:08:23.473 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped 00:51:59.415 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
16:08:23.473 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed 00:51:59.416 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2f576da0[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
16:08:23.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop 00:51:59.416 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725727736835_139.224.212.27_62304
16:08:23.477 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... 00:51:59.425 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@2093be0a[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 52]
16:08:23.479 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... 00:51:59.426 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->d557db88-5143-4535-af30-beb49685dda3
16:08:23.487 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed 00:51:59.427 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
16:08:23.487 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, 00:51:59.427 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
16:08:23.487 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye 00:51:59.428 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
17:00:59.812 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" 00:51:59.434 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
17:01:02.479 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] 00:51:59.440 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
17:01:02.479 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] 00:51:59.453 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
17:01:02.552 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext 00:51:59.454 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
17:01:05.677 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited 00:51:59.454 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
17:01:05.678 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success 00:53:06.187 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
17:01:05.679 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] 00:53:09.419 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
17:01:05.785 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成 00:53:09.419 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
17:01:06.974 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. 00:53:09.519 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
17:01:07.076 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... 00:53:12.830 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
17:01:07.078 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... 00:53:12.833 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
17:01:07.086 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed 00:53:12.834 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
17:01:07.086 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, 00:53:13.034 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
17:01:07.087 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye 00:53:14.381 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
17:01:07.088 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] 00:53:20.886 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
17:04:01.526 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" 00:53:23.837 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@2ef2fa78[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
17:04:04.155 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] 00:53:23.837 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@74055597[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
17:04:04.155 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] 00:53:24.241 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999
17:04:04.220 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext 00:53:25.191 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
17:04:07.548 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited 00:53:25.191 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
17:04:07.549 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success 00:53:25.192 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
17:04:07.549 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] 00:53:25.199 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
17:04:07.628 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成 00:53:25.208 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
17:04:08.607 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. 00:53:25.209 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
17:04:08.696 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... 00:53:25.434 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 1efa70ca-a798-40a7-a3dd-71b9f6b49e75
17:04:08.697 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... 00:53:25.438 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->1efa70ca-a798-40a7-a3dd-71b9f6b49e75
17:04:08.703 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed 00:53:25.438 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:04:08.703 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, 00:53:25.439 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:04:08.704 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye 00:53:25.441 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:04:08.705 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] 00:53:25.442 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
17:04:54.252 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" 00:53:25.442 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
17:04:56.657 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] 00:53:25.641 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725728005725_139.224.212.27_62552
17:04:56.658 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] 00:53:25.641 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Notify connected event to listeners.
17:04:56.745 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext 00:53:25.641 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:05:00.075 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited 00:53:25.643 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
17:05:00.076 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success 00:53:25.643 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x000001bb05528228
17:05:00.076 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] 00:53:25.645 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-source with instance Instance{instanceId='null', ip='192.168.43.160', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:e569:34fc:11bc:aa9f:89af], preserved.register.source=SPRING_CLOUD}}
17:05:00.157 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成 00:53:25.692 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.43.160:10005 register finished
17:05:01.109 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. 00:53:26.890 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 26.88 seconds (process running for 28.267)
17:05:07.056 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. 00:53:26.904 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
17:05:09.463 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@5d1b4556[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] 00:53:26.904 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
17:05:09.463 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@1fa59b0d[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] 00:53:26.907 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source-dev.yml+DEFAULT_GROUP+cloud-2112
17:05:09.777 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 00:53:26.918 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source-dev.yml, group=DEFAULT_GROUP, cnt=1
17:05:10.763 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null 00:53:26.918 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP
17:05:10.764 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null 00:53:26.919 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source.yml+DEFAULT_GROUP+cloud-2112
17:05:10.765 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null 00:53:26.919 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source.yml, group=DEFAULT_GROUP, cnt=1
17:05:10.769 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource 00:53:26.919 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP
17:05:10.774 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. 00:53:26.920 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source+DEFAULT_GROUP+cloud-2112
17:05:10.775 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. 00:53:26.920 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source, group=DEFAULT_GROUP, cnt=1
17:05:10.927 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 6fb01796-6058-4cd0-bf5c-a40f0be33f79 00:53:26.920 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP
17:05:10.929 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->6fb01796-6058-4cd0-bf5c-a40f0be33f79 00:53:27.322 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:05:10.929 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fb01796-6058-4cd0-bf5c-a40f0be33f79] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager 00:53:27.744 [RMI TCP Connection(6)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
17:05:10.929 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fb01796-6058-4cd0-bf5c-a40f0be33f79] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService 00:54:00.376 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:05:10.930 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fb01796-6058-4cd0-bf5c-a40f0be33f79] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler 00:54:33.444 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:05:10.930 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fb01796-6058-4cd0-bf5c-a40f0be33f79] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848} 00:55:06.501 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:05:10.930 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} 00:55:39.569 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:05:11.227 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fb01796-6058-4cd0-bf5c-a40f0be33f79] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725527112455_139.224.212.27_61835 00:56:12.848 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:05:11.227 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fb01796-6058-4cd0-bf5c-a40f0be33f79] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler 00:56:45.925 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:05:11.227 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fb01796-6058-4cd0-bf5c-a40f0be33f79] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000024a3f524ac0 00:57:19.003 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:05:11.227 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fb01796-6058-4cd0-bf5c-a40f0be33f79] Notify connected event to listeners. 00:57:52.072 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:05:11.228 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect 00:58:25.157 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:05:11.228 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-source with instance Instance{instanceId='null', ip='192.168.178.81', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9105:b604:307c:8ff0:6eb3:361d], preserved.register.source=SPRING_CLOUD}} 00:58:58.229 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:05:11.301 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.178.81:10005 register finished 00:59:31.293 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:05:12.483 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 23.638 seconds (process running for 24.528) 01:00:04.362 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:05:12.492 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis 01:01:09.580 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:05:12.492 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true 01:01:25.120 [nacos-grpc-client-executor-47.116.184.54-119] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 5057
17:05:12.493 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source-dev.yml+DEFAULT_GROUP+cloud-2112 01:01:25.120 [nacos-grpc-client-executor-47.116.184.54-119] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 5057
17:05:12.502 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source-dev.yml, group=DEFAULT_GROUP, cnt=1 01:01:25.127 [nacos-grpc-client-executor-47.116.184.54-102] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Receive server push request, request = ClientDetectionRequest, requestId = 5058
17:05:12.503 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP 01:01:25.127 [nacos-grpc-client-executor-47.116.184.54-102] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Ack server push request, request = ClientDetectionRequest, requestId = 5058
17:05:12.503 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source.yml+DEFAULT_GROUP+cloud-2112 01:05:50.676 [nacos-grpc-client-executor-47.116.184.54-104] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Receive server push request, request = ClientDetectionRequest, requestId = 5060
17:05:12.503 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source.yml, group=DEFAULT_GROUP, cnt=1 01:05:50.676 [nacos-grpc-client-executor-47.116.184.54-104] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Ack server push request, request = ClientDetectionRequest, requestId = 5060
17:05:12.503 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP 01:05:50.676 [nacos-grpc-client-executor-47.116.184.54-121] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 5059
17:05:12.504 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source+DEFAULT_GROUP+cloud-2112 01:05:50.678 [nacos-grpc-client-executor-47.116.184.54-121] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 5059
17:05:12.504 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source, group=DEFAULT_GROUP, cnt=1 01:05:51.000 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Server healthy check fail, currentConnection = 1725728005725_139.224.212.27_62552
17:05:12.504 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP 01:05:51.001 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Try to reconnect to a new server, server is not appointed, will choose a random server.
17:05:13.104 [RMI TCP Connection(1)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' 01:05:51.001 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
17:06:31.232 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. 01:05:51.144 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] Server healthy check fail, currentConnection = 1725727985516_139.224.212.27_62530
17:06:31.277 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://172.16.0.3:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null] 01:05:51.144 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
17:06:31.277 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. 01:05:51.146 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
17:06:31.277 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. 01:05:51.195 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Success to connect a server [47.116.184.54:8848], connectionId = 1725728751276_139.224.212.27_62847
17:06:31.278 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. 01:05:51.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725728005725_139.224.212.27_62552
17:06:31.278 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. 01:05:51.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725728005725_139.224.212.27_62552
17:06:31.278 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. 01:05:51.203 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Notify disconnected event to listeners
17:06:31.286 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... 01:05:51.203 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Try to reconnect to a new server, server is not appointed, will choose a random server.
17:06:31.286 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-source with instance: Instance{instanceId='null', ip='192.168.178.81', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} 01:05:51.205 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
17:06:31.360 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. 01:05:51.206 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Notify connected event to listeners.
17:06:31.361 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin 01:05:51.207 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
17:06:31.361 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin 01:05:51.450 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725728751426_139.224.212.27_62848
17:06:31.361 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop 01:05:51.451 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725727985516_139.224.212.27_62530
17:06:31.361 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop 01:05:51.451 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725727985516_139.224.212.27_62530
17:06:31.361 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin 01:05:51.454 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
17:06:31.361 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin 01:05:51.454 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] Notify disconnected event to listeners
17:06:31.362 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop 01:05:51.455 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
17:06:31.362 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin 01:05:51.455 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] DisConnected,clear listen context...
17:06:31.362 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop 01:05:51.455 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] Notify connected event to listeners.
17:06:31.362 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin 01:05:51.456 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] Connected,notify listen context...
17:06:31.362 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop 01:05:51.490 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Success to connect a server [47.116.184.54:8848], connectionId = 1725728751502_139.224.212.27_62849
17:06:31.362 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->6fb01796-6058-4cd0-bf5c-a40f0be33f79 01:05:51.490 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725728751276_139.224.212.27_62847
17:06:31.362 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@20f700e7[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 26] 01:05:51.490 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725728751276_139.224.212.27_62847
17:06:31.362 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown 01:05:51.492 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Notify disconnected event to listeners
17:06:31.362 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@59f18da6[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] 01:05:51.494 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1efa70ca-a798-40a7-a3dd-71b9f6b49e75] Notify connected event to listeners.
17:06:31.363 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725527112455_139.224.212.27_61835 01:05:51.495 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
17:06:31.367 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1a71d9ab[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 26] 01:05:51.630 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725728751726_139.224.212.27_62850
17:06:31.367 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->6fb01796-6058-4cd0-bf5c-a40f0be33f79 01:05:51.630 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725728751426_139.224.212.27_62848
17:06:31.367 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped 01:05:51.630 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725728751426_139.224.212.27_62848
17:06:31.367 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed 01:05:51.631 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] Notify disconnected event to listeners
17:06:31.367 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop 01:05:51.632 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] DisConnected,clear listen context...
17:06:31.370 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... 01:05:51.632 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] Notify connected event to listeners.
17:06:31.372 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... 01:05:51.632 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [dbe5061f-4ebd-44ac-ac69-43ced5faa833_config-0] Connected,notify listen context...
17:06:31.376 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed 01:05:52.539 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
17:06:31.377 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, 01:05:53.667 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-source
17:06:31.377 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye 01:05:53.730 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:09:17.218 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" 01:05:56.771 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,90] - >>>>>>>>>>> xxl-job registry-remove fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registryRemove, content=null]
17:09:19.713 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] 01:05:56.771 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
17:09:19.713 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] 01:05:56.771 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
17:09:19.788 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext 01:05:56.772 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
17:09:23.024 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited 01:05:56.772 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
17:09:23.025 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success 01:05:56.773 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
17:09:23.025 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] 01:05:56.790 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
17:09:23.113 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成 01:05:56.790 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-source with instance: Instance{instanceId='null', ip='192.168.43.160', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
17:09:24.096 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. 01:05:56.841 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
17:09:30.319 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. 01:05:56.843 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
17:09:32.685 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@a983f06[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] 01:05:56.843 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
17:09:32.685 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@7292470c[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] 01:05:56.844 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
17:09:32.953 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 01:05:56.844 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
17:09:33.961 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null 01:05:56.844 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
17:09:33.962 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null 01:05:56.844 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
17:09:33.962 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null 01:05:56.844 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
17:09:33.967 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource 01:05:56.844 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
17:09:33.981 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. 01:05:56.845 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
17:09:33.982 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. 01:05:56.845 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
17:09:34.117 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 4f247791-1263-4ebe-b8af-331c46c8ff06 01:05:56.845 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
17:09:34.119 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->4f247791-1263-4ebe-b8af-331c46c8ff06 01:05:56.845 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->1efa70ca-a798-40a7-a3dd-71b9f6b49e75
17:09:34.120 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4f247791-1263-4ebe-b8af-331c46c8ff06] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager 01:05:56.846 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@4b27bc70[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 153]
17:09:34.120 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4f247791-1263-4ebe-b8af-331c46c8ff06] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService 01:05:56.846 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
17:09:34.120 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4f247791-1263-4ebe-b8af-331c46c8ff06] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler 01:05:56.846 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@38d73460[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
17:09:34.121 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4f247791-1263-4ebe-b8af-331c46c8ff06] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848} 01:05:56.847 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725728751502_139.224.212.27_62849
17:09:34.121 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} 01:05:56.847 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@497d1c9a[Running, pool size = 18, active threads = 0, queued tasks = 0, completed tasks = 122]
17:09:34.337 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4f247791-1263-4ebe-b8af-331c46c8ff06] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725527375610_139.224.212.27_62441 01:05:56.847 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->1efa70ca-a798-40a7-a3dd-71b9f6b49e75
17:09:34.337 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4f247791-1263-4ebe-b8af-331c46c8ff06] Notify connected event to listeners. 01:05:56.848 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
17:09:34.337 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4f247791-1263-4ebe-b8af-331c46c8ff06] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler 01:05:56.848 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
17:09:34.338 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect 01:05:56.849 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
17:09:34.338 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4f247791-1263-4ebe-b8af-331c46c8ff06] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000022b1d524268 01:05:56.854 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
17:09:34.339 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-source with instance Instance{instanceId='null', ip='192.168.178.81', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9105:b604:307c:8ff0:6eb3:361d], preserved.register.source=SPRING_CLOUD}} 01:05:56.858 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
17:09:34.389 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.178.81:10005 register finished 01:05:56.869 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
17:09:35.567 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 23.464 seconds (process running for 24.23) 01:05:56.869 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
17:09:35.577 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis 01:05:56.869 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
17:09:35.578 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true 01:06:25.976 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
17:09:35.580 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source-dev.yml+DEFAULT_GROUP+cloud-2112 01:06:29.512 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
17:09:35.588 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source-dev.yml, group=DEFAULT_GROUP, cnt=1 01:06:29.513 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
17:09:35.589 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP 01:06:29.596 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
17:09:35.589 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source.yml+DEFAULT_GROUP+cloud-2112 01:06:32.939 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
17:09:35.589 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source.yml, group=DEFAULT_GROUP, cnt=1 01:06:32.941 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
17:09:35.589 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP 01:06:32.941 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
17:09:35.590 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source+DEFAULT_GROUP+cloud-2112 01:06:33.105 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
17:09:35.590 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source, group=DEFAULT_GROUP, cnt=1 01:06:35.006 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
17:09:35.590 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP 01:06:40.978 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
17:09:35.937 [RMI TCP Connection(2)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' 01:06:44.264 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@1d6daa8a[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
17:12:32.691 [nacos-grpc-client-executor-47.116.184.54-52] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [54d7c881-e454-441d-91a1-d85ef5a55a7a_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 4709 01:06:44.264 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@27154b20[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
17:12:32.691 [nacos-grpc-client-executor-47.116.184.54-52] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [54d7c881-e454-441d-91a1-d85ef5a55a7a_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 4709 01:06:44.721 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999
17:12:32.691 [nacos-grpc-client-executor-47.116.184.54-40] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4f247791-1263-4ebe-b8af-331c46c8ff06] Receive server push request, request = ClientDetectionRequest, requestId = 4708 01:06:45.708 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
17:12:32.691 [nacos-grpc-client-executor-47.116.184.54-40] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4f247791-1263-4ebe-b8af-331c46c8ff06] Ack server push request, request = ClientDetectionRequest, requestId = 4708 01:06:45.710 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
17:12:43.442 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. 01:06:45.711 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
17:12:43.509 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://172.16.0.3:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null] 01:06:45.718 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
17:12:43.509 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. 01:06:45.726 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
17:12:43.510 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. 01:06:45.726 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
17:12:43.510 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. 01:06:45.861 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 399eda99-fb4f-4d6d-9155-2d056dc9a4bf
17:12:43.510 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. 01:06:45.865 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->399eda99-fb4f-4d6d-9155-2d056dc9a4bf
17:12:43.511 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. 01:06:45.866 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [399eda99-fb4f-4d6d-9155-2d056dc9a4bf] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:12:43.520 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... 01:06:45.867 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [399eda99-fb4f-4d6d-9155-2d056dc9a4bf] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:12:43.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-source with instance: Instance{instanceId='null', ip='192.168.178.81', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} 01:06:45.869 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [399eda99-fb4f-4d6d-9155-2d056dc9a4bf] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:12:43.590 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. 01:06:45.870 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [399eda99-fb4f-4d6d-9155-2d056dc9a4bf] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
17:12:43.591 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin 01:06:45.871 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
17:12:43.591 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin 01:06:46.092 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [399eda99-fb4f-4d6d-9155-2d056dc9a4bf] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725728806185_139.224.212.27_62884
17:12:43.591 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop 01:06:46.093 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [399eda99-fb4f-4d6d-9155-2d056dc9a4bf] Notify connected event to listeners.
17:12:43.591 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop 01:06:46.093 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [399eda99-fb4f-4d6d-9155-2d056dc9a4bf] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:12:43.591 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin 01:06:46.094 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
17:12:43.592 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin 01:06:46.094 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [399eda99-fb4f-4d6d-9155-2d056dc9a4bf] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000024d3e524078
17:12:43.592 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop 01:06:46.097 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-source with instance Instance{instanceId='null', ip='192.168.43.160', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:e569:34fc:11bc:aa9f:89af], preserved.register.source=SPRING_CLOUD}}
17:12:43.592 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin 01:06:46.160 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.43.160:10005 register finished
17:12:43.592 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop 01:06:47.491 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 27.51 seconds (process running for 28.351)
17:12:43.592 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin 01:06:47.508 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
17:12:43.592 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop 01:06:47.509 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
17:12:43.592 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->4f247791-1263-4ebe-b8af-331c46c8ff06 01:06:47.511 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source-dev.yml+DEFAULT_GROUP+cloud-2112
17:12:43.592 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@362a0bb6[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 55] 01:06:47.525 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source-dev.yml, group=DEFAULT_GROUP, cnt=1
17:12:43.593 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown 01:06:47.525 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP
17:12:43.593 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@14bce56b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] 01:06:47.526 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source.yml+DEFAULT_GROUP+cloud-2112
17:12:43.593 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725527375610_139.224.212.27_62441 01:06:47.527 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source.yml, group=DEFAULT_GROUP, cnt=1
17:12:43.597 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@86f1681[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 44] 01:06:47.527 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP
17:12:43.597 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->4f247791-1263-4ebe-b8af-331c46c8ff06 01:06:47.528 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source+DEFAULT_GROUP+cloud-2112
17:12:43.597 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped 01:06:47.528 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source, group=DEFAULT_GROUP, cnt=1
17:12:43.597 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed 01:06:47.528 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP
17:12:43.597 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop 01:06:47.812 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:12:43.601 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... 01:06:48.099 [RMI TCP Connection(2)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
17:12:43.603 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... 01:07:03.113 [http-nio-10005-exec-1] INFO c.z.h.HikariDataSource - [<init>,80] - HikariCP 连接池 - Starting...
17:12:43.608 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed 01:07:20.892 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:12:43.608 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, 01:07:53.952 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:12:43.608 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye 01:08:27.025 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:13:00.676 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" 01:09:00.100 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:13:03.198 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] 01:09:33.163 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:13:03.198 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] 01:10:06.222 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:13:03.273 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext 01:10:39.289 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:13:07.718 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited 01:11:12.355 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:13:07.719 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success 01:11:45.419 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:13:07.720 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] 01:12:18.493 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:13:07.804 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成 01:12:51.559 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:13:08.836 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. 01:13:25.146 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:13:16.219 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. 01:13:58.233 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:13:18.769 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@760d9d4a[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] 01:14:31.318 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:13:18.770 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@69235eea[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] 01:15:04.408 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
17:13:19.053 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 01:15:20.278 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
17:13:20.044 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null 01:15:23.329 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,90] - >>>>>>>>>>> xxl-job registry-remove fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registryRemove, content=null]
17:13:20.044 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null 01:15:23.330 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
17:13:20.045 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null 01:15:23.330 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
17:13:20.050 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource 01:15:23.330 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
17:13:20.054 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. 01:15:23.331 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
17:13:20.054 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. 01:15:23.331 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
17:13:20.218 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 4ce44dde-2b72-47ba-8611-671e10827e3c 01:15:23.349 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
17:13:20.220 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->4ce44dde-2b72-47ba-8611-671e10827e3c 01:15:23.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-source with instance: Instance{instanceId='null', ip='192.168.43.160', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
17:13:20.220 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ce44dde-2b72-47ba-8611-671e10827e3c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager 01:15:23.388 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
17:13:20.220 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ce44dde-2b72-47ba-8611-671e10827e3c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService 01:15:23.389 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
17:13:20.220 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ce44dde-2b72-47ba-8611-671e10827e3c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler 01:15:23.391 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
17:13:20.221 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ce44dde-2b72-47ba-8611-671e10827e3c] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848} 01:15:23.391 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
17:13:20.221 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} 01:15:23.391 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
17:13:20.416 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ce44dde-2b72-47ba-8611-671e10827e3c] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725527601695_139.224.212.27_63023 01:15:23.392 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
17:13:20.417 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ce44dde-2b72-47ba-8611-671e10827e3c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler 01:15:23.392 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
17:13:20.417 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ce44dde-2b72-47ba-8611-671e10827e3c] Notify connected event to listeners. 01:15:23.392 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
17:13:20.417 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ce44dde-2b72-47ba-8611-671e10827e3c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x000001cb815244a8 01:15:23.392 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
17:13:20.417 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect 01:15:23.392 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
17:13:20.418 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-source with instance Instance{instanceId='null', ip='192.168.178.81', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9105:b604:307c:8ff0:6eb3:361d], preserved.register.source=SPRING_CLOUD}} 01:15:23.393 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
17:13:20.503 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.178.81:10005 register finished 01:15:23.394 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
17:13:21.677 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 26.699 seconds (process running for 27.448) 01:15:23.394 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->399eda99-fb4f-4d6d-9155-2d056dc9a4bf
17:13:21.688 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis 01:15:23.395 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@eedad19[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 172]
17:13:21.689 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true 01:15:23.395 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
17:13:21.691 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source-dev.yml+DEFAULT_GROUP+cloud-2112 01:15:23.395 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2465416e[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
17:13:21.700 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source-dev.yml, group=DEFAULT_GROUP, cnt=1 01:15:23.395 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725728806185_139.224.212.27_62884
17:13:21.700 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP 01:15:23.401 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3b9f23a6[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 114]
17:13:21.701 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source.yml+DEFAULT_GROUP+cloud-2112 01:15:23.403 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->399eda99-fb4f-4d6d-9155-2d056dc9a4bf
17:13:21.701 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source.yml, group=DEFAULT_GROUP, cnt=1 01:15:23.403 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
17:13:21.701 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP 01:15:23.403 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
17:13:21.701 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source+DEFAULT_GROUP+cloud-2112 01:15:23.404 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
17:13:21.701 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source, group=DEFAULT_GROUP, cnt=1 01:15:23.410 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
17:13:21.702 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP 01:15:23.414 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
17:13:21.874 [RMI TCP Connection(3)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' 01:15:23.419 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
17:15:04.000 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. 01:15:23.420 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
17:15:04.075 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://172.16.0.3:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null] 01:15:23.420 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
17:15:04.075 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. 01:16:22.898 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
17:15:04.075 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. 01:16:26.148 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
17:15:04.076 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. 01:16:26.148 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
17:15:04.076 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. 01:16:26.243 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
17:15:04.077 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. 01:16:29.633 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
17:15:04.087 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... 01:16:29.635 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
17:15:04.087 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-source with instance: Instance{instanceId='null', ip='192.168.178.81', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} 01:16:29.636 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
17:15:04.285 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. 01:16:29.763 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
17:15:04.287 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin 01:16:31.336 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
17:15:04.287 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin 01:16:36.659 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
17:15:04.288 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop 01:16:39.678 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@7da324d0[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
17:15:04.288 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop 01:16:39.678 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@7a61020a[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
17:15:04.288 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin 01:16:39.993 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999
17:15:04.288 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin 01:16:40.987 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
17:15:04.288 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop 01:16:40.987 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
17:15:04.288 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin 01:16:40.987 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
17:15:04.288 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop 01:16:40.992 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
17:15:04.288 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin 01:16:40.997 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
17:15:04.289 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop 01:16:40.998 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
17:15:04.289 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->4ce44dde-2b72-47ba-8611-671e10827e3c 01:16:41.151 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 906ec950-9bf8-4b03-9602-486aabe5502b
17:15:04.289 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@7c57e8f2[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 30] 01:16:41.157 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->906ec950-9bf8-4b03-9602-486aabe5502b
17:15:04.289 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown 01:16:41.158 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [906ec950-9bf8-4b03-9602-486aabe5502b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
17:15:04.289 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@52e73f26[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] 01:16:41.158 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [906ec950-9bf8-4b03-9602-486aabe5502b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
17:15:04.289 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725527601695_139.224.212.27_63023 01:16:41.159 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [906ec950-9bf8-4b03-9602-486aabe5502b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
17:15:04.292 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@26a26f21[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 30] 01:16:41.161 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [906ec950-9bf8-4b03-9602-486aabe5502b] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
17:15:04.292 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->4ce44dde-2b72-47ba-8611-671e10827e3c 01:16:41.161 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
17:15:04.293 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped 01:16:41.459 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [906ec950-9bf8-4b03-9602-486aabe5502b] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725729401539_139.224.212.27_63631
17:15:04.293 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed 01:16:41.460 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [906ec950-9bf8-4b03-9602-486aabe5502b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
17:15:04.313 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop 01:16:41.460 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [906ec950-9bf8-4b03-9602-486aabe5502b] Notify connected event to listeners.
17:15:04.315 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... 01:16:41.460 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [906ec950-9bf8-4b03-9602-486aabe5502b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000019201525380
17:15:04.319 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... 01:16:41.460 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
17:15:04.325 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed 01:16:41.463 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-source with instance Instance{instanceId='null', ip='192.168.43.160', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:e569:34fc:11bc:aa9f:89af], preserved.register.source=SPRING_CLOUD}}
17:15:04.325 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, 01:16:41.517 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.43.160:10005 register finished
17:15:04.325 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye 01:16:42.762 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 25.898 seconds (process running for 26.799)
01:16:42.780 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
01:16:42.780 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
01:16:42.783 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source-dev.yml+DEFAULT_GROUP+cloud-2112
01:16:42.797 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source-dev.yml, group=DEFAULT_GROUP, cnt=1
01:16:42.797 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP
01:16:42.798 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source.yml+DEFAULT_GROUP+cloud-2112
01:16:42.798 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source.yml, group=DEFAULT_GROUP, cnt=1
01:16:42.798 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP
01:16:42.799 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source+DEFAULT_GROUP+cloud-2112
01:16:42.799 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source, group=DEFAULT_GROUP, cnt=1
01:16:42.799 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP
01:16:43.112 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:16:43.412 [RMI TCP Connection(7)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
01:16:47.026 [http-nio-10005-exec-2] INFO c.z.h.HikariDataSource - [<init>,80] - HikariCP 连接池 - Starting...
01:17:16.223 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:17:49.294 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:18:17.629 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
01:18:20.686 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,90] - >>>>>>>>>>> xxl-job registry-remove fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registryRemove, content=null]
01:18:20.686 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
01:18:20.686 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
01:18:20.687 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
01:18:20.688 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
01:18:20.688 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
01:18:20.699 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
01:18:20.699 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-source with instance: Instance{instanceId='null', ip='192.168.43.160', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
01:18:20.747 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
01:18:20.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
01:18:20.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
01:18:20.750 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
01:18:20.750 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
01:18:20.750 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
01:18:20.751 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
01:18:20.751 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
01:18:20.751 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
01:18:20.751 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
01:18:20.751 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
01:18:20.751 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
01:18:20.752 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->906ec950-9bf8-4b03-9602-486aabe5502b
01:18:20.752 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@6a1712b1[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 33]
01:18:20.752 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
01:18:20.752 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3a60608d[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
01:18:20.753 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725729401539_139.224.212.27_63631
01:18:20.761 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7b146dad[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 37]
01:18:20.761 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->906ec950-9bf8-4b03-9602-486aabe5502b
01:18:20.762 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
01:18:20.762 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
01:18:20.763 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
01:18:20.767 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
01:18:20.772 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
01:18:20.780 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
01:18:20.781 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
01:18:20.781 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
01:18:39.951 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
01:18:43.417 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
01:18:43.417 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
01:18:43.490 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
01:18:46.889 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
01:18:46.891 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
01:18:46.891 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
01:18:47.043 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
01:18:48.894 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
01:18:54.639 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
01:18:57.648 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@347544b7[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
01:18:57.649 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@4b6f196c[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
01:18:57.999 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999
01:18:58.976 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
01:18:58.977 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
01:18:58.983 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
01:18:58.992 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
01:18:58.999 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
01:18:58.999 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
01:18:59.201 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 78e400bc-1ad5-401a-bde9-bec57fd79cb9
01:18:59.205 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->78e400bc-1ad5-401a-bde9-bec57fd79cb9
01:18:59.206 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
01:18:59.207 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
01:18:59.208 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
01:18:59.209 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
01:18:59.209 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:18:59.421 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725729539476_139.224.212.27_61813
01:18:59.421 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
01:18:59.421 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Notify connected event to listeners.
01:18:59.421 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000024c39523468
01:18:59.422 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
01:18:59.424 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-source with instance Instance{instanceId='null', ip='192.168.43.160', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:e569:34fc:11bc:aa9f:89af], preserved.register.source=SPRING_CLOUD}}
01:18:59.472 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.43.160:10005 register finished
01:19:00.755 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 26.897 seconds (process running for 27.827)
01:19:00.773 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
01:19:00.774 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
01:19:00.776 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source-dev.yml+DEFAULT_GROUP+cloud-2112
01:19:00.796 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source-dev.yml, group=DEFAULT_GROUP, cnt=1
01:19:00.796 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP
01:19:00.798 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source.yml+DEFAULT_GROUP+cloud-2112
01:19:00.799 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source.yml, group=DEFAULT_GROUP, cnt=1
01:19:00.799 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP
01:19:00.800 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source+DEFAULT_GROUP+cloud-2112
01:19:00.801 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source, group=DEFAULT_GROUP, cnt=1
01:19:00.801 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP
01:19:01.118 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:19:01.168 [RMI TCP Connection(5)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
01:19:10.077 [http-nio-10005-exec-2] INFO c.z.h.HikariDataSource - [<init>,80] - HikariCP 连接池 - Starting...
01:19:10.609 [http-nio-10005-exec-2] INFO c.z.h.HikariDataSource - [<init>,82] - HikariCP 连接池 - Start completed.
01:19:10.751 [http-nio-10005-exec-2] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:主键自增
01:19:10.820 [http-nio-10005-exec-2] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:
01:19:10.910 [http-nio-10005-exec-2] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:用户名
01:19:34.171 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:20:00.277 [http-nio-10005-exec-1] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:主键自增
01:20:00.341 [http-nio-10005-exec-1] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:
01:20:00.392 [http-nio-10005-exec-1] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:用户名
01:20:07.224 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:20:40.289 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:21:13.369 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:21:33.066 [http-nio-10005-exec-3] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:主键自增
01:21:33.107 [http-nio-10005-exec-3] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:
01:21:33.161 [http-nio-10005-exec-3] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:用户名
01:21:46.442 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:22:17.584 [http-nio-10005-exec-7] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:主键自增
01:22:19.507 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:22:23.742 [http-nio-10005-exec-6] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:主键自增
01:22:28.790 [http-nio-10005-exec-5] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:主键自增
01:22:28.849 [http-nio-10005-exec-5] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:
01:22:28.925 [http-nio-10005-exec-5] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:用户名
01:22:52.558 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:23:20.271 [http-nio-10005-exec-8] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:主键自增
01:23:20.334 [http-nio-10005-exec-8] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:
01:23:20.401 [http-nio-10005-exec-8] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:用户名
01:23:25.631 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:23:58.687 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:24:04.845 [http-nio-10005-exec-9] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:主键自增
01:24:04.911 [http-nio-10005-exec-9] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:
01:24:04.976 [http-nio-10005-exec-9] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:用户名
01:24:43.343 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:24:53.792 [http-nio-10005-exec-10] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:主键自增
01:25:16.546 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:25:17.834 [http-nio-10005-exec-10] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:
01:25:27.045 [http-nio-10005-exec-10] INFO c.m.c.e.m.MySqlDataSource - [getRows,122] - 字段备注:用户名
01:26:53.808 [nacos-grpc-client-executor-47.116.184.54-105] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6078fec7-cbd3-417e-97d1-cd50a27be8a5_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 5085
01:26:53.808 [nacos-grpc-client-executor-47.116.184.54-85] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Receive server push request, request = ClientDetectionRequest, requestId = 5086
01:26:53.808 [nacos-grpc-client-executor-47.116.184.54-85] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Ack server push request, request = ClientDetectionRequest, requestId = 5086
01:26:53.808 [nacos-grpc-client-executor-47.116.184.54-105] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6078fec7-cbd3-417e-97d1-cd50a27be8a5_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 5085
01:26:53.979 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Server healthy check fail, currentConnection = 1725729539476_139.224.212.27_61813
01:26:53.979 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Try to reconnect to a new server, server is not appointed, will choose a random server.
01:26:53.979 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:26:54.017 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6078fec7-cbd3-417e-97d1-cd50a27be8a5_config-0] Server healthy check fail, currentConnection = 1725729519036_139.224.212.27_61775
01:26:54.017 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6078fec7-cbd3-417e-97d1-cd50a27be8a5_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
01:26:54.017 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:26:54.168 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Success to connect a server [47.116.184.54:8848], connectionId = 1725730014246_139.224.212.27_62230
01:26:54.169 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725729539476_139.224.212.27_61813
01:26:54.169 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725729539476_139.224.212.27_61813
01:26:54.175 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Try to reconnect to a new server, server is not appointed, will choose a random server.
01:26:54.175 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Notify disconnected event to listeners
01:26:54.176 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:26:54.178 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Notify connected event to listeners.
01:26:54.179 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
01:26:54.217 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6078fec7-cbd3-417e-97d1-cd50a27be8a5_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725730014296_139.224.212.27_62231
01:26:54.217 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6078fec7-cbd3-417e-97d1-cd50a27be8a5_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725729519036_139.224.212.27_61775
01:26:54.217 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725729519036_139.224.212.27_61775
01:26:54.219 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6078fec7-cbd3-417e-97d1-cd50a27be8a5_config-0] Notify disconnected event to listeners
01:26:54.219 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6078fec7-cbd3-417e-97d1-cd50a27be8a5_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
01:26:54.219 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [6078fec7-cbd3-417e-97d1-cd50a27be8a5_config-0] DisConnected,clear listen context...
01:26:54.219 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:26:54.219 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6078fec7-cbd3-417e-97d1-cd50a27be8a5_config-0] Notify connected event to listeners.
01:26:54.219 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [6078fec7-cbd3-417e-97d1-cd50a27be8a5_config-0] Connected,notify listen context...
01:26:54.415 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Success to connect a server [47.116.184.54:8848], connectionId = 1725730014446_139.224.212.27_62232
01:26:54.415 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725730014246_139.224.212.27_62230
01:26:54.415 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725730014246_139.224.212.27_62230
01:26:54.416 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Notify disconnected event to listeners
01:26:54.416 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [78e400bc-1ad5-401a-bde9-bec57fd79cb9] Notify connected event to listeners.
01:26:54.416 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
01:26:54.522 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6078fec7-cbd3-417e-97d1-cd50a27be8a5_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725730014594_139.224.212.27_62233
01:26:54.522 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6078fec7-cbd3-417e-97d1-cd50a27be8a5_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725730014296_139.224.212.27_62231
01:26:54.522 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725730014296_139.224.212.27_62231
01:26:54.522 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6078fec7-cbd3-417e-97d1-cd50a27be8a5_config-0] Notify disconnected event to listeners
01:26:54.522 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [6078fec7-cbd3-417e-97d1-cd50a27be8a5_config-0] DisConnected,clear listen context...
01:26:54.523 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6078fec7-cbd3-417e-97d1-cd50a27be8a5_config-0] Notify connected event to listeners.
01:26:54.523 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [6078fec7-cbd3-417e-97d1-cd50a27be8a5_config-0] Connected,notify listen context...
01:26:56.812 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-source
01:26:56.860 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:27:29.911 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:27:48.605 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
01:27:51.669 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,90] - >>>>>>>>>>> xxl-job registry-remove fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registryRemove, content=null]
01:27:51.669 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
01:27:51.669 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
01:27:51.671 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
01:27:51.671 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
01:27:51.671 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
01:27:51.682 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
01:27:51.683 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-source with instance: Instance{instanceId='null', ip='192.168.43.160', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
01:27:51.745 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
01:27:51.747 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
01:27:51.747 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
01:27:51.747 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
01:27:51.747 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
01:27:51.747 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
01:27:51.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
01:27:51.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
01:27:51.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
01:27:51.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
01:27:51.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
01:27:51.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
01:27:51.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->78e400bc-1ad5-401a-bde9-bec57fd79cb9
01:27:51.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@616759a[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 140]
01:27:51.749 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
01:27:51.749 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@43316dd[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
01:27:51.749 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725730014446_139.224.212.27_62232
01:27:51.750 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@725ac8e5[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 112]
01:27:51.750 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->78e400bc-1ad5-401a-bde9-bec57fd79cb9
01:27:51.750 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
01:27:51.751 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
01:27:51.751 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
01:27:51.756 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
01:27:51.759 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
01:27:51.765 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
01:27:51.765 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
01:27:51.765 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye