增加数据资产数据展示

master
lwj 2024-08-30 00:44:32 +08:00
parent 77d17b06e9
commit 86aac8f97b
20 changed files with 3834 additions and 10945 deletions

View File

@ -0,0 +1,21 @@
package com.muyu.domain;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
@Builder
public class DataValue {
private String key;
private String label;
private String type;
private Object value;
}

View File

@ -15,7 +15,7 @@ import lombok.experimental.SuperBuilder;
@NoArgsConstructor
@SuperBuilder
@EqualsAndHashCode(callSuper = true)
@TableName(value = "dept",autoResultMap = true)
@TableName(value = "",autoResultMap = true)
public class Dept extends BaseEntity {
private static final long serialVersionUID = 1L;
/** 主键 */

View File

@ -5,6 +5,8 @@ import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.muyu.common.core.annotation.Excel;
import com.muyu.common.core.web.domain.BaseEntity;
import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotNull;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
@ -19,18 +21,22 @@ import lombok.experimental.SuperBuilder;
@TableName(value ="source",autoResultMap = true) //数据库表相关
public class Source extends BaseEntity {
/** 主键 */
@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;
@ -38,6 +44,7 @@ public class Source extends BaseEntity {
@Excel(name = "端口")
private String port;
/** 数据接入类型 */
@Excel(name = "数据接入类型")
private String databaseType;

View File

@ -26,6 +26,7 @@ public class TableInfo extends BaseEntity {
@TableId(value = "id", type = IdType.AUTO)
private Long id;
//数据源主键
private Long basicId;
/** 表名称/数据库 */
@ -36,7 +37,7 @@ public class TableInfo extends BaseEntity {
@Excel(name = "表备注")
private String tableRemark;
/** 表备注 */
/** 表的数据来源 */
@Excel(name = "数据来源类型")
private String type;

View File

@ -0,0 +1,48 @@
package com.muyu.domain.enums;
import java.math.BigDecimal;
import java.util.Date;
public enum DataType {
VARCHAR("varchar",String.class,"String"),
BIGINT("bigint",Long.class,"Long"),
INT("int",Integer.class,"Integer"),
DECIMAL("decimal", BigDecimal.class,"BigDecimal"),
DATETIME("datetime", Date.class,"Date"),
TEXT ("text",String.class,"String"),
DOUBLE ("double",Double.class,"Double");
private final String sourceType;
private final Class<?> targetType;
private final String javaType;
DataType(String sourceType, Class<?> targetType, String javaType) {
this.sourceType = sourceType;
this.targetType = targetType;
this.javaType = javaType;
}
public static Class convertType(String type){
for (DataType dataType : DataType.values()) {
if(dataType.sourceType.equalsIgnoreCase(type)){
return dataType.targetType;
}
}
return String.class;
}
public static String getJavaType(String type){
for (DataType value : DataType.values()) {
if(value.sourceType.equalsIgnoreCase(type)){
return value.javaType;
}
}
return String.class.getName();
}
}

View File

@ -121,6 +121,12 @@
</dependencies>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.arguments>-parameters</maven.compiler.arguments>
</properties>
<build>
<finalName>cloud-source</finalName>

View File

@ -2,7 +2,6 @@ package com.muyu.cloud.etl;
import com.muyu.common.security.annotation.EnableCustomConfig;
import com.muyu.common.security.annotation.EnableMyFeignClients;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@ -11,7 +10,6 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
@EnableCustomConfig
@EnableMyFeignClients
@SpringBootApplication
@MapperScan("com.muyu.cloud.etl.mapper")
public class MuYuEtlApplication {
public static void main (String[] args) {
SpringApplication.run(MuYuEtlApplication.class, args);

View File

@ -0,0 +1,28 @@
package com.muyu.cloud.etl.controller;
import com.muyu.cloud.etl.service.DataValueService;
import com.muyu.domain.DataValue;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@RestController
@RequestMapping("/DataValue")
public class DataValueController {
@Autowired
private DataValueService dataValueService;
//获取字段值
@PostMapping("/findTableValue")
public List<List<DataValue>> findTableValue(@RequestParam("basicId") Long basicId,@RequestParam("sql") String sql) {
return dataValueService.findTableValue(basicId,sql);
}
//获取字段值
@PostMapping("/findTableValueList")
public List<List<DataValue>> findTableValueList(@RequestParam Long basicId,@RequestParam String tableName ) {
return dataValueService.findTableValueList(basicId,tableName);
}
}

View File

@ -10,6 +10,7 @@ import com.muyu.domain.req.SourceReq;
import jakarta.servlet.ServletException;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@ -21,8 +22,7 @@ public class SourceController extends BaseController {
@Autowired
private SourceService sourceService;
//列表
//数据源列表
@PostMapping("/list")
public Result<TableDataInfo<Source>> list(@RequestBody SourceReq sourceReq) {
startPage();
@ -30,6 +30,7 @@ public class SourceController extends BaseController {
return getDataTable(list);
}
/*
*
*/
@ -55,7 +56,7 @@ public class SourceController extends BaseController {
*
*/
@PostMapping("/insert")
public Result add(@RequestBody Source sourceReq) {
public Result add(@Validated @RequestBody Source sourceReq) {
return toAjax(sourceService.insertBasicConfigInfo(sourceReq));
}
@ -100,6 +101,8 @@ public class SourceController extends BaseController {
//数据资产展示

View File

@ -65,10 +65,22 @@ public class TableInfoController {
).toList();
}
@GetMapping("/findStruceure/{id}")
public Result<List<Structure>> findStruceure(@PathVariable("id") Integer id) {
List<Structure> structureList= structureService.findStructurelistS(id);
return Result.success(structureList);
}
//
//
// @PostMapping("/findTableValueS")
// public List<DataValue> findTableValueS(@RequestParam Long basicId,@RequestParam String tableName ) {
// return tableInfoService.findTableValues(basicId,tableName);
// }
}

View File

@ -0,0 +1,11 @@
package com.muyu.cloud.etl.service;
import com.muyu.domain.DataValue;
import java.util.List;
public interface DataValueService {
List< List<DataValue> >findTableValue(Long basicId, String sql);
List<List<DataValue>> findTableValueList(Long basicId, String tableName);
}

View File

@ -2,7 +2,6 @@ package com.muyu.cloud.etl.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.muyu.domain.TableInfo;
import com.muyu.domain.rep.TableInfoRep;
import java.util.List;
@ -12,5 +11,12 @@ public interface TableInfoService extends IService<TableInfo> {
List<TableInfo> findSourceList();
// List<DataValue> findTableValue(Long basicId, String sql);
//
// List<DataValue> findTableValues(Long basicId, String tableName);
//
// List<TableInfoRep> findTablesList(Long id);
}

View File

@ -0,0 +1,135 @@
package com.muyu.cloud.etl.service.impl;
import com.muyu.cloud.etl.service.DataValueService;
import com.muyu.cloud.etl.service.SourceService;
import com.muyu.domain.DataValue;
import com.muyu.domain.Source;
import com.muyu.domain.enums.DataType;
import lombok.extern.log4j.Log4j2;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.sql.*;
import java.util.ArrayList;
import java.util.List;
@Service
@Log4j2
public class DataValueServiceImpl implements DataValueService {
@Autowired
private SourceService sourceService;
@Override
public List<List<DataValue>> findTableValue(Long basicId, String sql) {
Source source = sourceService.getInfo(basicId);
String host = source.getHost();
String port = source.getPort();
String databaseName = source.getDatabaseName();
String databaseType = source.getDatabaseType();
String url = "jdbc:" + databaseType + "://" + host + ":" + port + "/" + databaseName + "?" + source.getConnectionParams();
String user = source.getUsername();
String password = source.getPassword();
List<List<DataValue>> list = new ArrayList<>();
Connection conn=null;
try {
ArrayList<DataValue> dataValues = new ArrayList<>();
conn = DriverManager.getConnection(url, user, password);
try {
PreparedStatement preparedStatement = conn.prepareStatement(sql);
ResultSet resultSet = preparedStatement.executeQuery();
ResultSetMetaData metaData = resultSet.getMetaData();
int columnCount = metaData.getColumnCount();
while (resultSet.next()){
for (int i = 1; i <= columnCount; i++) {
String columnTypeName = metaData.getColumnTypeName(i);
DatabaseMetaData metaData1 = conn.getMetaData();
ResultSet columns = metaData1.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.getJavaType(columnTypeName))
.build();
dataValues.add(build);
}
list.add(dataValues);
}
} catch (SQLException e) {
throw new RuntimeException(e);
}
} catch (SQLException e) {
throw new RuntimeException(e);
}
return list;
}
@Override
public List<List<DataValue>> findTableValueList(Long basicId, String tableName) {
Source source = sourceService.getInfo(basicId);
String host = source.getHost();
String port = source.getPort();
String databaseName = source.getDatabaseName();
String databaseType = source.getDatabaseType();
String url = "jdbc:" + databaseType + "://" + host + ":" + port + "/" + databaseName + "?" + source.getConnectionParams();
String user = source.getUsername();
String password = source.getPassword();
List<List<DataValue>> list = new ArrayList<>();
Connection conn=null;
try {
ArrayList<DataValue> dataValues = new ArrayList<>();
conn = DriverManager.getConnection(url, user, password);
try {
PreparedStatement preparedStatement = conn.prepareStatement("SELECT * FROM " + tableName);
ResultSet resultSet = preparedStatement.executeQuery();
ResultSetMetaData metaData = resultSet.getMetaData();
int columnCount = metaData.getColumnCount();
while (resultSet.next()){
for (int i = 1; i <= columnCount; i++) {
String columnTypeName = metaData.getColumnTypeName(i);
DatabaseMetaData metaData1 = conn.getMetaData();
ResultSet columns = metaData1.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.getJavaType(columnTypeName))
.build();
dataValues.add(build);
}
list.add(dataValues);
}
} catch (SQLException e) {
throw new RuntimeException(e);
}
} catch (SQLException e) {
throw new RuntimeException(e);
}
return list;
}
}

View File

@ -12,6 +12,7 @@ import com.muyu.domain.Source;
import com.muyu.domain.Structure;
import com.muyu.domain.TableInfo;
import com.muyu.domain.req.SourceReq;
import groovy.lang.Lazy;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import redis.clients.jedis.Jedis;
@ -28,6 +29,7 @@ import java.util.concurrent.Executors;
@Service
public class SourceServiceImpl extends ServiceImpl<SourceMapper, Source> implements SourceService {
@Autowired
@Lazy
private SourceMapper sourceMapper;
@Autowired
private TableInfoService tableInfoService;
@ -81,7 +83,6 @@ public class SourceServiceImpl extends ServiceImpl<SourceMapper, Source> impleme
try {
conn = DriverManager.getConnection(url, user, password);
System.out.println("Connected to the MySQL server successfully.");
// DatabaseMetaData metaData = conn.getMetaData();
//
// ResultSet rs = metaData.getTables(databaseName,
@ -94,8 +95,6 @@ public class SourceServiceImpl extends ServiceImpl<SourceMapper, Source> impleme
// rs.close(); // 记得关闭ResultSet
//
// System.out.println(conn);
// TableInfo tableInfoInsert = TableInfo.builder()
// .basicId(source.getId())
// .parentId(0L)
@ -106,8 +105,6 @@ public class SourceServiceImpl extends ServiceImpl<SourceMapper, Source> impleme
// .createBy(SecurityUtils.getUsername())
// .createTime(new Date())
// .build();
} catch (SQLException e) {
return 0;
}
@ -130,7 +127,6 @@ public class SourceServiceImpl extends ServiceImpl<SourceMapper, Source> impleme
conn = DriverManager.getConnection(url, user, password);
System.out.println("Connected to the MySQL server successfully.");
TableInfo tableInfoInsert = TableInfo.builder()
.basicId(source.getId())
.parentId(0L)
@ -155,7 +151,7 @@ public class SourceServiceImpl extends ServiceImpl<SourceMapper, Source> impleme
DatabaseMetaData metaData = conn.getMetaData();
ResultSet rs = metaData.getTables(databaseName,
null, "%", new String[]{"TABLE"});
null, "%", new String[]{"TABLE", "VIEW"});
while (rs.next()) {
String tableName = rs.getString("TABLE_NAME"); // 或者 rs.getString(3),但使用列名更清晰
@ -300,6 +296,13 @@ public class SourceServiceImpl extends ServiceImpl<SourceMapper, Source> impleme
}});
});
// PreparedStatement preparedStatement = conn.prepareStatement("select columnName from " + table.getTableName());
// ResultSet resultSet1 = preparedStatement.executeQuery();
// while (resultSet1.next()) {
//
// }
}
threadPool.shutdown();
ps.close();

View File

@ -27,5 +27,6 @@ public class StructureServiceImpl extends ServiceImpl<StructureMapper, Structure
List<Structure> list = this.list(structureLambdaQueryWrapper);
return list;
}
}

View File

@ -5,16 +5,21 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.muyu.cloud.etl.mapper.TableInfoMapper;
import com.muyu.cloud.etl.service.TableInfoService;
import com.muyu.domain.TableInfo;
import groovy.lang.Lazy;
import lombok.extern.log4j.Log4j2;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
@Log4j2
public class TableServiceImpl extends ServiceImpl<TableInfoMapper, TableInfo> implements TableInfoService {
@Autowired
@Lazy
private TableInfoMapper tableInfoMapper;
// @Autowired
// private SourceService sourceService;
@Override
public TableInfo selectTableInfoByName(TableInfo tableInfoInsert) {
LambdaQueryWrapper<TableInfo> tableInfoLambdaQueryWrapper = new LambdaQueryWrapper<>();
@ -36,6 +41,120 @@ public class TableServiceImpl extends ServiceImpl<TableInfoMapper, TableInfo> im
return tableInfoList;
}
// @Override
// public List<DataValue> findTableValue(Long basicId, String sql) {
// Source source = sourceService.getInfo(basicId);
// String host = source.getHost();
// String port = source.getPort();
// String databaseName = source.getDatabaseName();
// String databaseType = source.getDatabaseType();
// String url = "jdbc:" + databaseType + "://" + host + ":" + port + "/" + databaseName + "?" + source.getConnectionParams();
// String user = source.getUsername();
// String password = source.getPassword();
//
// List<DataValue> list = new ArrayList<>();
//
//
// Connection conn=null;
// try {
// conn = DriverManager.getConnection(url, user, password);
// try {
// PreparedStatement preparedStatement = conn.prepareStatement(sql);
//
// ResultSet resultSet = preparedStatement.executeQuery();
// ResultSetMetaData metaData = resultSet.getMetaData();
// int columnCount = metaData.getColumnCount();
//
//
// while (resultSet.next()){
// for (int i = 1; i <= columnCount; i++) {
// String columnTypeName = metaData.getColumnTypeName(i);
//
// DatabaseMetaData metaData1 = conn.getMetaData();
// ResultSet columns = metaData1.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.getJavaType(columnTypeName))
// .build();
// list.add(build);
//
// }
// }
// } catch (SQLException e) {
// throw new RuntimeException(e);
// }
// } catch (SQLException e) {
// throw new RuntimeException(e);
// }
//
// return list;
// }
//
// @Override
// public List<DataValue> findTableValues(Long basicId, String tableName) {
// Source source = sourceService.getInfo(basicId);
// String host = source.getHost();
// String port = source.getPort();
// String databaseName = source.getDatabaseName();
// String databaseType = source.getDatabaseType();
// String url = "jdbc:" + databaseType + "://" + host + ":" + port + "/" + databaseName + "?" + source.getConnectionParams();
// String user = source.getUsername();
// String password = source.getPassword();
// List<DataValue> list = new ArrayList<>();
// Connection conn=null;
//
// try {
// conn = DriverManager.getConnection(url, user, password);
// try {
// PreparedStatement preparedStatement = conn.prepareStatement("select * from "+tableName);
// ResultSet resultSet = preparedStatement.executeQuery();
// ResultSetMetaData metaData = resultSet.getMetaData();
// int columnCount = metaData.getColumnCount();
// while (resultSet.next()){
// for (int i = 1; i <= columnCount; i++) {
// String columnTypeName = metaData.getColumnTypeName(i);
//
// DatabaseMetaData metaData1 = conn.getMetaData();
//
// ResultSet columns = metaData1.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.getJavaType(columnTypeName))
// .build();
// list.add(build);
//
// }
// }
// } catch (SQLException e) {
// throw new RuntimeException(e);
// }
// } catch (SQLException e) {
// throw new RuntimeException(e);
// }
//
//
// return list;
// }
// @Override
// public List<TableInfoRep> findTablesList(Long id) {
// List<TableInfo> tableInfoList = tableInfoMapper.selectList(new LambdaQueryWrapper<TableInfo>(TableInfo.class).eq(

File diff suppressed because it is too large Load Diff

View File

@ -1,229 +1,626 @@
00:03:00.844 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
00:03:07.452 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
00:03:07.453 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
00:03:07.634 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
00:03:41.224 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
00:03:41.226 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
00:03:41.227 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
00:03:41.453 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
00:03:43.976 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
00:03:49.413 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
00:03:52.953 [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@2af6b556[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
00:03:52.954 [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@7bbab132[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
00:03:53.708 [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:03:53.720 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
00:03:53.721 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
00:03:53.723 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
00:03:53.733 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
00:03:53.743 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
00:03:53.743 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
00:03:55.331 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 7c6a5e85-e2c5-4bb3-bb0b-2251dec9fdfd
00:03:55.337 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->7c6a5e85-e2c5-4bb3-bb0b-2251dec9fdfd
00:03:55.338 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7c6a5e85-e2c5-4bb3-bb0b-2251dec9fdfd] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
00:03:55.338 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7c6a5e85-e2c5-4bb3-bb0b-2251dec9fdfd] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
00:03:55.339 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7c6a5e85-e2c5-4bb3-bb0b-2251dec9fdfd] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
00:03:55.340 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7c6a5e85-e2c5-4bb3-bb0b-2251dec9fdfd] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
00:03:55.342 [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:03:59.216 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7c6a5e85-e2c5-4bb3-bb0b-2251dec9fdfd] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724688238376_139.224.212.27_63018
00:03:59.217 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7c6a5e85-e2c5-4bb3-bb0b-2251dec9fdfd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
00:03:59.217 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7c6a5e85-e2c5-4bb3-bb0b-2251dec9fdfd] Notify connected event to listeners.
00:03:59.219 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
00:03:59.219 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7c6a5e85-e2c5-4bb3-bb0b-2251dec9fdfd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$620/0x00000266015246a0
00:03:59.223 [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:9261:f1a4:178a:18a:8ad2:b3e3], preserved.register.source=SPRING_CLOUD}}
00:04:01.159 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.43.160:10005 register finished
00:04:01.718 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 72.891 seconds (process running for 74.787)
00:04:01.738 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
00:04:01.739 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
00:04:01.743 [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:04:01.765 [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:04:01.765 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP
00:04:01.768 [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:04:01.768 [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:04:01.768 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP
00:04:01.770 [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:04:01.770 [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:04:01.770 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP
00:04:09.728 [http-nio-10005-exec-3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
00:04:14.132 [http-nio-10005-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:14.127+0800]
00:04:15.255 [http-nio-10005-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:15.255+0800]
00:04:16.605 [http-nio-10005-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:16.605+0800]
00:04:17.485 [http-nio-10005-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:17.484+0800]
00:04:20.372 [http-nio-10005-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:20.372+0800]
00:04:21.348 [pool-7-thread-5] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:21.348+0800]
00:04:21.348 [pool-7-thread-4] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:21.348+0800]
00:04:21.349 [pool-7-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:21.349+0800]
00:04:21.349 [pool-7-thread-6] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:21.349+0800]
00:04:21.349 [pool-7-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:21.348+0800]
00:04:21.351 [pool-7-thread-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:21.348+0800]
00:04:22.678 [http-nio-10005-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:22.677+0800]
00:04:23.841 [pool-7-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:23.841+0800]
00:04:23.841 [pool-7-thread-5] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:23.841+0800]
00:04:23.842 [pool-7-thread-4] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:23.841+0800]
00:04:24.617 [pool-7-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:24.617+0800]
00:04:24.625 [pool-7-thread-6] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:24.625+0800]
00:04:25.258 [pool-7-thread-3] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:25.258+0800]
00:04:25.518 [http-nio-10005-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.518+0800]
00:04:25.597 [pool-9-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.597+0800]
00:04:25.602 [pool-9-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.602+0800]
00:04:25.604 [pool-9-thread-4] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.603+0800]
00:04:25.604 [pool-9-thread-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.603+0800]
00:04:25.605 [pool-9-thread-5] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.605+0800]
00:04:25.610 [pool-9-thread-10] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.610+0800]
00:04:25.610 [pool-9-thread-8] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.610+0800]
00:04:25.611 [pool-9-thread-11] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.611+0800]
00:04:25.613 [pool-9-thread-7] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.613+0800]
00:04:25.618 [pool-9-thread-12] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.618+0800]
00:04:25.619 [pool-9-thread-6] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.617+0800]
00:04:25.616 [pool-9-thread-9] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.616+0800]
00:04:25.623 [pool-9-thread-13] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.621+0800]
00:04:25.625 [pool-9-thread-15] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.624+0800]
00:04:25.624 [pool-9-thread-16] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.623+0800]
00:04:25.627 [pool-9-thread-17] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.626+0800]
00:04:25.627 [pool-9-thread-19] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.627+0800]
00:04:25.628 [pool-9-thread-20] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.628+0800]
00:04:25.628 [pool-9-thread-18] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.628+0800]
00:04:25.629 [pool-9-thread-14] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.629+0800]
00:04:25.631 [pool-9-thread-24] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.631+0800]
00:04:25.631 [pool-9-thread-22] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.631+0800]
00:04:25.632 [pool-9-thread-21] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.632+0800]
00:04:25.633 [pool-9-thread-23] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:25.633+0800]
00:04:25.720 [http-nio-10005-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:25.720+0800]
00:04:25.936 [pool-9-thread-4] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:25.936+0800]
00:04:25.936 [pool-9-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:25.936+0800]
00:04:25.937 [pool-9-thread-3] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:25.937+0800]
00:04:25.949 [pool-9-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:25.949+0800]
00:04:26.207 [pool-9-thread-5] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:26.206+0800]
00:04:26.799 [pool-9-thread-10] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:26.799+0800]
00:04:26.798 [pool-9-thread-7] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:26.798+0800]
00:04:26.799 [pool-9-thread-11] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:26.798+0800]
00:04:26.850 [pool-9-thread-8] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:26.850+0800]
00:04:27.265 [pool-9-thread-6] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:27.265+0800]
00:04:27.454 [pool-9-thread-12] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:27.454+0800]
00:04:28.475 [pool-9-thread-13] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:28.475+0800]
00:04:28.475 [pool-9-thread-9] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:28.475+0800]
00:04:28.494 [pool-9-thread-15] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:28.494+0800]
00:04:28.529 [pool-9-thread-16] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:28.529+0800]
00:04:29.359 [pool-9-thread-17] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:29.359+0800]
00:04:29.595 [pool-9-thread-19] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:29.595+0800]
00:04:30.577 [pool-9-thread-20] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:30.577+0800]
00:04:30.580 [pool-9-thread-18] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:30.580+0800]
00:04:30.580 [pool-9-thread-14] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:30.580+0800]
00:04:30.596 [pool-9-thread-24] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:30.595+0800]
00:04:30.734 [pool-9-thread-22] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:30.734+0800]
00:04:31.376 [pool-9-thread-21] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:31.376+0800]
00:04:32.385 [pool-9-thread-23] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:32.384+0800]
00:04:38.114 [http-nio-10005-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:38.114+0800]
00:04:38.398 [pool-11-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:38.398+0800]
00:04:38.736 [http-nio-10005-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:38.736+0800]
00:04:39.250 [pool-11-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:39.250+0800]
00:04:41.099 [http-nio-10005-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:41.099+0800]
00:04:41.101 [pool-13-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:41.101+0800]
00:04:41.102 [pool-13-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:41.101+0800]
00:04:41.105 [pool-13-thread-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:41.105+0800]
00:04:41.105 [pool-13-thread-4] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:41.105+0800]
00:04:41.106 [pool-13-thread-5] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:41.106+0800]
00:04:41.107 [pool-13-thread-8] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:41.107+0800]
00:04:41.110 [pool-13-thread-6] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:41.109+0800]
00:04:41.110 [pool-13-thread-7] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:41.109+0800]
00:04:41.111 [pool-13-thread-9] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:41.111+0800]
00:04:41.115 [pool-13-thread-10] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:41.115+0800]
00:04:41.116 [pool-13-thread-12] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:41.116+0800]
00:04:41.116 [pool-13-thread-11] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:41.116+0800]
00:04:41.117 [pool-13-thread-14] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:41.117+0800]
00:04:41.117 [pool-13-thread-13] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:41.117+0800]
00:04:41.117 [pool-13-thread-15] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:41.117+0800]
00:04:41.510 [http-nio-10005-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:41.510+0800]
00:04:41.515 [pool-13-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:41.514+0800]
00:04:41.515 [pool-13-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:41.515+0800]
00:04:41.536 [pool-13-thread-4] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:41.536+0800]
00:04:41.537 [pool-13-thread-8] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:41.537+0800]
00:04:41.537 [pool-13-thread-5] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:41.537+0800]
00:04:41.538 [pool-13-thread-3] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:41.538+0800]
00:04:41.540 [pool-13-thread-6] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:41.540+0800]
00:04:41.591 [pool-13-thread-7] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:41.591+0800]
00:04:41.636 [pool-13-thread-9] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:41.636+0800]
00:04:41.641 [pool-13-thread-14] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:41.641+0800]
00:04:41.656 [pool-13-thread-11] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:41.656+0800]
00:04:41.656 [pool-13-thread-15] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:41.656+0800]
00:04:41.657 [pool-13-thread-12] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:41.657+0800]
00:04:42.765 [pool-13-thread-10] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:42.764+0800]
00:04:44.736 [pool-13-thread-13] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:44.736+0800]
00:04:45.321 [http-nio-10005-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:45.321+0800]
00:04:46.633 [pool-15-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:46.633+0800]
00:04:46.634 [pool-15-thread-4] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:46.634+0800]
00:04:46.634 [pool-15-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:46.634+0800]
00:04:46.634 [pool-15-thread-6] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:46.634+0800]
00:04:46.635 [pool-15-thread-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:46.634+0800]
00:04:46.635 [pool-15-thread-5] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:46.635+0800]
00:04:48.228 [http-nio-10005-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:48.228+0800]
00:04:48.898 [pool-15-thread-6] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:48.898+0800]
00:04:48.898 [pool-15-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:48.898+0800]
00:04:48.899 [pool-15-thread-4] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:48.898+0800]
00:04:48.900 [pool-15-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:48.899+0800]
00:04:48.902 [pool-15-thread-3] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:48.902+0800]
00:04:48.902 [pool-15-thread-5] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:48.902+0800]
00:04:52.475 [http-nio-10005-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:52.475+0800]
00:04:52.479 [pool-17-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:52.479+0800]
00:04:52.479 [pool-17-thread-4] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:52.479+0800]
00:04:52.478 [pool-17-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:52.478+0800]
00:04:52.483 [pool-17-thread-5] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:52.483+0800]
00:04:52.483 [pool-17-thread-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:52.482+0800]
00:04:52.488 [pool-17-thread-7] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:52.487+0800]
00:04:52.489 [pool-17-thread-6] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:04:52.488+0800]
00:04:55.094 [http-nio-10005-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:55.094+0800]
00:04:55.156 [pool-17-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:55.156+0800]
00:04:55.156 [pool-17-thread-4] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:55.156+0800]
00:04:55.156 [pool-17-thread-3] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:55.156+0800]
00:04:55.162 [pool-17-thread-5] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:55.162+0800]
00:04:55.162 [pool-17-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:55.162+0800]
00:04:55.162 [pool-17-thread-7] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:55.162+0800]
00:04:55.174 [pool-17-thread-6] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:04:55.174+0800]
00:05:00.213 [http-nio-10005-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:05:00.213+0800]
00:05:00.214 [pool-19-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:05:00.214+0800]
00:05:00.214 [pool-19-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:05:00.214+0800]
00:05:00.216 [pool-19-thread-3] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:05:00.215+0800]
00:05:00.215 [pool-19-thread-4] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:05:00.215+0800]
00:05:00.216 [pool-19-thread-5] INFO c.m.c.d.MyMetaObjectHandler - [updateFill,32] - 修改对象元数据字段填充-[updateBy:[0],updateTime:[2024-08-27T00:05:00.216+0800]
00:05:00.469 [http-nio-10005-exec-3] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:05:00.469+0800]
00:05:00.494 [pool-19-thread-1] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:05:00.494+0800]
00:05:00.497 [pool-19-thread-4] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:05:00.497+0800]
00:05:00.498 [pool-19-thread-2] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:05:00.498+0800]
00:05:00.504 [pool-19-thread-5] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:05:00.503+0800]
00:05:00.505 [pool-19-thread-3] INFO c.m.c.d.MyMetaObjectHandler - [insertFill,24] - 添加对象元数据字段填充-[createBy:[0],createTime:[2024-08-27T00:05:00.504+0800]
00:18:14.961 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
00:18:15.007 [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://10.100.28.5:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null]
00:18:15.007 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
00:18:15.008 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
00:18:15.008 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
00:18:15.009 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
00:18:15.009 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
00:18:15.034 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
00:18:15.034 [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={}}
00:18:15.087 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
00:18:15.089 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
00:18:15.089 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
00:18:15.090 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
00:18:15.090 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
00:18:15.091 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
00:18:15.091 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
00:18:15.091 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
00:18:15.091 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
00:18:15.092 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
00:18:15.092 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
00:18:15.092 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
00:18:15.093 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->7c6a5e85-e2c5-4bb3-bb0b-2251dec9fdfd
00:18:15.093 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@628bf582[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 285]
00:18:15.093 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
00:18:15.095 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3de94d82[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
00:18:15.095 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724688238376_139.224.212.27_63018
00:18:15.107 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4b549c7[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 177]
00:18:15.107 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7c6a5e85-e2c5-4bb3-bb0b-2251dec9fdfd] Server healthy check fail, currentConnection = 1724688238376_139.224.212.27_63018
00:18:15.108 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->7c6a5e85-e2c5-4bb3-bb0b-2251dec9fdfd
00:18:15.109 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
00:18:15.109 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
00:18:15.110 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
00:18:15.117 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
00:18:15.121 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
00:18:15.130 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
00:18:15.130 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
00:18:15.130 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
00:08:14.301 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
00:08:17.487 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
00:08:17.488 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
00:08:17.630 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
00:08:30.317 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c11fb5a9-56fa-4452-9292-796abd401d9b_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
00:08:30.320 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
00:08:30.320 [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}
00:08:30.325 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
00:08:30.327 [Druid-ConnectionPool-Create-861715645] INFO c.a.d.p.DruidAbstractDataSource - [setFailContinuous,1900] - {dataSource-1} failContinuous is true
00:08:54.831 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
00:08:57.943 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
00:08:57.943 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
00:08:58.080 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
00:09:19.829 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
00:09:35.778 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
00:09:39.410 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
00:09:39.411 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
00:09:39.529 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
00:09:43.424 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
00:09:43.427 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
00:09:43.428 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
00:09:43.520 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
00:09:45.063 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
00:09:50.995 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
00:09:54.323 [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@221b4175[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
00:09:54.324 [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@58ae3cb[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
00:09:54.834 [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:09:55.810 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
00:09:55.811 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
00:09:55.812 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
00:09:55.825 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
00:09:55.838 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
00:09:55.838 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
00:09:55.997 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 46c26294-9602-464c-bf6c-db6edc8d7445
00:09:56.003 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->46c26294-9602-464c-bf6c-db6edc8d7445
00:09:56.004 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
00:09:56.005 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
00:09:56.006 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
00:09:56.009 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
00:09:56.010 [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:09:56.241 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724947800646_139.224.212.27_62004
00:09:56.242 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
00:09:56.242 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Notify connected event to listeners.
00:09:56.242 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
00:09:56.242 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x00000256815248b0
00:09:56.244 [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:9066:f8e:3d42:55c3:2a75:aed2], preserved.register.source=SPRING_CLOUD}}
00:09:56.315 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.43.160:10005 register finished
00:09:57.636 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 28.096 seconds (process running for 28.896)
00:09:57.654 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
00:09:57.654 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
00:09:57.657 [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:09:57.672 [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:09:57.672 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP
00:09:57.673 [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:09:57.674 [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:09:57.674 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP
00:09:57.675 [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:09:57.675 [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:09:57.675 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP
00:09:58.246 [RMI TCP Connection(4)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
00:11:58.238 [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]
00:11:59.344 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Server healthy check fail, currentConnection = 1724947800646_139.224.212.27_62004
00:11:59.345 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Try to reconnect to a new server, server is not appointed, will choose a random server.
00:11:59.345 [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}
00:12:02.479 [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}
00:12:02.509 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Server healthy check fail, currentConnection = 1724947779236_139.224.212.27_61992
00:12:02.510 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
00:12:02.511 [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}
00:12:05.499 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:05.636 [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}
00:12:05.714 [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}
00:12:08.642 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:08.722 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:08.858 [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}
00:12:09.030 [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}
00:12:11.871 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:12.039 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:12.177 [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}
00:12:12.440 [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}
00:12:15.187 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:15.453 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:15.593 [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}
00:12:15.967 [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}
00:12:18.611 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:18.985 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:19.126 [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}
00:12:19.590 [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}
00:12:22.141 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:22.610 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:22.752 [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}
00:12:23.313 [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}
00:12:25.756 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:26.332 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:26.469 [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}
00:12:27.150 [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}
00:12:29.491 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:30.163 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:30.300 [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}
00:12:31.066 [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}
00:12:31.253 [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(Connect timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
00:12:33.318 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:34.072 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:34.227 [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}
00:12:35.075 [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}
00:12:37.243 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:38.089 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:38.244 [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}
00:12:39.199 [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}
00:12:41.262 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:42.206 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:42.363 [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}
00:12:43.409 [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}
00:12:45.369 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:46.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:46.580 [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}
00:12:47.739 [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}
00:12:49.598 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:50.758 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:50.911 [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}
00:12:52.160 [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}
00:12:53.922 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:55.171 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:55.324 [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}
00:12:56.687 [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}
00:12:58.338 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:59.697 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:12:59.853 [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}
00:13:01.312 [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}
00:13:02.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:13:04.267 [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(Connect timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
00:13:04.330 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 16 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:13:04.472 [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}
00:13:06.036 [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}
00:13:07.486 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:13:09.045 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 17 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:13:09.201 [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}
00:13:09.455 [lettuce-nioEventLoop-6-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
00:13:09.659 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:13:09.663 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /172.13.1.1:6379
00:13:10.861 [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}
00:13:10.867 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 18 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:13:11.468 [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}
00:13:11.478 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 18 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:13:12.771 [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}
00:13:12.778 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 19 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:13:13.383 [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}
00:13:13.388 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 19 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:13:14.787 [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}
00:13:14.793 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 20 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:13:15.395 [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}
00:13:15.404 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 20 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:13:16.905 [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}
00:13:16.913 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 21 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:13:17.516 [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}
00:13:17.522 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 21 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:13:18.690 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
00:13:19.114 [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}
00:13:19.122 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Fail to connect server, after trying 22 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:13:19.622 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
00:13:19.623 [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(No route to host: no further information), for url : http://172.13.1.1:20800/api/registryRemove, content=null]
00:13:19.624 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
00:13:19.624 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
00:13:19.624 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
00:13:19.625 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
00:13:19.626 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
00:13:19.638 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
00:13:19.639 [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={}}
00:13:19.724 [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}
00:13:19.729 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e0af5e7e-350f-4f59-9d5e-cb113ae3efe7_config-0] Fail to connect server, after trying 22 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:13:20.105 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
00:13:20.107 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
00:13:20.107 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
00:13:20.107 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
00:13:20.108 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
00:13:20.108 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
00:13:20.108 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
00:13:20.108 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
00:13:20.108 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
00:13:20.108 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
00:13:20.109 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
00:13:20.109 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
00:13:20.109 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->46c26294-9602-464c-bf6c-db6edc8d7445
00:13:20.109 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1de9e9b5[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 67]
00:13:20.109 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
00:13:20.109 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@4f7a6bf3[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
00:13:20.109 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724947800646_139.224.212.27_62004
00:13:20.110 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [46c26294-9602-464c-bf6c-db6edc8d7445] Client is shutdown, stop reconnect to server
00:13:20.110 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@41e817bd[Running, pool size = 20, active threads = 0, queued tasks = 0, completed tasks = 112]
00:13:20.110 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->46c26294-9602-464c-bf6c-db6edc8d7445
00:13:20.111 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
00:13:20.111 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
00:13:20.112 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
00:13:20.117 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
00:13:20.120 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
00:13:20.141 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
00:13:20.142 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
00:13:20.142 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
00:27:32.692 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
00:27:36.389 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
00:27:36.389 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
00:27:36.486 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
00:27:58.234 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
00:27:58.242 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
00:29:00.206 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
00:29:04.197 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
00:29:04.197 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
00:29:04.306 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
00:29:08.763 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
00:29:08.765 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
00:29:08.765 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
00:29:08.852 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
00:29:10.388 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
00:29:13.999 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
00:29:15.778 [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@221b4175[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
00:29:15.778 [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@58ae3cb[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
00:29:16.076 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
00:29:16.077 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
00:29:16.077 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
00:29:16.083 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
00:29:16.086 [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:29:16.088 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
00:29:16.088 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
00:29:16.251 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 14044534-58b2-486b-970c-d53293804a90
00:29:16.252 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->14044534-58b2-486b-970c-d53293804a90
00:29:16.254 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
00:29:16.254 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
00:29:16.255 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
00:29:16.255 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
00:29:16.255 [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:29:17.502 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724948961906_139.224.212.27_62987
00:29:17.503 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Notify connected event to listeners.
00:29:17.503 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
00:29:17.503 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
00:29:17.503 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x000001ce01524ac0
00:29:17.505 [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:9066:f8e:3d42:55c3:2a75:aed2], preserved.register.source=SPRING_CLOUD}}
00:29:17.576 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.43.160:10005 register finished
00:29:17.867 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 23.334 seconds (process running for 24.161)
00:29:17.884 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
00:29:17.884 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
00:29:17.886 [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:29:17.902 [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:29:17.903 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP
00:29:17.904 [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:29:17.904 [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:29:17.904 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP
00:29:17.905 [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:29:17.906 [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:29:17.906 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP
00:29:18.532 [RMI TCP Connection(2)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
00:29:43.595 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Server healthy check fail, currentConnection = 1724948961906_139.224.212.27_62987
00:29:43.596 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Try to reconnect to a new server, server is not appointed, will choose a random server.
00:29:43.597 [com.alibaba.nacos.client.remote.worker.0] 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:29:43.803 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b31b081-0fb4-4368-8277-5384905381f4_config-0] Server healthy check fail, currentConnection = 1724948943667_139.224.212.27_62970
00:29:43.805 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b31b081-0fb4-4368-8277-5384905381f4_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
00:29:43.808 [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}
00:29:44.889 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Success to connect a server [47.116.184.54:8848], connectionId = 1724948989267_139.224.212.27_63071
00:29:44.890 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1724948961906_139.224.212.27_62987
00:29:44.890 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724948961906_139.224.212.27_62987
00:29:44.897 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Notify disconnected event to listeners
00:29:44.900 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Notify connected event to listeners.
00:29:44.900 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
00:29:45.156 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b31b081-0fb4-4368-8277-5384905381f4_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1724948989467_139.224.212.27_63074
00:29:45.156 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b31b081-0fb4-4368-8277-5384905381f4_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1724948943667_139.224.212.27_62970
00:29:45.156 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724948943667_139.224.212.27_62970
00:29:45.156 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b31b081-0fb4-4368-8277-5384905381f4_config-0] Notify disconnected event to listeners
00:29:45.157 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [6b31b081-0fb4-4368-8277-5384905381f4_config-0] DisConnected,clear listen context...
00:29:45.157 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b31b081-0fb4-4368-8277-5384905381f4_config-0] Notify connected event to listeners.
00:29:45.157 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [6b31b081-0fb4-4368-8277-5384905381f4_config-0] Connected,notify listen context...
00:29:46.361 [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
00:29:55.001 [lettuce-nioEventLoop-6-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:994)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
00:29:55.070 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /172.13.1.1:6379
00:29:55.083 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b31b081-0fb4-4368-8277-5384905381f4_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
00:29:55.084 [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}
00:29:55.457 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b31b081-0fb4-4368-8277-5384905381f4_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1724948999776_39.144.43.45_50667
00:29:55.458 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b31b081-0fb4-4368-8277-5384905381f4_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1724948989467_139.224.212.27_63074
00:29:55.458 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724948989467_139.224.212.27_63074
00:29:55.458 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b31b081-0fb4-4368-8277-5384905381f4_config-0] Notify disconnected event to listeners
00:29:55.459 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [6b31b081-0fb4-4368-8277-5384905381f4_config-0] DisConnected,clear listen context...
00:29:55.459 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Server healthy check fail, currentConnection = 1724948989267_139.224.212.27_63071
00:29:55.459 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b31b081-0fb4-4368-8277-5384905381f4_config-0] Notify connected event to listeners.
00:29:55.459 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Try to reconnect to a new server, server is not appointed, will choose a random server.
00:29:55.459 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [6b31b081-0fb4-4368-8277-5384905381f4_config-0] Connected,notify listen context...
00:29:55.459 [com.alibaba.nacos.client.remote.worker.0] 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:29:55.821 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Success to connect a server [47.116.184.54:8848], connectionId = 1724949000156_39.144.43.45_50669
00:29:55.822 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1724948989267_139.224.212.27_63071
00:29:55.822 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724948989267_139.224.212.27_63071
00:29:55.822 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Try to reconnect to a new server, server is not appointed, will choose a random server.
00:29:55.822 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Notify disconnected event to listeners
00:29:55.822 [com.alibaba.nacos.client.remote.worker.0] 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:29:55.823 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Notify connected event to listeners.
00:29:55.823 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
00:29:56.049 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Success to connect a server [47.116.184.54:8848], connectionId = 1724949000466_39.144.43.45_50670
00:29:56.050 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1724949000156_39.144.43.45_50669
00:29:56.050 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724949000156_39.144.43.45_50669
00:29:56.051 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Notify disconnected event to listeners
00:29:56.052 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Notify connected event to listeners.
00:29:56.053 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
00:29:56.661 [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
00:30:05.136 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
00:30:15.232 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
00:30:20.565 [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(Connect timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
00:30:25.339 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
00:30:35.440 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
00:30:45.531 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
00:30:46.091 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Server healthy check fail, currentConnection = 1724949000466_39.144.43.45_50670
00:30:46.091 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Try to reconnect to a new server, server is not appointed, will choose a random server.
00:30:46.091 [com.alibaba.nacos.client.remote.worker.0] 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:30:46.606 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b31b081-0fb4-4368-8277-5384905381f4_config-0] Server healthy check fail, currentConnection = 1724948999776_39.144.43.45_50667
00:30:46.607 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b31b081-0fb4-4368-8277-5384905381f4_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
00:30:46.607 [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}
00:30:48.700 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
00:30:49.211 [com.alibaba.nacos.client.remote.worker.0] 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:30:49.730 [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}
00:30:51.712 [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(Connect timed out), for url : http://172.13.1.1:20800/api/registryRemove, content=null]
00:30:51.712 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
00:30:51.713 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
00:30:51.713 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
00:30:51.713 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
00:30:51.714 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
00:30:51.727 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
00:30:51.727 [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={}}
00:30:52.216 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown
00:30:52.229 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
00:30:52.231 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
00:30:52.231 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
00:30:52.232 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
00:30:52.232 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
00:30:52.232 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
00:30:52.232 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
00:30:52.233 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
00:30:52.233 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
00:30:52.233 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
00:30:52.234 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
00:30:52.234 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
00:30:52.234 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->14044534-58b2-486b-970c-d53293804a90
00:30:52.234 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1173a4bb[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 31]
00:30:52.235 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
00:30:52.235 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@568fd81a[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
00:30:52.236 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724949000466_39.144.43.45_50670
00:30:52.236 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [14044534-58b2-486b-970c-d53293804a90] Client is shutdown, stop reconnect to server
00:30:52.236 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@26bfe908[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 58]
00:30:52.237 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->14044534-58b2-486b-970c-d53293804a90
00:30:52.238 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
00:30:52.238 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
00:30:52.239 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
00:30:52.248 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
00:30:52.253 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
00:30:52.266 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
00:30:52.267 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
00:30:52.267 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
00:33:02.103 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
00:33:05.215 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
00:33:05.218 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
00:33:05.323 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
00:33:09.386 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
00:33:09.388 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
00:33:09.388 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
00:33:09.527 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
00:33:11.170 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
00:33:15.028 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
00:33:16.641 [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@4f60ac31[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
00:33:16.641 [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@6b37cadf[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
00:33:16.983 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
00:33:16.984 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
00:33:16.984 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
00:33:16.992 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
00:33:16.997 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
00:33:16.997 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
00:33:17.019 [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:33:17.160 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 4e413839-c565-4726-9153-3d12bb8a99bf
00:33:17.166 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->4e413839-c565-4726-9153-3d12bb8a99bf
00:33:17.168 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e413839-c565-4726-9153-3d12bb8a99bf] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
00:33:17.168 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e413839-c565-4726-9153-3d12bb8a99bf] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
00:33:17.169 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e413839-c565-4726-9153-3d12bb8a99bf] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
00:33:17.170 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e413839-c565-4726-9153-3d12bb8a99bf] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
00:33:17.171 [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:33:17.460 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e413839-c565-4726-9153-3d12bb8a99bf] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724949201866_139.224.212.27_63164
00:33:17.461 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e413839-c565-4726-9153-3d12bb8a99bf] Notify connected event to listeners.
00:33:17.461 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e413839-c565-4726-9153-3d12bb8a99bf] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
00:33:17.461 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
00:33:17.461 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4e413839-c565-4726-9153-3d12bb8a99bf] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x000001fea25248b0
00:33:17.465 [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:9066:f8e:3d42:55c3:2a75:aed2], preserved.register.source=SPRING_CLOUD}}
00:33:17.542 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.43.160:10005 register finished
00:33:17.837 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 19.971 seconds (process running for 20.962)
00:33:17.851 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
00:33:17.852 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
00:33:17.854 [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:33:17.866 [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:33:17.866 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP
00:33:17.867 [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:33:17.867 [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:33:17.867 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP
00:33:17.868 [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:33:17.868 [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:33:17.869 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP
00:33:18.202 [RMI TCP Connection(2)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
00:35:13.602 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
00:35:13.658 [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://10.100.28.5:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null]
00:35:13.658 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
00:35:13.660 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
00:35:13.660 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
00:35:13.660 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
00:35:13.661 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
00:35:13.673 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
00:35:13.673 [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={}}
00:35:13.750 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
00:35:13.752 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
00:35:13.752 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
00:35:13.753 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
00:35:13.753 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
00:35:13.753 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
00:35:13.753 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
00:35:13.754 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
00:35:13.754 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
00:35:13.754 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
00:35:13.754 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
00:35:13.755 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
00:35:13.755 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->4e413839-c565-4726-9153-3d12bb8a99bf
00:35:13.755 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@2625db5d[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 38]
00:35:13.755 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
00:35:13.755 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@71842842[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
00:35:13.756 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724949201866_139.224.212.27_63164
00:35:13.763 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7655c254[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 37]
00:35:13.763 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->4e413839-c565-4726-9153-3d12bb8a99bf
00:35:13.764 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
00:35:13.764 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
00:35:13.764 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
00:35:13.768 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
00:35:13.772 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
00:35:13.780 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
00:35:13.780 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
00:35:13.781 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
00:35:26.137 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
00:35:29.855 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
00:35:29.856 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
00:35:29.988 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
00:35:33.243 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
00:35:33.246 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
00:35:33.246 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
00:35:33.386 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
00:35:34.693 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
00:35:37.355 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
00:35:38.940 [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@f7dc1aa[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
00:35:38.941 [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@6d487f2b[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
00:35:39.321 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
00:35:39.321 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
00:35:39.322 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
00:35:39.332 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
00:35:39.339 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
00:35:39.340 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
00:35:39.343 [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:35:39.380 [http-nio-10005-exec-2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
00:35:39.474 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of a6302980-5181-494e-bd4b-f638d06ded5e
00:35:39.477 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->a6302980-5181-494e-bd4b-f638d06ded5e
00:35:39.477 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a6302980-5181-494e-bd4b-f638d06ded5e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
00:35:39.478 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a6302980-5181-494e-bd4b-f638d06ded5e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
00:35:39.479 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a6302980-5181-494e-bd4b-f638d06ded5e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
00:35:39.479 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a6302980-5181-494e-bd4b-f638d06ded5e] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
00:35:39.480 [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:35:39.705 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a6302980-5181-494e-bd4b-f638d06ded5e] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724949344081_139.224.212.27_63250
00:35:39.705 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a6302980-5181-494e-bd4b-f638d06ded5e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
00:35:39.705 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a6302980-5181-494e-bd4b-f638d06ded5e] Notify connected event to listeners.
00:35:39.706 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
00:35:39.706 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a6302980-5181-494e-bd4b-f638d06ded5e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x000001eb0150c6a0
00:35:39.708 [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:9066:f8e:3d42:55c3:2a75:aed2], preserved.register.source=SPRING_CLOUD}}
00:35:39.757 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.43.160:10005 register finished
00:35:39.943 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 17.636 seconds (process running for 18.586)
00:35:39.958 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
00:35:39.959 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
00:35:39.961 [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:35:39.972 [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:35:39.973 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP
00:35:39.973 [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:35:39.973 [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:35:39.974 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP
00:35:39.974 [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:35:39.975 [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:35:39.975 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP
00:37:22.266 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
00:37:22.318 [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://10.100.28.5:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null]
00:37:22.319 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
00:37:22.319 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
00:37:22.320 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
00:37:22.321 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
00:37:22.321 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
00:37:22.333 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
00:37:22.333 [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={}}
00:37:22.448 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
00:37:22.450 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
00:37:22.452 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
00:37:22.453 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
00:37:22.453 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
00:37:22.453 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
00:37:22.454 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
00:37:22.454 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
00:37:22.454 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
00:37:22.455 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
00:37:22.456 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
00:37:22.457 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
00:37:22.457 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->a6302980-5181-494e-bd4b-f638d06ded5e
00:37:22.458 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1e4caa8e[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 34]
00:37:22.458 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
00:37:22.459 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@16110b2d[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
00:37:22.459 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724949344081_139.224.212.27_63250
00:37:22.471 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@57a0d466[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 33]
00:37:22.471 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->a6302980-5181-494e-bd4b-f638d06ded5e
00:37:22.472 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
00:37:22.473 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
00:37:22.474 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
00:37:22.481 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
00:37:22.487 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
00:37:22.502 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
00:37:22.503 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
00:37:22.503 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
00:37:40.723 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
00:37:43.849 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
00:37:43.849 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
00:37:43.956 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
00:37:47.594 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
00:37:47.597 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
00:37:47.598 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
00:37:47.698 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
00:37:49.261 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
00:37:52.824 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
00:37:54.365 [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@3982fdf7[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
00:37:54.365 [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@1933e1dc[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
00:37:54.660 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
00:37:54.661 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
00:37:54.661 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
00:37:54.668 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
00:37:54.674 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
00:37:54.674 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
00:37:54.676 [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:37:54.851 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 7695582a-5ab9-4acc-a828-972cb2f7c98b
00:37:54.854 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->7695582a-5ab9-4acc-a828-972cb2f7c98b
00:37:54.855 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7695582a-5ab9-4acc-a828-972cb2f7c98b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
00:37:54.855 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7695582a-5ab9-4acc-a828-972cb2f7c98b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
00:37:54.856 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7695582a-5ab9-4acc-a828-972cb2f7c98b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
00:37:54.857 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7695582a-5ab9-4acc-a828-972cb2f7c98b] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
00:37:54.859 [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:37:55.203 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7695582a-5ab9-4acc-a828-972cb2f7c98b] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724949479515_139.224.212.27_63331
00:37:55.204 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7695582a-5ab9-4acc-a828-972cb2f7c98b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
00:37:55.204 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7695582a-5ab9-4acc-a828-972cb2f7c98b] Notify connected event to listeners.
00:37:55.205 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7695582a-5ab9-4acc-a828-972cb2f7c98b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000022b01525c28
00:37:55.205 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
00:37:55.207 [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:9066:f8e:3d42:55c3:2a75:aed2], preserved.register.source=SPRING_CLOUD}}
00:37:55.302 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.43.160:10005 register finished
00:37:55.636 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 19.158 seconds (process running for 20.049)
00:37:55.647 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
00:37:55.647 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
00:37:55.649 [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:37:55.659 [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:37:55.660 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP
00:37:55.660 [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:37:55.661 [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:37:55.661 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP
00:37:55.661 [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:37:55.662 [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:37:55.662 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP
00:37:55.953 [RMI TCP Connection(2)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
00:40:31.767 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
00:40:31.831 [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://10.100.28.5:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null]
00:40:31.831 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
00:40:31.831 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
00:40:31.832 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
00:40:31.832 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
00:40:31.833 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
00:40:31.844 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
00:40:31.844 [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={}}
00:40:31.961 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
00:40:31.963 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
00:40:31.963 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
00:40:31.964 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
00:40:31.964 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
00:40:31.965 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
00:40:31.965 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
00:40:31.965 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
00:40:31.965 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
00:40:31.965 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
00:40:31.966 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
00:40:31.966 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
00:40:31.966 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->7695582a-5ab9-4acc-a828-972cb2f7c98b
00:40:31.966 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@5ab0c8e5[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 52]
00:40:31.966 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
00:40:31.966 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1df1427[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
00:40:31.967 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724949479515_139.224.212.27_63331
00:40:31.971 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@eebc71d[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 47]
00:40:31.972 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->7695582a-5ab9-4acc-a828-972cb2f7c98b
00:40:31.973 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
00:40:31.973 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
00:40:31.973 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
00:40:31.977 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
00:40:31.980 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
00:40:31.987 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
00:40:31.987 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
00:40:31.987 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye