提交更新返回值

master
lwj 2024-09-08 10:03:40 +08:00
parent 245da3bb79
commit af860da092
3 changed files with 1524 additions and 30 deletions

View File

@ -19,6 +19,7 @@ import org.springframework.stereotype.Service;
import java.sql.*; import java.sql.*;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.concurrent.ConcurrentHashMap;
@Service @Service
@Log4j2 @Log4j2
@ -30,7 +31,7 @@ public class DataValueServiceImpl implements DataValueService {
@Override @Override
public List<List<DataValue>> findTableValue(Long basicId, String sql) { public List<List<DataValue>> findTableValue(Long basicId, String sql) {
ConcurrentHashMap<Integer, DataValue> map = new ConcurrentHashMap<>();
Source source = sourceService.getInfo(basicId); Source source = sourceService.getInfo(basicId);
// HikariConfig hikariConfig = new HikariConfig(); // HikariConfig hikariConfig = new HikariConfig();
@ -59,7 +60,7 @@ public class DataValueServiceImpl implements DataValueService {
int columnCount = metaData.getColumnCount(); int columnCount = metaData.getColumnCount();
while (resultSet.next()){ while (resultSet.next()){
for (int i = 1; i <= columnCount; i++) { for (int i = 1; i <= columnCount; i++) {
if (resultSet.isFirst()){
String columnTypeName = metaData.getColumnTypeName(i); String columnTypeName = metaData.getColumnTypeName(i);
DatabaseMetaData metaData1 = conn.getMetaData(); DatabaseMetaData metaData1 = conn.getMetaData();
@ -79,9 +80,23 @@ public class DataValueServiceImpl implements DataValueService {
.type(DataType.findBySqlType(columnTypeName)) .type(DataType.findBySqlType(columnTypeName))
.build(); .build();
dataValues.add(build); dataValues.add(build);
map.put(i,build);
}else {
DataValue build = DataValue.builder()
.key(metaData.getColumnName(i))
.label(map.get(i).getLabel())
.value(resultSet.getObject(i, map.get(i).getType().getTargetType()))
.type(map.get(i).getType())
.build();
dataValues.add(build);
}
} }
list.add(dataValues); list.add(dataValues);
} }
} catch (SQLException e) { } catch (SQLException e) {
throw new RuntimeException(e); throw new RuntimeException(e);
} }
@ -173,22 +188,10 @@ public class DataValueServiceImpl implements DataValueService {
// 获取数据源信息 // 获取数据源信息
Source source = sourceService.getInfo(basicId); Source source = sourceService.getInfo(basicId);
TableInfo tableInfo = tableInfoService.getById(tableId); TableInfo tableInfo = tableInfoService.getById(tableId);
HikariDataSource hikariDataSource = HikariPool.getHikariDataSource(source);
// 提取连接信息
String host = source.getHost();
String port = source.getPort();
String databaseName = source.getDatabaseName();
String databaseType = source.getDatabaseType();
// 构建JDBC URL
String url = "jdbc:" + databaseType + "://" + host + ":" + port + "/" + databaseName + "?" + source.getConnectionParams();
String user = source.getUsername();
String password = source.getPassword();
Connection conn = null; Connection conn = null;
try { try {
// 建立数据库连接 conn = hikariDataSource.getConnection();
conn = DriverManager.getConnection(url, user, password);
// 获取表名 // 获取表名
String tableName = tableInfo.getTableName(); String tableName = tableInfo.getTableName();

View File

@ -1934,3 +1934,673 @@ java.net.SocketTimeoutException: Read timed out
at com.xxl.job.core.biz.client.AdminBizClient.registryRemove(AdminBizClient.java:47) at com.xxl.job.core.biz.client.AdminBizClient.registryRemove(AdminBizClient.java:47)
at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:84) at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:84)
at java.base/java.lang.Thread.run(Thread.java:842) at java.base/java.lang.Thread.run(Thread.java:842)
01:32:52.311 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out
java.net.SocketTimeoutException: Read timed out
at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:288)
at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:314)
at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:355)
at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:808)
at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966)
at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244)
at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284)
at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343)
at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:827)
at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:762)
at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1710)
at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1611)
at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529)
at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119)
at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42)
at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48)
at java.base/java.lang.Thread.run(Thread.java:842)
01:33:25.394 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out
java.net.SocketTimeoutException: Read timed out
at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:288)
at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:314)
at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:355)
at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:808)
at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966)
at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244)
at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284)
at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343)
at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:827)
at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:762)
at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1710)
at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1611)
at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529)
at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119)
at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42)
at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48)
at java.base/java.lang.Thread.run(Thread.java:842)
01:35:58.764 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out
java.net.SocketTimeoutException: Read timed out
at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:288)
at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:314)
at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:355)
at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:808)
at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966)
at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244)
at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284)
at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343)
at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:827)
at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:762)
at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1710)
at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1611)
at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529)
at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119)
at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42)
at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48)
at java.base/java.lang.Thread.run(Thread.java:842)
01:36:31.818 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out
java.net.SocketTimeoutException: Read timed out
at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:288)
at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:314)
at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:355)
at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:808)
at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966)
at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244)
at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284)
at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343)
at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:827)
at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:762)
at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1710)
at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1611)
at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529)
at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119)
at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42)
at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48)
at java.base/java.lang.Thread.run(Thread.java:842)
01:37:04.863 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out
java.net.SocketTimeoutException: Read timed out
at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:288)
at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:314)
at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:355)
at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:808)
at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966)
at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244)
at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284)
at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343)
at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:827)
at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:762)
at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1710)
at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1611)
at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529)
at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119)
at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42)
at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48)
at java.base/java.lang.Thread.run(Thread.java:842)
01:37:37.915 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out
java.net.SocketTimeoutException: Read timed out
at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:288)
at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:314)
at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:355)
at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:808)
at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966)
at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244)
at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284)
at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343)
at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:827)
at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:762)
at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1710)
at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1611)
at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529)
at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119)
at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42)
at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48)
at java.base/java.lang.Thread.run(Thread.java:842)
02:18:42.888 [http-nio-10005-exec-1] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/DataValue/findTableValue',发生未知异常.
java.lang.RuntimeException: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'select qq.id qq_id ,qq.create_by qq_create_by ,ee.username ee_username from ' at line 1
at com.muyu.cloud.etl.service.impl.DataValueServiceImpl.findTableValue(DataValueServiceImpl.java:86)
at com.muyu.cloud.etl.controller.DataValueController.findTableValue(DataValueController.java:20)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:653)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
at java.base/java.lang.Thread.run(Thread.java:842)
Caused by: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'select qq.id qq_id ,qq.create_by qq_create_by ,ee.username ee_username from ' at line 1
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:121)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:912)
at com.mysql.cj.jdbc.ClientPreparedStatement.executeQuery(ClientPreparedStatement.java:968)
at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeQuery(ProxyPreparedStatement.java:52)
at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeQuery(HikariProxyPreparedStatement.java)
at com.muyu.cloud.etl.service.impl.DataValueServiceImpl.findTableValue(DataValueServiceImpl.java:57)
... 55 common frames omitted
09:37:23.305 [main] ERROR c.a.d.p.DruidDataSource - [init,928] - init datasource error, url: jdbc:mysql://172.13.1.1:3306/text?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:64)
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815)
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:438)
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189)
at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132)
at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764)
at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33)
at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126)
at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244)
at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126)
at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687)
at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803)
at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924)
at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137)
at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97)
at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53)
at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53)
at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
at com.muyu.cloud.etl.MuYuEtlApplication.main(MuYuEtlApplication.java:15)
Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:104)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:149)
at com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFactory.java:165)
at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:88)
at com.mysql.cj.NativeSession.connect(NativeSession.java:120)
at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:935)
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:805)
... 88 common frames omitted
Caused by: java.net.ConnectException: Connection timed out: connect
at java.base/sun.nio.ch.Net.connect0(Native Method)
at java.base/sun.nio.ch.Net.connect(Net.java:579)
at java.base/sun.nio.ch.Net.connect(Net.java:568)
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:593)
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
at java.base/java.net.Socket.connect(Socket.java:633)
at com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:62)
... 91 common frames omitted
09:37:23.310 [main] ERROR c.a.d.p.DruidDataSource - [init,977] - {dataSource-1} init error
com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:64)
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815)
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:438)
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189)
at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132)
at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764)
at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33)
at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126)
at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244)
at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126)
at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687)
at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803)
at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924)
at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137)
at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97)
at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53)
at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53)
at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
at com.muyu.cloud.etl.MuYuEtlApplication.main(MuYuEtlApplication.java:15)
Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:104)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:149)
at com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFactory.java:165)
at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:88)
at com.mysql.cj.NativeSession.connect(NativeSession.java:120)
at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:935)
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:805)
... 88 common frames omitted
Caused by: java.net.ConnectException: Connection timed out: connect
at java.base/sun.nio.ch.Net.connect0(Native Method)
at java.base/sun.nio.ch.Net.connect(Net.java:579)
at java.base/sun.nio.ch.Net.connect(Net.java:568)
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:593)
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
at java.base/java.net.Socket.connect(Socket.java:633)
at com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:62)
... 91 common frames omitted
09:37:23.393 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'accreditController': Unsatisfied dependency expressed through field 'accreditService': Error creating bean with name 'accreditServiceImpl': Unsatisfied dependency expressed through field 'accreditMapper': Error creating bean with name 'accreditMapper' defined in file [D:\daima\etl\cloud-etl-source\cloud-etl-server\target\classes\com\muyu\cloud\etl\mapper\AccreditMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
at com.muyu.cloud.etl.MuYuEtlApplication.main(MuYuEtlApplication.java:15)
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'accreditServiceImpl': Unsatisfied dependency expressed through field 'accreditMapper': Error creating bean with name 'accreditMapper' defined in file [D:\daima\etl\cloud-etl-source\cloud-etl-server\target\classes\com\muyu\cloud\etl\mapper\AccreditMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784)
... 20 common frames omitted
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'accreditMapper' defined in file [D:\daima\etl\cloud-etl-source\cloud-etl-server\target\classes\com\muyu\cloud\etl\mapper\AccreditMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784)
... 34 common frames omitted
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error
at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:795)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503)
... 45 common frames omitted
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1788)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
... 58 common frames omitted
Caused by: com.baomidou.dynamic.datasource.exception.ErrorCreateDataSourceException: druid create error
at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:139)
at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97)
at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53)
at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53)
at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
... 69 common frames omitted
Caused by: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:64)
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815)
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:438)
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189)
at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132)
at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764)
at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33)
at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126)
at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244)
at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126)
at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687)
at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803)
at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924)
at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137)
... 75 common frames omitted
Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:104)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:149)
at com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFactory.java:165)
at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:88)
at com.mysql.cj.NativeSession.connect(NativeSession.java:120)
at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:935)
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:805)
... 88 common frames omitted
Caused by: java.net.ConnectException: Connection timed out: connect
at java.base/sun.nio.ch.Net.connect0(Native Method)
at java.base/sun.nio.ch.Net.connect(Net.java:579)
at java.base/sun.nio.ch.Net.connect(Net.java:568)
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:593)
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
at java.base/java.net.Socket.connect(Socket.java:633)
at com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:62)
... 91 common frames omitted
09:42:20.898 [http-nio-10005-exec-5] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleException,108] - 请求地址'/DataValue/findTableValue',发生系统异常.
org.springframework.web.context.request.async.AsyncRequestNotUsableException: ServletOutputStream failed to write: java.nio.channels.ClosedChannelException
at org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleHttpServletResponse.handleIOException(StandardServletAsyncWebRequest.java:320)
at org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleServletOutputStream.write(StandardServletAsyncWebRequest.java:378)
at org.springframework.util.StreamUtils$NonClosingOutputStream.write(StreamUtils.java:261)
at com.fasterxml.jackson.core.json.UTF8JsonGenerator._flushBuffer(UTF8JsonGenerator.java:2203)
at com.fasterxml.jackson.core.json.UTF8JsonGenerator.writeString(UTF8JsonGenerator.java:521)
at com.fasterxml.jackson.databind.ser.std.StringSerializer.serialize(StringSerializer.java:41)
at com.fasterxml.jackson.databind.ser.BeanPropertyWriter.serializeAsField(BeanPropertyWriter.java:732)
at com.fasterxml.jackson.databind.ser.std.BeanSerializerBase.serializeFields(BeanSerializerBase.java:772)
at com.fasterxml.jackson.databind.ser.BeanSerializer.serialize(BeanSerializer.java:178)
at com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer.serializeContents(IndexedListSerializer.java:119)
at com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer.serialize(IndexedListSerializer.java:79)
at com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer.serialize(IndexedListSerializer.java:18)
at com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer.serializeContents(IndexedListSerializer.java:119)
at com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer.serialize(IndexedListSerializer.java:79)
at com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer.serialize(IndexedListSerializer.java:18)
at com.fasterxml.jackson.databind.ser.BeanPropertyWriter.serializeAsField(BeanPropertyWriter.java:732)
at com.fasterxml.jackson.databind.ser.std.BeanSerializerBase.serializeFields(BeanSerializerBase.java:772)
at com.fasterxml.jackson.databind.ser.BeanSerializer.serialize(BeanSerializer.java:178)
at com.fasterxml.jackson.databind.ser.DefaultSerializerProvider._serialize(DefaultSerializerProvider.java:479)
at com.fasterxml.jackson.databind.ser.DefaultSerializerProvider.serializeValue(DefaultSerializerProvider.java:318)
at com.fasterxml.jackson.databind.ObjectWriter$Prefetch.serialize(ObjectWriter.java:1572)
at com.fasterxml.jackson.databind.ObjectWriter.writeValue(ObjectWriter.java:1061)
at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.writeInternal(AbstractJackson2HttpMessageConverter.java:483)
at org.springframework.http.converter.AbstractGenericHttpMessageConverter.write(AbstractGenericHttpMessageConverter.java:114)
at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:297)
at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:192)
at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:78)
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:136)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:653)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
at java.base/java.lang.Thread.run(Thread.java:842)
Suppressed: org.springframework.web.context.request.async.AsyncRequestNotUsableException: Response not usable after response errors.
at org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleHttpServletResponse.obtainLockAndCheckState(StandardServletAsyncWebRequest.java:314)
at org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleServletOutputStream.write(StandardServletAsyncWebRequest.java:373)
at org.springframework.util.StreamUtils$NonClosingOutputStream.write(StreamUtils.java:261)
at com.fasterxml.jackson.core.json.UTF8JsonGenerator._flushBuffer(UTF8JsonGenerator.java:2203)
at com.fasterxml.jackson.core.json.UTF8JsonGenerator.close(UTF8JsonGenerator.java:1227)
at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.writeInternal(AbstractJackson2HttpMessageConverter.java:452)
... 52 common frames omitted
Caused by: org.apache.catalina.connector.ClientAbortException: java.nio.channels.ClosedChannelException
at org.apache.catalina.connector.OutputBuffer.realWriteBytes(OutputBuffer.java:341)
at org.apache.catalina.connector.OutputBuffer.flushByteBuffer(OutputBuffer.java:776)
at org.apache.catalina.connector.OutputBuffer.append(OutputBuffer.java:673)
at org.apache.catalina.connector.OutputBuffer.writeBytes(OutputBuffer.java:376)
at org.apache.catalina.connector.OutputBuffer.write(OutputBuffer.java:354)
at org.apache.catalina.connector.CoyoteOutputStream.write(CoyoteOutputStream.java:103)
at org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleServletOutputStream.write(StandardServletAsyncWebRequest.java:375)
... 73 common frames omitted
Caused by: java.nio.channels.ClosedChannelException: null
at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.doWrite(NioEndpoint.java:1343)
at org.apache.tomcat.util.net.SocketWrapperBase.doWrite(SocketWrapperBase.java:764)
at org.apache.tomcat.util.net.SocketWrapperBase.writeBlocking(SocketWrapperBase.java:589)
at org.apache.tomcat.util.net.SocketWrapperBase.write(SocketWrapperBase.java:533)
at org.apache.coyote.http11.Http11OutputBuffer$SocketOutputBuffer.doWrite(Http11OutputBuffer.java:533)
at org.apache.coyote.http11.filters.ChunkedOutputFilter.doWrite(ChunkedOutputFilter.java:110)
at org.apache.coyote.http11.Http11OutputBuffer.doWrite(Http11OutputBuffer.java:193)
at org.apache.coyote.Response.doWrite(Response.java:623)
at org.apache.catalina.connector.OutputBuffer.realWriteBytes(OutputBuffer.java:329)
... 79 common frames omitted

View File

@ -574,3 +574,824 @@
01:27:51.765 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed 01:27:51.765 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
01:27:51.765 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, 01:27:51.765 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
01:27:51.765 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye 01:27:51.765 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
01:32:32.666 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
01:32:35.609 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
01:32:35.609 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
01:32:35.686 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
01:32:38.910 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
01:32:38.913 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
01:32:38.914 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
01:32:39.094 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
01:32:40.843 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
01:32:46.225 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
01:32:48.888 [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@199f2854[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
01:32:48.889 [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@5c9cbc69[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
01:32:49.256 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999
01:32:50.257 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
01:32:50.259 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
01:32:50.260 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
01:32:50.277 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
01:32:50.290 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
01:32:50.292 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
01:32:50.447 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of b7985164-9f86-459f-836a-c089dd725d54
01:32:50.452 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->b7985164-9f86-459f-836a-c089dd725d54
01:32:50.453 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b7985164-9f86-459f-836a-c089dd725d54] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
01:32:50.454 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b7985164-9f86-459f-836a-c089dd725d54] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
01:32:50.455 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b7985164-9f86-459f-836a-c089dd725d54] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
01:32:50.456 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b7985164-9f86-459f-836a-c089dd725d54] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
01:32:50.457 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
01:32:50.750 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b7985164-9f86-459f-836a-c089dd725d54] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725730370833_139.224.212.27_62478
01:32:50.751 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b7985164-9f86-459f-836a-c089dd725d54] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
01:32:50.751 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b7985164-9f86-459f-836a-c089dd725d54] Notify connected event to listeners.
01:32:50.751 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b7985164-9f86-459f-836a-c089dd725d54] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x000001a7b05244a8
01:32:50.751 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
01:32:50.753 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-source with instance Instance{instanceId='null', ip='192.168.43.160', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:e569:34fc:11bc:aa9f:89af], preserved.register.source=SPRING_CLOUD}}
01:32:50.808 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.43.160:10005 register finished
01:32:52.093 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 25.711 seconds (process running for 26.653)
01:32:52.112 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
01:32:52.113 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
01:32:52.116 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source-dev.yml+DEFAULT_GROUP+cloud-2112
01:32:52.133 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source-dev.yml, group=DEFAULT_GROUP, cnt=1
01:32:52.133 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP
01:32:52.134 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source.yml+DEFAULT_GROUP+cloud-2112
01:32:52.135 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source.yml, group=DEFAULT_GROUP, cnt=1
01:32:52.135 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP
01:32:52.136 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-source+DEFAULT_GROUP+cloud-2112
01:32:52.136 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-source, group=DEFAULT_GROUP, cnt=1
01:32:52.137 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP
01:32:52.319 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:32:52.797 [RMI TCP Connection(2)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
01:33:24.250 [http-nio-10005-exec-1] INFO c.z.h.HikariDataSource - [<init>,80] - HikariCP 连接池 - Starting...
01:33:24.839 [http-nio-10005-exec-1] INFO c.z.h.HikariDataSource - [<init>,82] - HikariCP 连接池 - Start completed.
01:33:24.954 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
01:33:25.009 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
01:33:25.074 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
01:33:25.131 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
01:33:25.184 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
01:33:25.240 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
01:33:25.313 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
01:33:25.379 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
01:33:25.395 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:33:25.452 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
01:33:25.505 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
01:33:25.579 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
01:33:25.649 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
01:33:25.710 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
01:33:25.780 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
01:33:25.852 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
01:33:25.918 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
01:33:26.004 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
01:33:26.075 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
01:33:26.126 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
01:33:26.198 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
01:33:26.275 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
01:33:26.352 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
01:33:26.400 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
01:33:26.469 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
01:33:26.524 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
01:33:26.602 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
01:33:26.704 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
01:33:26.793 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
01:33:26.857 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
01:33:26.911 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
01:35:58.765 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:36:31.819 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:37:04.865 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:37:37.915 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://10.100.28.5:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://172.13.1.1:20800/api/registry, content=null]
01:38:20.815 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
01:38:20.854 [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]
01:38:20.854 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
01:38:20.854 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
01:38:20.855 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
01:38:20.856 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
01:38:20.856 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
01:38:20.872 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
01:38:20.872 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-source with instance: Instance{instanceId='null', ip='192.168.43.160', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
01:38:20.925 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
01:38:20.927 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
01:38:20.927 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
01:38:20.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
01:38:20.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
01:38:20.930 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
01:38:20.930 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
01:38:20.930 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
01:38:20.931 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
01:38:20.931 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
01:38:20.932 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
01:38:20.932 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
01:38:20.933 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->b7985164-9f86-459f-836a-c089dd725d54
01:38:20.933 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@79e5c867[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 109]
01:38:20.934 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
01:38:20.934 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@ed24278[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
01:38:20.934 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725730370833_139.224.212.27_62478
01:38:20.943 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@cff8e9[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 75]
01:38:20.945 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->b7985164-9f86-459f-836a-c089dd725d54
01:38:20.945 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
01:38:20.946 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
01:38:20.946 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
01:38:20.952 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
01:38:20.957 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
01:38:20.966 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
01:38:20.967 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
01:38:20.967 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
02:17:25.471 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
02:17:31.748 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
02:17:31.748 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
02:17:31.943 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
02:17:36.346 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
02:17:36.349 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
02:17:36.350 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
02:17:36.586 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
02:17:39.167 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
02:17:47.362 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
02:17:51.560 [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@4f6f6223[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
02:17:51.560 [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@c55b4d0[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
02:17:52.271 [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
02:17:53.289 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
02:17:53.290 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
02:17:53.291 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
02:17:53.305 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
02:17:53.319 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
02:17:53.320 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
02:17:53.472 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 9a286866-5887-4786-a83a-611488a70b69
02:17:53.479 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->9a286866-5887-4786-a83a-611488a70b69
02:17:53.481 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9a286866-5887-4786-a83a-611488a70b69] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
02:17:53.481 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9a286866-5887-4786-a83a-611488a70b69] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
02:17:53.483 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9a286866-5887-4786-a83a-611488a70b69] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
02:17:53.484 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9a286866-5887-4786-a83a-611488a70b69] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
02:17:53.485 [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}
02:17:53.681 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9a286866-5887-4786-a83a-611488a70b69] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725733074221_139.224.212.27_62504
02:17:53.682 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9a286866-5887-4786-a83a-611488a70b69] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
02:17:53.682 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9a286866-5887-4786-a83a-611488a70b69] Notify connected event to listeners.
02:17:53.682 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9a286866-5887-4786-a83a-611488a70b69] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$620/0x0000027781524ac0
02:17:53.682 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
02:17:53.685 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-source with instance Instance{instanceId='null', ip='192.168.43.160', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:e569:34fc:11bc:aa9f:89af], preserved.register.source=SPRING_CLOUD}}
02:17:53.747 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.43.160:10005 register finished
02:17:55.197 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 38.573 seconds (process running for 41.184)
02:17:55.217 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
02:17:55.217 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
02:17:55.220 [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
02:17:55.242 [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
02:17:55.242 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP
02:17:55.243 [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
02:17:55.244 [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
02:17:55.245 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP
02:17:55.246 [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
02:17:55.247 [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
02:17:55.247 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP
02:18:41.314 [http-nio-10005-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
02:18:42.227 [http-nio-10005-exec-1] INFO c.z.h.HikariDataSource - [<init>,80] - HikariCP 连接池 - Starting...
02:18:42.804 [http-nio-10005-exec-1] INFO c.z.h.HikariDataSource - [<init>,82] - HikariCP 连接池 - Start completed.
02:19:04.843 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:04.911 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:04.970 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:05.012 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:05.069 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:05.134 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:05.185 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:05.249 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:05.302 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:05.366 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:05.421 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:05.484 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:05.563 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:05.625 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:05.715 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:05.793 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:05.853 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:05.910 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:05.978 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:06.023 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:06.085 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:06.149 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:06.203 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:06.269 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:06.328 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:06.386 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:06.448 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:06.505 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:06.563 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:06.615 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:32.125 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:32.183 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:32.254 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:32.307 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:32.423 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:32.488 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:32.563 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:32.654 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:32.713 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:32.768 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:32.831 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:32.899 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:32.966 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:33.028 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:33.090 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:33.158 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:33.239 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:33.301 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:33.375 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:33.430 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:33.495 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:33.570 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:33.633 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:33.689 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:33.745 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:33.821 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:33.887 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:19:33.965 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:19:34.028 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:19:34.078 [http-nio-10005-exec-3] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:22:20.931 [http-nio-10005-exec-5] INFO o.a.c.h.Http11Processor - [log,175] - Error parsing HTTP request header
Note: further occurrences of HTTP request parsing errors will be logged at DEBUG level.
java.lang.IllegalArgumentException: Request header is too large
at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:774)
at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:442)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
at java.base/java.lang.Thread.run(Thread.java:842)
02:22:27.327 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
02:22:27.400 [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]
02:22:27.400 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
02:22:27.401 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
02:22:27.401 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
02:22:27.402 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
02:22:27.402 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
02:22:27.424 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
02:22:27.424 [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={}}
02:22:27.497 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
02:22:27.499 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
02:22:27.499 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
02:22:27.499 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
02:22:27.500 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
02:22:27.500 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
02:22:27.500 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
02:22:27.501 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
02:22:27.501 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
02:22:27.501 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
02:22:27.501 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
02:22:27.501 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
02:22:27.502 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->9a286866-5887-4786-a83a-611488a70b69
02:22:27.502 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@70788e16[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 91]
02:22:27.502 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
02:22:27.502 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@10124ea4[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
02:22:27.502 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725733074221_139.224.212.27_62504
02:22:27.508 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@58a6769b[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 63]
02:22:27.509 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->9a286866-5887-4786-a83a-611488a70b69
02:22:27.510 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
02:22:27.510 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
02:22:27.510 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
02:22:27.516 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
02:22:27.520 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
02:22:27.542 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
02:22:27.542 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
02:22:27.542 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
02:24:31.452 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
02:24:37.023 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
02:24:37.024 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
02:24:37.250 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
02:24:41.332 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
02:24:41.336 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
02:24:41.336 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
02:24:41.584 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
02:24:43.868 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
02:24:51.312 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
02:24:55.530 [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@2638500[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
02:24:55.531 [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@71268b8c[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
02:24:56.186 [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
02:24:57.201 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
02:24:57.202 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
02:24:57.205 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
02:24:57.222 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
02:24:57.232 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
02:24:57.232 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
02:24:57.381 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of daa7f7d8-b350-4f56-95f9-5765aab2620c
02:24:57.386 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->daa7f7d8-b350-4f56-95f9-5765aab2620c
02:24:57.386 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa7f7d8-b350-4f56-95f9-5765aab2620c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
02:24:57.387 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa7f7d8-b350-4f56-95f9-5765aab2620c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
02:24:57.388 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa7f7d8-b350-4f56-95f9-5765aab2620c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
02:24:57.389 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa7f7d8-b350-4f56-95f9-5765aab2620c] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
02:24:57.390 [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}
02:24:57.625 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa7f7d8-b350-4f56-95f9-5765aab2620c] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725733498161_139.224.212.27_62745
02:24:57.626 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa7f7d8-b350-4f56-95f9-5765aab2620c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
02:24:57.626 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa7f7d8-b350-4f56-95f9-5765aab2620c] Notify connected event to listeners.
02:24:57.627 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa7f7d8-b350-4f56-95f9-5765aab2620c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$620/0x00000274b9525380
02:24:57.627 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
02:24:57.630 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-source with instance Instance{instanceId='null', ip='192.168.43.160', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:e569:34fc:11bc:aa9f:89af], preserved.register.source=SPRING_CLOUD}}
02:24:57.725 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.43.160:10005 register finished
02:24:59.209 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 36.633 seconds (process running for 38.411)
02:24:59.237 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
02:24:59.238 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
02:24:59.242 [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
02:24:59.265 [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
02:24:59.266 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP
02:24:59.267 [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
02:24:59.268 [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
02:24:59.270 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP
02:24:59.271 [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
02:24:59.272 [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
02:24:59.273 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP
02:25:07.615 [http-nio-10005-exec-2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
02:25:08.406 [http-nio-10005-exec-2] INFO c.z.h.HikariDataSource - [<init>,80] - HikariCP 连接池 - Starting...
02:25:09.083 [http-nio-10005-exec-2] INFO c.z.h.HikariDataSource - [<init>,82] - HikariCP 连接池 - Start completed.
02:25:09.258 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:25:09.331 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:25:09.406 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:25:09.491 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:25:09.542 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:25:09.587 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:25:09.639 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:25:09.689 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:25:09.749 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:25:09.808 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:25:09.866 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:25:09.909 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:25:09.969 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:25:10.014 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:25:10.069 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:25:10.139 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:25:10.209 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:25:10.272 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:25:10.317 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:25:10.384 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:25:10.457 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:25:10.504 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:25:10.565 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:25:10.624 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:25:10.687 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:25:10.747 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:25:10.824 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:25:10.883 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
02:25:10.945 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
02:25:11.019 [http-nio-10005-exec-2] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
02:28:42.579 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
02:28:42.639 [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]
02:28:42.641 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
02:28:42.642 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
02:28:42.643 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
02:28:42.643 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
02:28:42.644 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
02:28:42.668 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
02:28:42.669 [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={}}
02:28:42.721 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
02:28:42.723 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
02:28:42.723 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
02:28:42.725 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
02:28:42.726 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
02:28:42.726 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
02:28:42.726 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
02:28:42.726 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
02:28:42.726 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
02:28:42.727 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
02:28:42.727 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
02:28:42.727 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
02:28:42.728 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->daa7f7d8-b350-4f56-95f9-5765aab2620c
02:28:42.728 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@555ed540[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 74]
02:28:42.728 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
02:28:42.729 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5f1ce823[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
02:28:42.729 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725733498161_139.224.212.27_62745
02:28:42.736 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@e2d5ebf[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 55]
02:28:42.736 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->daa7f7d8-b350-4f56-95f9-5765aab2620c
02:28:42.736 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
02:28:42.738 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
02:28:42.759 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
02:28:42.767 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
02:28:42.773 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
02:28:42.787 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
02:28:42.788 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
02:28:42.788 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
09:36:59.027 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
09:37:01.674 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:37:01.674 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
09:37:01.747 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:37:23.311 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
09:37:23.314 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
09:39:02.270 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
09:39:04.778 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:39:04.779 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
09:39:04.843 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:39:08.193 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
09:39:08.194 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
09:39:08.195 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:39:08.275 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
09:39:09.278 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:39:15.109 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
09:39:17.388 [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@6767f1c4[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
09:39:17.388 [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@199f2854[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
09:39:17.641 [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
09:39:18.636 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
09:39:18.637 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
09:39:18.637 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
09:39:18.641 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
09:39:18.645 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:39:18.646 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:39:18.774 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f863d73c-fb1a-43da-a3a5-93aee71a76a4
09:39:18.776 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->f863d73c-fb1a-43da-a3a5-93aee71a76a4
09:39:18.776 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f863d73c-fb1a-43da-a3a5-93aee71a76a4] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:39:18.776 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f863d73c-fb1a-43da-a3a5-93aee71a76a4] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:39:18.777 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f863d73c-fb1a-43da-a3a5-93aee71a76a4] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:39:18.777 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f863d73c-fb1a-43da-a3a5-93aee71a76a4] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
09:39:18.778 [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}
09:39:18.944 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f863d73c-fb1a-43da-a3a5-93aee71a76a4] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725759559022_139.224.212.27_62087
09:39:18.944 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f863d73c-fb1a-43da-a3a5-93aee71a76a4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:39:18.944 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f863d73c-fb1a-43da-a3a5-93aee71a76a4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000016525525380
09:39:18.944 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f863d73c-fb1a-43da-a3a5-93aee71a76a4] Notify connected event to listeners.
09:39:18.945 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:39:18.946 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-source with instance Instance{instanceId='null', ip='192.168.43.160', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:e569:34fc:11bc:aa9f:89af], preserved.register.source=SPRING_CLOUD}}
09:39:18.989 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.43.160:10005 register finished
09:39:20.148 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 23.125 seconds (process running for 23.98)
09:39:20.158 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
09:39:20.158 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
09:39:20.159 [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
09:39:20.168 [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
09:39:20.168 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP
09:39:20.169 [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
09:39:20.169 [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
09:39:20.169 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP
09:39:20.170 [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
09:39:20.170 [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
09:39:20.170 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP
09:39:20.325 [RMI TCP Connection(5)-172.16.0.7] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:39:25.730 [http-nio-10005-exec-1] INFO c.z.h.HikariDataSource - [<init>,80] - HikariCP 连接池 - Starting...
09:39:26.270 [http-nio-10005-exec-1] INFO c.z.h.HikariDataSource - [<init>,82] - HikariCP 连接池 - Start completed.
09:39:26.392 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:39:26.464 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:39:26.546 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:39:26.714 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:39:26.776 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:39:26.870 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:39:26.938 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:39:26.998 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:39:27.067 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:39:27.120 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:39:27.209 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:39:27.260 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:39:27.353 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:39:27.427 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:39:27.509 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:39:27.579 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:39:27.640 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:39:27.705 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:39:27.769 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:39:27.828 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:39:27.898 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:39:27.975 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:39:28.037 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:39:28.124 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:39:28.180 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:39:28.365 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:39:28.437 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:39:28.505 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:39:28.585 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:39:28.653 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:41:18.629 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:41:34.073 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:41:43.937 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:41:58.114 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:42:04.420 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:42:17.533 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:42:17.709 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:42:17.834 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:42:17.988 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:42:18.113 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:42:18.235 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:42:18.367 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:42:18.495 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:42:18.647 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:42:18.793 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:42:18.913 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:42:19.039 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:42:19.162 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:42:19.291 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:42:19.428 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:42:19.543 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:42:19.678 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:42:19.859 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:42:20.030 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:42:20.174 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:42:20.314 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:42:20.449 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:42:20.609 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:42:20.744 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:42:20.893 [http-nio-10005-exec-5] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:42:21.030 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
09:42:21.113 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://172.16.0.7:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null]
09:42:21.113 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
09:42:21.115 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
09:42:21.116 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
09:42:21.130 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
09:42:21.130 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
09:42:21.142 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
09:42:21.146 [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={}}
09:42:21.270 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
09:42:21.273 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
09:42:21.275 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
09:42:21.276 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
09:42:21.278 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
09:42:21.278 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
09:42:21.278 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
09:42:21.278 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
09:42:21.280 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
09:42:21.280 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
09:42:21.281 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
09:42:21.284 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
09:42:21.284 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->f863d73c-fb1a-43da-a3a5-93aee71a76a4
09:42:21.287 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@16f32a65[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 50]
09:42:21.288 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
09:42:21.288 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6e0eda4f[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
09:42:21.288 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725759559022_139.224.212.27_62087
09:42:21.294 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@25db2b7e[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 37]
09:42:21.294 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->f863d73c-fb1a-43da-a3a5-93aee71a76a4
09:42:21.294 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
09:42:21.294 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
09:42:21.294 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
09:42:21.300 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
09:42:21.307 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
09:42:21.330 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
09:42:21.330 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
09:42:21.331 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
09:42:42.441 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
09:42:45.009 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:42:45.009 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
09:42:45.075 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:42:48.878 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
09:42:48.879 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
09:42:48.880 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:42:48.959 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
09:42:49.924 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:42:55.995 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
09:42:58.447 [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@3d61b36a[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
09:42:58.447 [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@38dd3252[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
09:42:58.703 [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
09:42:59.698 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
09:42:59.698 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
09:42:59.699 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
09:42:59.705 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
09:42:59.710 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:42:59.710 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:42:59.856 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of db46702c-307b-44d8-8b79-ee18614e0a60
09:42:59.858 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->db46702c-307b-44d8-8b79-ee18614e0a60
09:42:59.858 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db46702c-307b-44d8-8b79-ee18614e0a60] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:42:59.858 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db46702c-307b-44d8-8b79-ee18614e0a60] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:42:59.858 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db46702c-307b-44d8-8b79-ee18614e0a60] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:42:59.859 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db46702c-307b-44d8-8b79-ee18614e0a60] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
09:42:59.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}
09:43:01.045 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db46702c-307b-44d8-8b79-ee18614e0a60] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725759781131_139.224.212.27_62804
09:43:01.045 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db46702c-307b-44d8-8b79-ee18614e0a60] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:43:01.045 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db46702c-307b-44d8-8b79-ee18614e0a60] Notify connected event to listeners.
09:43:01.046 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [db46702c-307b-44d8-8b79-ee18614e0a60] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000023ac75246a0
09:43:01.046 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:43:01.047 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-source with instance Instance{instanceId='null', ip='192.168.43.160', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:e569:34fc:11bc:aa9f:89af], preserved.register.source=SPRING_CLOUD}}
09:43:01.107 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.43.160:10005 register finished
09:43:02.254 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 25.005 seconds (process running for 25.799)
09:43:02.265 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
09:43:02.265 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
09:43:02.267 [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
09:43:02.277 [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
09:43:02.277 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP
09:43:02.277 [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
09:43:02.278 [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
09:43:02.278 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP
09:43:02.278 [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
09:43:02.279 [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
09:43:02.279 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP
09:43:02.514 [RMI TCP Connection(2)-172.16.0.7] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:43:12.057 [http-nio-10005-exec-1] INFO c.z.h.HikariDataSource - [<init>,80] - HikariCP 连接池 - Starting...
09:43:12.735 [http-nio-10005-exec-1] INFO c.z.h.HikariDataSource - [<init>,82] - HikariCP 连接池 - Start completed.
09:43:12.872 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:43:12.924 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:43:12.998 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:43:13.064 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:43:13.117 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:43:13.168 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:43:13.217 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:43:13.279 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:43:13.364 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:43:13.419 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:43:13.473 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:43:13.523 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:43:13.581 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:43:13.648 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:43:13.714 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:43:13.780 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:43:13.869 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:43:13.917 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:43:13.972 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:43:14.028 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:43:14.108 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:43:14.160 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:43:14.223 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:43:14.303 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:43:14.353 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:43:14.418 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:43:14.483 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:43:14.526 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:43:14.581 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:43:14.654 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:44:07.341 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
09:44:07.394 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://172.16.0.7:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null]
09:44:07.394 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
09:44:07.394 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
09:44:07.394 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
09:44:07.395 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
09:44:07.395 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
09:44:07.403 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
09:44:07.403 [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={}}
09:44:07.456 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
09:44:07.458 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
09:44:07.458 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
09:44:07.458 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
09:44:07.458 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
09:44:07.458 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
09:44:07.458 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
09:44:07.458 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
09:44:07.458 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
09:44:07.459 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
09:44:07.459 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
09:44:07.459 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
09:44:07.459 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->db46702c-307b-44d8-8b79-ee18614e0a60
09:44:07.460 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@580b1ece[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 22]
09:44:07.460 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
09:44:07.461 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@e59e7ae[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
09:44:07.461 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725759781131_139.224.212.27_62804
09:44:07.464 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@62c7026a[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 25]
09:44:07.465 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->db46702c-307b-44d8-8b79-ee18614e0a60
09:44:07.465 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
09:44:07.465 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
09:44:07.466 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
09:44:07.469 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
09:44:07.471 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
09:44:07.475 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
09:44:07.476 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
09:44:07.476 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
09:44:54.801 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
09:44:57.287 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:44:57.288 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
09:44:57.361 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:45:00.595 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
09:45:00.596 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
09:45:00.596 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:45:00.686 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
09:45:01.669 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:45:07.065 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
09:45:09.439 [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@6236d83a[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
09:45:09.439 [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@34dd9ae1[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
09:45:09.723 [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
09:45:10.714 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
09:45:10.714 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
09:45:10.715 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
09:45:10.720 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
09:45:10.724 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:45:10.725 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:45:10.861 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 6b0d50dc-e299-4519-a589-af61b0d1e1cd
09:45:10.863 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->6b0d50dc-e299-4519-a589-af61b0d1e1cd
09:45:10.863 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b0d50dc-e299-4519-a589-af61b0d1e1cd] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
09:45:10.864 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b0d50dc-e299-4519-a589-af61b0d1e1cd] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
09:45:10.864 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b0d50dc-e299-4519-a589-af61b0d1e1cd] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
09:45:10.865 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b0d50dc-e299-4519-a589-af61b0d1e1cd] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
09:45:10.865 [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}
09:45:11.078 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b0d50dc-e299-4519-a589-af61b0d1e1cd] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725759911156_139.224.212.27_63226
09:45:11.078 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b0d50dc-e299-4519-a589-af61b0d1e1cd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
09:45:11.078 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b0d50dc-e299-4519-a589-af61b0d1e1cd] Notify connected event to listeners.
09:45:11.078 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6b0d50dc-e299-4519-a589-af61b0d1e1cd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x000001b6a35244a8
09:45:11.078 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
09:45:11.079 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-source with instance Instance{instanceId='null', ip='192.168.43.160', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:e569:34fc:11bc:aa9f:89af], preserved.register.source=SPRING_CLOUD}}
09:45:11.124 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.43.160:10005 register finished
09:45:12.297 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 22.621 seconds (process running for 23.36)
09:45:12.307 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
09:45:12.307 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
09:45:12.309 [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
09:45:12.319 [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
09:45:12.320 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP
09:45:12.320 [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
09:45:12.320 [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
09:45:12.320 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP
09:45:12.321 [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
09:45:12.321 [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
09:45:12.321 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP
09:45:12.485 [RMI TCP Connection(3)-172.16.0.7] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:45:18.683 [http-nio-10005-exec-1] INFO c.z.h.HikariDataSource - [<init>,80] - HikariCP 连接池 - Starting...
09:45:19.267 [http-nio-10005-exec-1] INFO c.z.h.HikariDataSource - [<init>,82] - HikariCP 连接池 - Start completed.
09:45:19.411 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:45:19.481 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:45:19.558 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:45:19.632 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:45:19.709 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:45:19.797 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:45:19.844 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:45:19.909 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:45:19.963 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:45:20.022 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:45:20.077 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:45:20.133 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:45:20.211 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:45:20.267 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:45:20.327 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:45:20.408 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:45:20.510 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:45:20.608 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:45:20.658 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:45:20.732 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:45:20.823 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:45:20.888 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:45:20.952 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:45:21.022 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:45:21.074 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:45:21.157 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:45:21.245 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:45:21.332 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:主键自增
09:45:21.424 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:
09:45:21.488 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,73] - 字段备注:用户名
09:59:58.612 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
09:59:58.661 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-source', registryValue='http://172.16.0.7:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null]
09:59:58.662 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
09:59:58.662 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
09:59:58.662 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
09:59:58.662 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
09:59:58.663 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
09:59:58.672 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
09:59:58.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={}}
09:59:58.868 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
09:59:58.869 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
09:59:58.869 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
09:59:58.870 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
09:59:58.870 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
09:59:58.870 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
09:59:58.870 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
09:59:58.870 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
09:59:58.870 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
09:59:58.870 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
09:59:58.870 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
09:59:58.871 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
09:59:58.871 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->6b0d50dc-e299-4519-a589-af61b0d1e1cd
09:59:58.871 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@793f65cc[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 295]
09:59:58.871 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
09:59:58.871 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@10bb683d[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
09:59:58.872 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725759911156_139.224.212.27_63226
09:59:58.876 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1c78a653[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 183]
09:59:58.876 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->6b0d50dc-e299-4519-a589-af61b0d1e1cd
09:59:58.877 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
09:59:58.878 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
09:59:58.878 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
09:59:58.881 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
09:59:58.883 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
09:59:58.889 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
09:59:58.889 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
09:59:58.889 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
10:00:15.020 [main] INFO c.m.c.e.MuYuEtlApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
10:00:17.386 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
10:00:17.386 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
10:00:17.460 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
10:00:20.801 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
10:00:20.801 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
10:00:20.803 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
10:00:20.880 [main] INFO c.m.c.d.MyMetaObjectHandler - [<init>,17] - 元对象字段填充控制器 ------- 加载完成
10:00:21.823 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
10:00:26.076 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
10:00:28.326 [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@6900954e[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
10:00:28.328 [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@19d8d11f[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
10:00:28.588 [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
10:00:29.592 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
10:00:29.593 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
10:00:29.593 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
10:00:29.597 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
10:00:29.602 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
10:00:29.602 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
10:00:29.770 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 3e9cd069-a5eb-4599-b6ee-de8b00d4286c
10:00:29.772 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->3e9cd069-a5eb-4599-b6ee-de8b00d4286c
10:00:29.772 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e9cd069-a5eb-4599-b6ee-de8b00d4286c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
10:00:29.773 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e9cd069-a5eb-4599-b6ee-de8b00d4286c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
10:00:29.773 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e9cd069-a5eb-4599-b6ee-de8b00d4286c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
10:00:29.773 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e9cd069-a5eb-4599-b6ee-de8b00d4286c] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
10:00:29.774 [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}
10:00:30.002 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e9cd069-a5eb-4599-b6ee-de8b00d4286c] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725760830081_139.224.212.27_62574
10:00:30.002 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e9cd069-a5eb-4599-b6ee-de8b00d4286c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
10:00:30.002 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e9cd069-a5eb-4599-b6ee-de8b00d4286c] Notify connected event to listeners.
10:00:30.002 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e9cd069-a5eb-4599-b6ee-de8b00d4286c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x000001550a524078
10:00:30.002 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
10:00:30.003 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-source with instance Instance{instanceId='null', ip='192.168.43.160', port=10005, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:e569:34fc:11bc:aa9f:89af], preserved.register.source=SPRING_CLOUD}}
10:00:30.054 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-source 192.168.43.160:10005 register finished
10:00:31.233 [main] INFO c.m.c.e.MuYuEtlApplication - [logStarted,56] - Started MuYuEtlApplication in 21.057 seconds (process running for 21.804)
10:00:31.244 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
10:00:31.244 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
10:00:31.246 [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
10:00:31.253 [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
10:00:31.253 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source-dev.yml, group=DEFAULT_GROUP
10:00:31.254 [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
10:00:31.254 [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
10:00:31.254 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source.yml, group=DEFAULT_GROUP
10:00:31.254 [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
10:00:31.255 [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
10:00:31.255 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-source, group=DEFAULT_GROUP
10:00:31.582 [RMI TCP Connection(2)-172.16.0.7] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
10:00:38.569 [http-nio-10005-exec-1] INFO c.z.h.HikariDataSource - [<init>,80] - HikariCP 连接池 - Starting...
10:00:39.113 [http-nio-10005-exec-1] INFO c.z.h.HikariDataSource - [<init>,82] - HikariCP 连接池 - Start completed.
10:00:39.258 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,74] - 字段备注:主键自增
10:00:39.321 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,74] - 字段备注:
10:00:39.387 [http-nio-10005-exec-1] INFO c.m.c.e.s.i.DataValueServiceImpl - [findTableValue,74] - 字段备注:用户名