diff --git a/cloud-property-server/src/main/java/com/muyu/server/service/impl/DataRunNameServiceImpl.java b/cloud-property-server/src/main/java/com/muyu/server/service/impl/DataRunNameServiceImpl.java index cad2674..298747a 100644 --- a/cloud-property-server/src/main/java/com/muyu/server/service/impl/DataRunNameServiceImpl.java +++ b/cloud-property-server/src/main/java/com/muyu/server/service/impl/DataRunNameServiceImpl.java @@ -248,10 +248,9 @@ public class DataRunNameServiceImpl implements DataRunNameService { * @param dataDame * @param tableName * @param field - * @param id * @return */ - private List tableFySelect(String dataDame, String tableName, String field, Integer id) { + private String tableFySelect(String dataDame, String tableName, String field) { // 从连接池获取数据库连接 DruidDataSource conn = JdbcHelper.getConnRs(dataDame); @@ -259,21 +258,21 @@ public class DataRunNameServiceImpl implements DataRunNameService { try { DruidPooledConnection connection = conn.getConnection(); // 准备SQL查询语句 - List fieArrayList = new ArrayList<>(); - PreparedStatement ps = connection.prepareStatement("select " +id+","+ field + " FROM " + tableName); + + PreparedStatement ps = connection.prepareStatement("select " + field + " FROM " + tableName+" LIMIT 1"); ResultSet resultSet = ps.executeQuery(); while (resultSet.next()) { - int ids = resultSet.getInt(id); String fields = resultSet.getString(field); // 返回包含数据值的列表 - fieArrayList.add(new TableFie(id,fields)); + return fields; } - return fieArrayList; + // 释放数据库连接 } catch (SQLException e) { // 如果发生SQL异常,抛出运行时异常 throw new RuntimeException(e); } + return null; } /** @@ -300,7 +299,7 @@ public class DataRunNameServiceImpl implements DataRunNameService { List list = new ArrayList<>(); try { - PreparedStatement preparedStatement = conn.prepareStatement("select * FROM "+tableName); + PreparedStatement preparedStatement = conn.prepareStatement("select * FROM "+tableName +" LIMIT 1"); this.getDataResult(conn, list, preparedStatement); JdbcHelper.close(conn,null,null); @@ -470,12 +469,8 @@ public class DataRunNameServiceImpl implements DataRunNameService { List tableValue = this.findTableValue(String.valueOf(dataName.getId()), tableNames.getName()); tableFieList.forEach(tableFy -> { //查询字段映射信息 - List str = this.tableFySelect(dataName.getName(), tableNames.getName(), tableFy.getField(),tableFy.getId()); - str.forEach(s -> { - if (s.getId()==tableFy.getId()){ - tableFy.setDataValue(s.getField()); - } - }); + String str = this.tableFySelect(dataName.getName(), tableNames.getName(), tableFy.getField()); + tableFy.setDataValue(str); log.info("字段数据对象:{}", tableFy); diff --git a/logs/cloud-property/error.log b/logs/cloud-property/error.log index d139335..690e72c 100644 --- a/logs/cloud-property/error.log +++ b/logs/cloud-property/error.log @@ -62,3 +62,866 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:842) +20:57:35.598 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.lang.InterruptedException +20:57:35.707 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:SHUTDOWN +20:57:35.816 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:SHUTDOWN +20:57:35.924 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:SHUTDOWN +20:57:35.929 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForInstances,63] - Redo instance operation REMOVE for DEFAULT_GROUP@@cloud-property failed. +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:SHUTDOWN + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doDeregisterService(NamingGrpcClientProxy.java:308) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstance(RedoScheduledTask.java:85) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstances(RedoScheduledTask.java:61) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:51) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +21:00:46.491 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6da0a4406349ff53cf6ff52daa04bf51, Client-RequestTS=1725627643480, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 640900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3b4b5ec3[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3d7f7d4c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a67ff05, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@50ddcfe2}}}]] +21:00:46.493 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 640900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3b4b5ec3[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3d7f7d4c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a67ff05, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@50ddcfe2}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 640900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3b4b5ec3[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3d7f7d4c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a67ff05, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@50ddcfe2}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 10 common frames omitted +21:00:56.433 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.0.8 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 39 milliseconds, 515700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@74c8a5f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3d7f7d4c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a67ff05, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@50ddcfe2}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +21:00:56.439 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.0.8 ,port 9848 is available , error ={} +java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception + at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) + at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) + at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) + at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) + at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) + at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) + at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) + at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) + at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) + at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) + at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) + ... 3 common frames omitted +Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Software caused connection abort: no further information: /21.12.0.8:9848 +Caused by: java.net.SocketException: Software caused connection abort: no further information + at java.base/sun.nio.ch.Net.pollConnect(Native Method) + at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) + at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) + at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) + at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) + at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) + at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) + at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) + at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) + at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) + at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) + at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) + at java.base/java.lang.Thread.run(Thread.java:842) +21:05:40.579 [http-nio-9701-exec-1] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/dataRunName/tableStructureShow',发生未知异常. +java.lang.RuntimeException: java.sql.SQLException: 你的主机中的软件中止了一个已建立的连接。 + at com.muyu.server.service.impl.DataRunNameServiceImpl.findTableValue(DataRunNameServiceImpl.java:308) + at com.muyu.server.service.impl.DataRunNameServiceImpl.tableStructureShow(DataRunNameServiceImpl.java:470) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) + at com.muyu.server.service.impl.DataRunNameServiceImpl$$SpringCGLIB$$0.tableStructureShow() + at com.muyu.server.controller.DataRunNameController.tableStructureShow(DataRunNameController.java:72) + 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.SQLException: 你的主机中的软件中止了一个已建立的连接。 + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:130) + 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.alibaba.druid.pool.DruidPooledPreparedStatement.executeQuery(DruidPooledPreparedStatement.java:213) + at com.muyu.server.service.impl.DataRunNameServiceImpl.getDataResult(DataRunNameServiceImpl.java:321) + at com.muyu.server.service.impl.DataRunNameServiceImpl.findTableValue(DataRunNameServiceImpl.java:305) + ... 69 common frames omitted +Caused by: java.net.SocketException: 你的主机中的软件中止了一个已建立的连接。 + at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:330) + 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/sun.security.ssl.SSLSocketInputRecord.read(SSLSocketInputRecord.java:484) + at java.base/sun.security.ssl.SSLSocketInputRecord.readFully(SSLSocketInputRecord.java:467) + at java.base/sun.security.ssl.SSLSocketInputRecord.decodeInputRecord(SSLSocketInputRecord.java:243) + at java.base/sun.security.ssl.SSLSocketInputRecord.decode(SSLSocketInputRecord.java:181) + at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:111) + at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1509) + at java.base/sun.security.ssl.SSLSocketImpl.readApplicationRecord(SSLSocketImpl.java:1480) + at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1065) + at java.base/java.io.FilterInputStream.read(FilterInputStream.java:132) + at com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64) + at com.mysql.cj.protocol.a.SimplePacketReader.readMessageLocal(SimplePacketReader.java:137) + at com.mysql.cj.protocol.a.SimplePacketReader.readMessage(SimplePacketReader.java:102) + at com.mysql.cj.protocol.a.SimplePacketReader.readMessage(SimplePacketReader.java:45) + at com.mysql.cj.protocol.a.TimeTrackingPacketReader.readMessage(TimeTrackingPacketReader.java:62) + at com.mysql.cj.protocol.a.TimeTrackingPacketReader.readMessage(TimeTrackingPacketReader.java:41) + at com.mysql.cj.protocol.a.MultiPacketReader.readMessage(MultiPacketReader.java:65) + at com.mysql.cj.protocol.a.MultiPacketReader.readMessage(MultiPacketReader.java:44) + at com.mysql.cj.protocol.a.ResultsetRowReader.read(ResultsetRowReader.java:75) + at com.mysql.cj.protocol.a.ResultsetRowReader.read(ResultsetRowReader.java:42) + at com.mysql.cj.protocol.a.NativeProtocol.read(NativeProtocol.java:1648) + at com.mysql.cj.protocol.a.TextResultsetReader.read(TextResultsetReader.java:86) + at com.mysql.cj.protocol.a.TextResultsetReader.read(TextResultsetReader.java:48) + at com.mysql.cj.protocol.a.NativeProtocol.read(NativeProtocol.java:1661) + at com.mysql.cj.protocol.a.NativeProtocol.readAllResults(NativeProtocol.java:1713) + at com.mysql.cj.protocol.a.NativeProtocol.sendQueryPacket(NativeProtocol.java:1063) + at com.mysql.cj.NativeSession.execSQL(NativeSession.java:660) + at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:889) + ... 73 common frames omitted +21:05:40.673 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a59969ccd122ffa475210f22eb2d7b40, Client-RequestTS=1725627940572, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +21:05:40.782 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a59969ccd122ffa475210f22eb2d7b40, Client-RequestTS=1725627940572, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +21:05:40.902 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a59969ccd122ffa475210f22eb2d7b40, Client-RequestTS=1725627940572, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +21:05:41.026 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a59969ccd122ffa475210f22eb2d7b40, Client-RequestTS=1725627940572, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +21:05:41.027 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +21:05:43.587 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.0.8 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 805700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7c818762[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3d7f7d4c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a67ff05, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@50ddcfe2}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +21:05:43.588 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.0.8 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 825900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@10f5e480[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3d7f7d4c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a67ff05, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@50ddcfe2}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +21:05:46.793 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.0.8 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 861800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@442cc7a0[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3d7f7d4c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a67ff05, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@50ddcfe2}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +21:05:46.794 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.0.8 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 855200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6f68427b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3d7f7d4c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a67ff05, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@50ddcfe2}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +21:05:50.129 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.0.8 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 677500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3de90dbb[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3d7f7d4c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a67ff05, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@50ddcfe2}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +21:05:50.129 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.0.8 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 324400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@12f88051[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3d7f7d4c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a67ff05, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@50ddcfe2}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +21:05:53.554 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.0.8 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 139000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4527bf9b[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3d7f7d4c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a67ff05, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@50ddcfe2}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +21:05:53.554 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.0.8 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 137400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@60850410[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3d7f7d4c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a67ff05, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@50ddcfe2}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +21:05:57.067 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.0.8 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 947500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@ecbdd69[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3d7f7d4c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a67ff05, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@50ddcfe2}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +21:05:57.067 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.0.8 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 929100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@591abf69[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3d7f7d4c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a67ff05, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@50ddcfe2}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +21:06:00.693 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.0.8 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 222100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4e5ea2e2[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3d7f7d4c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a67ff05, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@50ddcfe2}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +21:06:00.693 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.0.8 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 719400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@da1a54[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3d7f7d4c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a67ff05, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@50ddcfe2}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +21:06:04.411 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.0.8 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 339100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@60aa3f2b[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3d7f7d4c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a67ff05, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@50ddcfe2}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +21:06:04.411 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.0.8 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 296700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7a2b96e9[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3d7f7d4c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a67ff05, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@50ddcfe2}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +21:14:32.993 [http-nio-9701-exec-1] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/dataRunName/tableStructureShow',发生未知异常. +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 '1' at line 1 + at com.muyu.server.service.impl.DataRunNameServiceImpl.findTableValue(DataRunNameServiceImpl.java:308) + at com.muyu.server.service.impl.DataRunNameServiceImpl.tableStructureShow(DataRunNameServiceImpl.java:470) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) + at com.muyu.server.service.impl.DataRunNameServiceImpl$$SpringCGLIB$$0.tableStructureShow() + at com.muyu.server.controller.DataRunNameController.tableStructureShow(DataRunNameController.java:72) + 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 '1' 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.alibaba.druid.pool.DruidPooledPreparedStatement.executeQuery(DruidPooledPreparedStatement.java:213) + at com.muyu.server.service.impl.DataRunNameServiceImpl.getDataResult(DataRunNameServiceImpl.java:321) + at com.muyu.server.service.impl.DataRunNameServiceImpl.findTableValue(DataRunNameServiceImpl.java:305) + ... 69 common frames omitted +21:16:27.867 [http-nio-9701-exec-1] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/dataRunName/tableStructureShow',发生未知异常. +java.lang.RuntimeException: java.sql.SQLException: Column Index out of range, 2,093,629,925 > 2. + at com.muyu.server.service.impl.DataRunNameServiceImpl.tableFySelect(DataRunNameServiceImpl.java:275) + at com.muyu.server.service.impl.DataRunNameServiceImpl.lambda$tableStructureShow$10(DataRunNameServiceImpl.java:473) + at java.base/java.lang.Iterable.forEach(Iterable.java:75) + at com.muyu.server.service.impl.DataRunNameServiceImpl.tableStructureShow(DataRunNameServiceImpl.java:471) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) + at com.muyu.server.service.impl.DataRunNameServiceImpl$$SpringCGLIB$$0.tableStructureShow() + at com.muyu.server.controller.DataRunNameController.tableStructureShow(DataRunNameController.java:72) + 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.SQLException: Column Index out of range, 2,093,629,925 > 2. + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:130) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:98) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:90) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:64) + at com.mysql.cj.jdbc.result.ResultSetImpl.checkColumnBounds(ResultSetImpl.java:505) + at com.mysql.cj.jdbc.result.ResultSetImpl.getObject(ResultSetImpl.java:1260) + at com.mysql.cj.jdbc.result.ResultSetImpl.getInt(ResultSetImpl.java:826) + at com.alibaba.druid.pool.DruidPooledResultSet.getInt(DruidPooledResultSet.java:134) + at com.muyu.server.service.impl.DataRunNameServiceImpl.tableFySelect(DataRunNameServiceImpl.java:266) + ... 71 common frames omitted +21:22:25.479 [nacos-grpc-client-executor-21.12.0.8-17] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725628869516_21.12.0.11_62721]Request stream onCompleted, switch server +21:22:25.482 [nacos-grpc-client-executor-21.12.0.8-32] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725628853414_21.12.0.11_62670]Request stream onCompleted, switch server +21:23:27.531 [http-nio-9701-exec-1] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/dataRunName/tableStructureShow',发生未知异常. +java.lang.RuntimeException: java.sql.SQLException: Column Index out of range, 2,093,629,925 > 2. + at com.muyu.server.service.impl.DataRunNameServiceImpl.tableFySelect(DataRunNameServiceImpl.java:275) + at com.muyu.server.service.impl.DataRunNameServiceImpl.lambda$tableStructureShow$10(DataRunNameServiceImpl.java:473) + at java.base/java.lang.Iterable.forEach(Iterable.java:75) + at com.muyu.server.service.impl.DataRunNameServiceImpl.tableStructureShow(DataRunNameServiceImpl.java:471) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) + at com.muyu.server.service.impl.DataRunNameServiceImpl$$SpringCGLIB$$0.tableStructureShow() + at com.muyu.server.controller.DataRunNameController.tableStructureShow(DataRunNameController.java:72) + 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.SQLException: Column Index out of range, 2,093,629,925 > 2. + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:130) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:98) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:90) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:64) + at com.mysql.cj.jdbc.result.ResultSetImpl.checkColumnBounds(ResultSetImpl.java:505) + at com.mysql.cj.jdbc.result.ResultSetImpl.getObject(ResultSetImpl.java:1260) + at com.mysql.cj.jdbc.result.ResultSetImpl.getInt(ResultSetImpl.java:826) + at com.alibaba.druid.pool.DruidPooledResultSet.getInt(DruidPooledResultSet.java:134) + at com.muyu.server.service.impl.DataRunNameServiceImpl.tableFySelect(DataRunNameServiceImpl.java:266) + ... 71 common frames omitted +21:26:19.955 [nacos-grpc-client-executor-21.12.0.8-26] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725629075703_21.12.0.11_63014]Request stream onCompleted, switch server +21:26:19.956 [nacos-grpc-client-executor-21.12.0.8-10] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1725629087553_21.12.0.11_63041]Request stream onCompleted, switch server +21:26:20.037 [http-nio-9701-exec-1] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/dataRunName/tableStructureShow',发生未知异常. +java.lang.RuntimeException: java.sql.SQLException: Column Index out of range, 2,093,629,925 > 2. + at com.muyu.server.service.impl.DataRunNameServiceImpl.tableFySelect(DataRunNameServiceImpl.java:275) + at com.muyu.server.service.impl.DataRunNameServiceImpl.lambda$tableStructureShow$10(DataRunNameServiceImpl.java:473) + at java.base/java.lang.Iterable.forEach(Iterable.java:75) + at com.muyu.server.service.impl.DataRunNameServiceImpl.tableStructureShow(DataRunNameServiceImpl.java:471) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) + at com.muyu.server.service.impl.DataRunNameServiceImpl$$SpringCGLIB$$0.tableStructureShow() + at com.muyu.server.controller.DataRunNameController.tableStructureShow(DataRunNameController.java:72) + 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.SQLException: Column Index out of range, 2,093,629,925 > 2. + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:130) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:98) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:90) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:64) + at com.mysql.cj.jdbc.result.ResultSetImpl.checkColumnBounds(ResultSetImpl.java:505) + at com.mysql.cj.jdbc.result.ResultSetImpl.getObject(ResultSetImpl.java:1260) + at com.mysql.cj.jdbc.result.ResultSetImpl.getInt(ResultSetImpl.java:826) + at com.alibaba.druid.pool.DruidPooledResultSet.getInt(DruidPooledResultSet.java:134) + at com.muyu.server.service.impl.DataRunNameServiceImpl.tableFySelect(DataRunNameServiceImpl.java:266) + ... 71 common frames omitted +21:26:20.375 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +21:26:20.481 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +21:26:20.589 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +21:26:20.689 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 21.12.0.8 ,port 9848 is available , error ={} +java.lang.InterruptedException: null + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:460) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +21:28:10.350 [http-nio-9701-exec-1] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/dataRunName/tableStructureShow',发生未知异常. +java.lang.RuntimeException: java.sql.SQLException: Column Index out of range, 2,093,629,925 > 1. + at com.muyu.server.service.impl.DataRunNameServiceImpl.tableFySelect(DataRunNameServiceImpl.java:275) + at com.muyu.server.service.impl.DataRunNameServiceImpl.lambda$tableStructureShow$9(DataRunNameServiceImpl.java:474) + at java.base/java.lang.Iterable.forEach(Iterable.java:75) + at com.muyu.server.service.impl.DataRunNameServiceImpl.tableStructureShow(DataRunNameServiceImpl.java:472) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) + at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) + at com.muyu.server.service.impl.DataRunNameServiceImpl$$SpringCGLIB$$0.tableStructureShow() + at com.muyu.server.controller.DataRunNameController.tableStructureShow(DataRunNameController.java:72) + 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.SQLException: Column Index out of range, 2,093,629,925 > 1. + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:130) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:98) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:90) + at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:64) + at com.mysql.cj.jdbc.result.ResultSetImpl.checkColumnBounds(ResultSetImpl.java:505) + at com.mysql.cj.jdbc.result.ResultSetImpl.getObject(ResultSetImpl.java:1260) + at com.mysql.cj.jdbc.result.ResultSetImpl.getInt(ResultSetImpl.java:826) + at com.alibaba.druid.pool.DruidPooledResultSet.getInt(DruidPooledResultSet.java:134) + at com.muyu.server.service.impl.DataRunNameServiceImpl.tableFySelect(DataRunNameServiceImpl.java:266) + ... 71 common frames omitted diff --git a/logs/cloud-property/info.log b/logs/cloud-property/info.log index 88b55a4..00cc7d1 100644 --- a/logs/cloud-property/info.log +++ b/logs/cloud-property/info.log @@ -1173,3 +1173,811 @@ public class GenerateEmailWQEASZ extends DataEngineValueActuator { 17:40:53.185 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed 17:40:53.185 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, 17:40:53.185 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye +20:52:33.397 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +20:52:36.089 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +20:52:36.090 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +20:52:36.164 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +20:52:40.197 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +20:52:40.199 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success +20:52:40.199 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +20:52:41.448 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +20:52:43.813 [main] INFO c.m.r.RabbitConfig - [init,29] - rabbitMQ启动成功 +20:52:45.074 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +20:52:45.075 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +20:52:45.076 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +20:52:45.080 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +20:52:45.083 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +20:52:45.083 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +20:52:45.219 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 67aa48a1-cd58-48d2-b8ff-1c2b61e304da +20:52:45.222 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->67aa48a1-cd58-48d2-b8ff-1c2b61e304da +20:52:45.222 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [67aa48a1-cd58-48d2-b8ff-1c2b61e304da] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +20:52:45.222 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [67aa48a1-cd58-48d2-b8ff-1c2b61e304da] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +20:52:45.223 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [67aa48a1-cd58-48d2-b8ff-1c2b61e304da] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +20:52:45.223 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [67aa48a1-cd58-48d2-b8ff-1c2b61e304da] Try to connect to server on start up, server: {serverIp = '21.12.0.8', server main port = 8848} +20:52:45.223 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +20:52:45.459 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [67aa48a1-cd58-48d2-b8ff-1c2b61e304da] Success to connect to server [21.12.0.8:8848] on start up, connectionId = 1725627166109_21.12.0.11_63234 +20:52:45.459 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [67aa48a1-cd58-48d2-b8ff-1c2b61e304da] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +20:52:45.459 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [67aa48a1-cd58-48d2-b8ff-1c2b61e304da] Notify connected event to listeners. +20:52:45.459 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [67aa48a1-cd58-48d2-b8ff-1c2b61e304da] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x00000179014f14f8 +20:52:45.459 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +20:52:45.461 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 registering service cloud-property with instance Instance{instanceId='null', ip='192.168.54.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +20:52:45.538 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-property 192.168.54.139:9701 register finished +20:52:45.711 [main] INFO c.m.s.IntegrationApplication - [logStarted,56] - Started IntegrationApplication in 16.073 seconds (process running for 17.015) +20:52:45.727 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +20:52:45.727 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +20:52:45.728 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +20:52:45.738 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property.yml, group=DEFAULT_GROUP, cnt=1 +20:52:45.738 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property.yml, group=DEFAULT_GROUP +20:52:45.739 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +20:52:45.740 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property, group=DEFAULT_GROUP, cnt=1 +20:52:45.740 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property, group=DEFAULT_GROUP +20:52:45.742 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property-dev.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +20:52:45.742 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property-dev.yml, group=DEFAULT_GROUP, cnt=1 +20:52:45.742 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property-dev.yml, group=DEFAULT_GROUP +20:52:46.657 [RMI TCP Connection(5)-192.168.54.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +20:54:36.750 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [tableStructureShow,468] - 字段类型名称集合:[TableFie(id=2093629925, field=Name, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629926, field=CardNo, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629927, field=Descriot, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629928, field=CtfTp, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629929, field=CtfId, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629930, field=Gender, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629931, field=Birthday, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629932, field=Address, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629933, field=Zip, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629934, field=Dirty, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629935, field=District1, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629936, field=District2, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629937, field=District3, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629938, field=District4, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629939, field=District5, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629940, field=District6, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629941, field=FirstNm, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629942, field=LastNm, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629943, field=Duty, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629944, field=Mobile, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629945, field=Tel, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629946, field=Fax, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629947, field=EMail, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629948, field=Nation, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629949, field=Taste, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629950, field=Education, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629951, field=Company, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629952, field=CTel, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629953, field=CAddress, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629954, field=CZip, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629955, field=Family, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629956, field=Version, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629957, field=id, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null)] +20:54:36.922 [http-nio-9701-exec-1] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-2} inited +20:57:33.978 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +20:57:33.978 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 deregistering service cloud-property with instance: Instance{instanceId='null', ip='192.168.54.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +20:57:34.692 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation UNREGISTER for DEFAULT_GROUP@@cloud-property +20:57:35.592 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +20:57:35.594 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +20:57:35.594 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +20:57:35.595 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +20:57:35.595 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +20:57:35.595 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +20:57:35.595 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +20:57:35.595 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +20:57:35.595 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +20:57:35.595 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +20:57:35.595 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +20:57:35.595 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +20:57:35.595 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->67aa48a1-cd58-48d2-b8ff-1c2b61e304da +20:57:35.596 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@7715e827[Running, pool size = 1, active threads = 1, queued tasks = 0, completed tasks = 95] +20:57:35.597 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +20:57:35.598 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5f3927b6[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +20:57:35.599 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725627166109_21.12.0.11_63234 +20:57:35.603 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@507ef541[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 63] +20:57:35.603 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->67aa48a1-cd58-48d2-b8ff-1c2b61e304da +20:57:35.603 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +20:57:35.603 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +20:57:35.604 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +20:57:35.606 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... +20:57:35.607 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... +20:57:35.617 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed +20:57:35.617 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, +20:57:35.617 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye +20:57:36.629 [com.alibaba.nacos.client.Worker.14] INFO c.a.n.c.a.r.i.CredentialWatcher - [loadCredentialFromEnv,189] - null No credential found +20:57:45.722 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +20:57:47.903 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +20:57:47.903 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +20:57:47.969 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +20:57:51.987 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +20:57:51.988 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success +20:57:51.988 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +20:57:53.696 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +20:57:56.221 [main] INFO c.m.r.RabbitConfig - [init,29] - rabbitMQ启动成功 +20:57:57.554 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +20:57:57.554 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +20:57:57.555 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +20:57:57.559 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +20:57:57.567 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +20:57:57.567 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +20:57:57.832 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 0c2dba62-8f6f-499b-90a1-81604b3b0429 +20:57:57.835 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->0c2dba62-8f6f-499b-90a1-81604b3b0429 +20:57:57.835 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +20:57:57.835 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +20:57:57.836 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +20:57:57.836 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Try to connect to server on start up, server: {serverIp = '21.12.0.8', server main port = 8848} +20:57:57.837 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +20:57:58.149 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Success to connect to server [21.12.0.8:8848] on start up, connectionId = 1725627478743_21.12.0.11_62009 +20:57:58.150 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +20:57:58.150 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Notify connected event to listeners. +20:57:58.150 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x00000213bf4f0870 +20:57:58.150 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +20:57:58.153 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 registering service cloud-property with instance Instance{instanceId='null', ip='192.168.54.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +20:57:58.223 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-property 192.168.54.139:9701 register finished +20:57:58.488 [main] INFO c.m.s.IntegrationApplication - [logStarted,56] - Started IntegrationApplication in 16.237 seconds (process running for 17.269) +20:57:58.496 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +20:57:58.497 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +20:57:58.497 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +20:57:58.505 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property.yml, group=DEFAULT_GROUP, cnt=1 +20:57:58.505 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property.yml, group=DEFAULT_GROUP +20:57:58.506 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +20:57:58.507 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property, group=DEFAULT_GROUP, cnt=1 +20:57:58.507 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property, group=DEFAULT_GROUP +20:57:58.508 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property-dev.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +20:57:58.508 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property-dev.yml, group=DEFAULT_GROUP, cnt=1 +20:57:58.508 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property-dev.yml, group=DEFAULT_GROUP +20:57:59.201 [RMI TCP Connection(2)-192.168.54.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +20:58:24.859 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [tableStructureShow,468] - 字段类型名称集合:[TableFie(id=2093629925, field=Name, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629926, field=CardNo, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629927, field=Descriot, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629928, field=CtfTp, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629929, field=CtfId, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629930, field=Gender, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629931, field=Birthday, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629932, field=Address, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629933, field=Zip, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629934, field=Dirty, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629935, field=District1, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629936, field=District2, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629937, field=District3, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629938, field=District4, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629939, field=District5, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629940, field=District6, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629941, field=FirstNm, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629942, field=LastNm, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629943, field=Duty, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629944, field=Mobile, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629945, field=Tel, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629946, field=Fax, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629947, field=EMail, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629948, field=Nation, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629949, field=Taste, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629950, field=Education, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629951, field=Company, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629952, field=CTel, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629953, field=CAddress, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629954, field=CZip, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629955, field=Family, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629956, field=Version, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629957, field=id, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null)] +20:58:45.647 [http-nio-9701-exec-1] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-2} inited +21:00:53.392 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aaf4cc55-f7ed-4e0b-ae2c-afe913a90794_config-0] Server healthy check fail, currentConnection = 1725627465543_21.12.0.11_63917 +21:00:53.393 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aaf4cc55-f7ed-4e0b-ae2c-afe913a90794_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +21:00:53.393 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:00:55.008 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Server healthy check fail, currentConnection = 1725627478743_21.12.0.11_62009 +21:00:55.008 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Try to reconnect to a new server, server is not appointed, will choose a random server. +21:00:55.008 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:00:56.416 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset +java.net.SocketException: Connection reset + at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394) + at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426) + at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255) + at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) + at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356) + at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) + at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) + at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) + at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) + at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) + at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:994) + at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) + at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) + at java.base/java.lang.Thread.run(Thread.java:842) +21:00:56.586 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:00:56.587 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:05:40.577 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /21.12.0.10:6379 +21:05:43.587 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Fail to connect server, after trying 1 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown +21:05:43.589 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aaf4cc55-f7ed-4e0b-ae2c-afe913a90794_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown +21:05:43.790 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:05:43.790 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:05:46.794 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aaf4cc55-f7ed-4e0b-ae2c-afe913a90794_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown +21:05:46.794 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Fail to connect server, after trying 2 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown +21:05:47.112 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:05:47.113 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:05:50.131 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aaf4cc55-f7ed-4e0b-ae2c-afe913a90794_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown +21:05:50.131 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Fail to connect server, after trying 3 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown +21:05:50.537 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:05:50.537 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:05:50.988 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/:6379 +21:05:53.555 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Fail to connect server, after trying 4 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown +21:05:53.555 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aaf4cc55-f7ed-4e0b-ae2c-afe913a90794_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown +21:05:54.056 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:05:54.056 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:05:57.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Fail to connect server, after trying 5 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown +21:05:57.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aaf4cc55-f7ed-4e0b-ae2c-afe913a90794_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown +21:05:57.676 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:05:57.677 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:06:00.694 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Fail to connect server, after trying 6 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown +21:06:00.694 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aaf4cc55-f7ed-4e0b-ae2c-afe913a90794_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown +21:06:01.055 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/:6379 +21:06:01.396 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:06:01.396 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:06:04.413 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aaf4cc55-f7ed-4e0b-ae2c-afe913a90794_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown +21:06:04.411 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Fail to connect server, after trying 7 times, last try server is {serverIp = '21.12.0.8', server main port = 8848}, error = unknown +21:06:05.227 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:06:05.227 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:06:05.506 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Success to connect a server [21.12.0.8:8848], connectionId = 1725627966117_21.12.0.11_62892 +21:06:05.506 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aaf4cc55-f7ed-4e0b-ae2c-afe913a90794_config-0] Success to connect a server [21.12.0.8:8848], connectionId = 1725627966117_21.12.0.11_62891 +21:06:05.506 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1725627478743_21.12.0.11_62009 +21:06:05.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aaf4cc55-f7ed-4e0b-ae2c-afe913a90794_config-0] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1725627465543_21.12.0.11_63917 +21:06:05.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725627478743_21.12.0.11_62009 +21:06:05.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725627465543_21.12.0.11_63917 +21:06:05.507 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Notify disconnected event to listeners +21:06:05.507 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aaf4cc55-f7ed-4e0b-ae2c-afe913a90794_config-0] Notify disconnected event to listeners +21:06:05.508 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0c2dba62-8f6f-499b-90a1-81604b3b0429] Notify connected event to listeners. +21:06:05.509 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +21:06:05.509 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [aaf4cc55-f7ed-4e0b-ae2c-afe913a90794_config-0] DisConnected,clear listen context... +21:06:05.509 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aaf4cc55-f7ed-4e0b-ae2c-afe913a90794_config-0] Notify connected event to listeners. +21:06:05.510 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [aaf4cc55-f7ed-4e0b-ae2c-afe913a90794_config-0] Connected,notify listen context... +21:06:05.584 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aaf4cc55-f7ed-4e0b-ae2c-afe913a90794_config-0] Server check success, currentServer is 21.12.0.8:8848 +21:06:07.696 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-property +21:06:23.785 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 21.12.0.10/:6379 +21:06:25.970 [lettuce-nioEventLoop-4-5] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 21.12.0.10/:6379 +21:06:30.561 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [tableStructureShow,468] - 字段类型名称集合:[TableFie(id=2093629925, field=Name, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629926, field=CardNo, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629927, field=Descriot, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629928, field=CtfTp, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629929, field=CtfId, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629930, field=Gender, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629931, field=Birthday, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629932, field=Address, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629933, field=Zip, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629934, field=Dirty, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629935, field=District1, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629936, field=District2, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629937, field=District3, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629938, field=District4, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629939, field=District5, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629940, field=District6, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629941, field=FirstNm, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629942, field=LastNm, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629943, field=Duty, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629944, field=Mobile, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629945, field=Tel, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629946, field=Fax, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629947, field=EMail, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629948, field=Nation, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629949, field=Taste, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629950, field=Education, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629951, field=Company, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629952, field=CTel, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629953, field=CAddress, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629954, field=CZip, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629955, field=Family, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629956, field=Version, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629957, field=id, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null)] +21:06:38.771 [http-nio-9701-exec-8] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-3} inited +21:10:44.736 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:44.864 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:45.000 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:45.119 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:45.221 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:45.322 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:45.441 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:45.577 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:45.694 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:45.798 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:45.916 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:46.021 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:46.127 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:46.235 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:46.337 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:46.447 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:46.535 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:46.640 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:46.749 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:46.855 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:46.977 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:47.093 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:47.210 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:47.336 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:47.503 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:47.620 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:47.726 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:47.861 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:48.083 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:48.264 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:48.389 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:48.503 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:10:48.624 [http-nio-9701-exec-8] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:13:45.582 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +21:13:45.583 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 deregistering service cloud-property with instance: Instance{instanceId='null', ip='192.168.54.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +21:13:58.663 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +21:14:00.964 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +21:14:00.964 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +21:14:01.032 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +21:14:04.735 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +21:14:04.737 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success +21:14:04.738 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +21:14:07.748 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +21:14:13.729 [main] INFO c.m.r.RabbitConfig - [init,29] - rabbitMQ启动成功 +21:14:17.131 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +21:14:17.132 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +21:14:17.133 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +21:14:17.140 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +21:14:17.147 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +21:14:17.148 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +21:14:17.428 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 26b5086e-eb62-4db1-96fb-66f30461e2b3 +21:14:17.432 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->26b5086e-eb62-4db1-96fb-66f30461e2b3 +21:14:17.432 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [26b5086e-eb62-4db1-96fb-66f30461e2b3] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +21:14:17.433 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [26b5086e-eb62-4db1-96fb-66f30461e2b3] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +21:14:17.434 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [26b5086e-eb62-4db1-96fb-66f30461e2b3] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +21:14:17.434 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [26b5086e-eb62-4db1-96fb-66f30461e2b3] Try to connect to server on start up, server: {serverIp = '21.12.0.8', server main port = 8848} +21:14:17.435 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:14:17.720 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [26b5086e-eb62-4db1-96fb-66f30461e2b3] Success to connect to server [21.12.0.8:8848] on start up, connectionId = 1725628458334_21.12.0.11_62062 +21:14:17.721 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [26b5086e-eb62-4db1-96fb-66f30461e2b3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +21:14:17.721 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [26b5086e-eb62-4db1-96fb-66f30461e2b3] Notify connected event to listeners. +21:14:17.722 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +21:14:17.722 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [26b5086e-eb62-4db1-96fb-66f30461e2b3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x000001a8494f12a0 +21:14:17.726 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 registering service cloud-property with instance Instance{instanceId='null', ip='192.168.54.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +21:14:17.793 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-property 192.168.54.139:9701 register finished +21:14:18.202 [main] INFO c.m.s.IntegrationApplication - [logStarted,56] - Started IntegrationApplication in 23.839 seconds (process running for 24.685) +21:14:18.221 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +21:14:18.222 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +21:14:18.224 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +21:14:18.239 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property.yml, group=DEFAULT_GROUP, cnt=1 +21:14:18.239 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property.yml, group=DEFAULT_GROUP +21:14:18.241 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +21:14:18.241 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property, group=DEFAULT_GROUP, cnt=1 +21:14:18.241 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property, group=DEFAULT_GROUP +21:14:18.246 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property-dev.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +21:14:18.247 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property-dev.yml, group=DEFAULT_GROUP, cnt=1 +21:14:18.247 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property-dev.yml, group=DEFAULT_GROUP +21:14:18.693 [RMI TCP Connection(2)-192.168.54.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +21:14:32.288 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [tableStructureShow,468] - 字段类型名称集合:[TableFie(id=2093629925, field=Name, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629926, field=CardNo, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629927, field=Descriot, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629928, field=CtfTp, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629929, field=CtfId, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629930, field=Gender, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629931, field=Birthday, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629932, field=Address, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629933, field=Zip, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629934, field=Dirty, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629935, field=District1, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629936, field=District2, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629937, field=District3, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629938, field=District4, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629939, field=District5, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629940, field=District6, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629941, field=FirstNm, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629942, field=LastNm, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629943, field=Duty, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629944, field=Mobile, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629945, field=Tel, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629946, field=Fax, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629947, field=EMail, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629948, field=Nation, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629949, field=Taste, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629950, field=Education, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629951, field=Company, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629952, field=CTel, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629953, field=CAddress, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629954, field=CZip, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629955, field=Family, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629956, field=Version, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629957, field=id, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null)] +21:14:32.388 [http-nio-9701-exec-1] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-2} inited +21:15:38.596 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +21:15:38.597 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 deregistering service cloud-property with instance: Instance{instanceId='null', ip='192.168.54.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +21:15:38.645 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation UNREGISTER for DEFAULT_GROUP@@cloud-property +21:15:38.687 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +21:15:38.688 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +21:15:38.692 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +21:15:38.693 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +21:15:38.693 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +21:15:38.694 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +21:15:38.694 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +21:15:38.694 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +21:15:38.694 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +21:15:38.694 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +21:15:38.694 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +21:15:38.694 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +21:15:38.694 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->26b5086e-eb62-4db1-96fb-66f30461e2b3 +21:15:38.694 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@4c6d25ae[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 27] +21:15:38.695 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +21:15:38.695 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@4cecb1be[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +21:15:38.695 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725628458334_21.12.0.11_62062 +21:15:38.699 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@e83997e[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 25] +21:15:38.699 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->26b5086e-eb62-4db1-96fb-66f30461e2b3 +21:15:38.699 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +21:15:38.700 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +21:15:38.700 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +21:15:38.703 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... +21:15:38.706 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... +21:15:38.709 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed +21:15:38.709 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, +21:15:38.709 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye +21:15:47.291 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +21:15:49.490 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +21:15:49.490 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +21:15:49.556 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +21:15:53.067 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +21:15:53.068 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success +21:15:53.069 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +21:15:54.243 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +21:15:56.510 [main] INFO c.m.r.RabbitConfig - [init,29] - rabbitMQ启动成功 +21:15:57.879 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +21:15:57.880 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +21:15:57.880 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +21:15:57.883 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +21:15:57.887 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +21:15:57.887 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +21:15:58.022 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 61bdf93d-ce14-46dc-ac9c-fca20cade040 +21:15:58.024 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->61bdf93d-ce14-46dc-ac9c-fca20cade040 +21:15:58.024 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61bdf93d-ce14-46dc-ac9c-fca20cade040] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +21:15:58.025 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61bdf93d-ce14-46dc-ac9c-fca20cade040] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +21:15:58.025 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61bdf93d-ce14-46dc-ac9c-fca20cade040] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +21:15:58.025 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61bdf93d-ce14-46dc-ac9c-fca20cade040] Try to connect to server on start up, server: {serverIp = '21.12.0.8', server main port = 8848} +21:15:58.025 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:15:58.441 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61bdf93d-ce14-46dc-ac9c-fca20cade040] Success to connect to server [21.12.0.8:8848] on start up, connectionId = 1725628558974_21.12.0.11_62230 +21:15:58.441 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61bdf93d-ce14-46dc-ac9c-fca20cade040] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +21:15:58.441 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61bdf93d-ce14-46dc-ac9c-fca20cade040] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x00000189cb4f0228 +21:15:58.441 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [61bdf93d-ce14-46dc-ac9c-fca20cade040] Notify connected event to listeners. +21:15:58.441 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +21:15:58.443 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 registering service cloud-property with instance Instance{instanceId='null', ip='192.168.54.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +21:15:58.535 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-property 192.168.54.139:9701 register finished +21:15:58.694 [main] INFO c.m.s.IntegrationApplication - [logStarted,56] - Started IntegrationApplication in 14.368 seconds (process running for 15.175) +21:15:58.706 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +21:15:58.707 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +21:15:58.709 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +21:15:58.717 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property.yml, group=DEFAULT_GROUP, cnt=1 +21:15:58.718 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property.yml, group=DEFAULT_GROUP +21:15:58.719 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +21:15:58.719 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property, group=DEFAULT_GROUP, cnt=1 +21:15:58.719 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property, group=DEFAULT_GROUP +21:15:58.721 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property-dev.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +21:15:58.722 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property-dev.yml, group=DEFAULT_GROUP, cnt=1 +21:15:58.722 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property-dev.yml, group=DEFAULT_GROUP +21:15:59.132 [RMI TCP Connection(2)-192.168.54.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +21:16:02.932 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [tableStructureShow,468] - 字段类型名称集合:[TableFie(id=2093629925, field=Name, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629926, field=CardNo, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629927, field=Descriot, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629928, field=CtfTp, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629929, field=CtfId, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629930, field=Gender, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629931, field=Birthday, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629932, field=Address, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629933, field=Zip, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629934, field=Dirty, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629935, field=District1, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629936, field=District2, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629937, field=District3, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629938, field=District4, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629939, field=District5, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629940, field=District6, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629941, field=FirstNm, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629942, field=LastNm, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629943, field=Duty, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629944, field=Mobile, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629945, field=Tel, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629946, field=Fax, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629947, field=EMail, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629948, field=Nation, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629949, field=Taste, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629950, field=Education, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629951, field=Company, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629952, field=CTel, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629953, field=CAddress, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629954, field=CZip, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629955, field=Family, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629956, field=Version, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629957, field=id, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null)] +21:16:03.055 [http-nio-9701-exec-1] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-2} inited +21:16:03.721 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:03.795 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:03.868 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:03.942 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:04.015 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:04.078 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:04.155 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:04.290 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:04.358 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:04.419 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:04.523 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:04.595 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:04.659 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:04.714 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:04.778 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:04.851 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:04.930 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:05.018 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:05.083 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:05.169 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:05.240 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:05.314 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:05.372 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:05.445 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:05.574 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:05.659 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:05.716 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:05.773 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:05.831 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:05.893 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:05.976 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:06.067 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:06.128 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:16:06.129 [http-nio-9701-exec-1] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-3} inited +21:20:46.534 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +21:20:46.534 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 deregistering service cloud-property with instance: Instance{instanceId='null', ip='192.168.54.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +21:20:46.704 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +21:20:46.705 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +21:20:46.705 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +21:20:46.706 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +21:20:46.706 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +21:20:46.706 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +21:20:46.706 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +21:20:46.706 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +21:20:46.706 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +21:20:46.707 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +21:20:46.707 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +21:20:46.707 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +21:20:46.707 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->61bdf93d-ce14-46dc-ac9c-fca20cade040 +21:20:46.707 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1fa97561[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 95] +21:20:46.707 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +21:20:46.707 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@396b46a8[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +21:20:46.707 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725628558974_21.12.0.11_62230 +21:20:46.713 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@eb1134d[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 67] +21:20:46.714 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->61bdf93d-ce14-46dc-ac9c-fca20cade040 +21:20:46.715 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +21:20:46.716 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +21:20:46.716 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +21:20:46.723 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... +21:20:46.728 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... +21:20:46.735 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed +21:20:46.735 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, +21:20:46.735 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye +21:20:53.758 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +21:20:56.139 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +21:20:56.140 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +21:20:56.204 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +21:21:00.615 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +21:21:00.618 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success +21:21:00.619 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +21:21:03.265 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +21:21:06.920 [main] INFO c.m.r.RabbitConfig - [init,29] - rabbitMQ启动成功 +21:21:08.452 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +21:21:08.454 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +21:21:08.454 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +21:21:08.460 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +21:21:08.469 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +21:21:08.470 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +21:21:08.628 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of a324f498-d2cf-4d60-930f-c28a4c48b4f0 +21:21:08.631 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->a324f498-d2cf-4d60-930f-c28a4c48b4f0 +21:21:08.631 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +21:21:08.631 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +21:21:08.632 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +21:21:08.632 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Try to connect to server on start up, server: {serverIp = '21.12.0.8', server main port = 8848} +21:21:08.633 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:21:08.845 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Success to connect to server [21.12.0.8:8848] on start up, connectionId = 1725628869516_21.12.0.11_62721 +21:21:08.845 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +21:21:08.845 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Notify connected event to listeners. +21:21:08.845 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x00000195324d10a0 +21:21:08.845 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +21:21:08.847 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 registering service cloud-property with instance Instance{instanceId='null', ip='192.168.54.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +21:21:08.928 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-property 192.168.54.139:9701 register finished +21:21:09.278 [main] INFO c.m.s.IntegrationApplication - [logStarted,56] - Started IntegrationApplication in 18.958 seconds (process running for 19.96) +21:21:09.289 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +21:21:09.290 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +21:21:09.291 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +21:21:09.301 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property.yml, group=DEFAULT_GROUP, cnt=1 +21:21:09.302 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property.yml, group=DEFAULT_GROUP +21:21:09.302 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +21:21:09.303 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property, group=DEFAULT_GROUP, cnt=1 +21:21:09.303 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property, group=DEFAULT_GROUP +21:21:09.306 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property-dev.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +21:21:09.306 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property-dev.yml, group=DEFAULT_GROUP, cnt=1 +21:21:09.307 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property-dev.yml, group=DEFAULT_GROUP +21:21:09.765 [RMI TCP Connection(5)-192.168.54.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +21:21:12.891 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [tableStructureShow,468] - 字段类型名称集合:[TableFie(id=2093629925, field=Name, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629926, field=CardNo, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629927, field=Descriot, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629928, field=CtfTp, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629929, field=CtfId, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629930, field=Gender, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629931, field=Birthday, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629932, field=Address, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629933, field=Zip, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629934, field=Dirty, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629935, field=District1, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629936, field=District2, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629937, field=District3, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629938, field=District4, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629939, field=District5, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629940, field=District6, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629941, field=FirstNm, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629942, field=LastNm, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629943, field=Duty, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629944, field=Mobile, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629945, field=Tel, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629946, field=Fax, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629947, field=EMail, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629948, field=Nation, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629949, field=Taste, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629950, field=Education, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629951, field=Company, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629952, field=CTel, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629953, field=CAddress, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629954, field=CZip, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629955, field=Family, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629956, field=Version, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629957, field=id, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null)] +21:21:13.023 [http-nio-9701-exec-1] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-2} inited +21:21:13.840 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:21.591 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:26.373 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:31.844 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:32.480 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:32.941 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:33.359 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:34.424 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:35.597 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:37.400 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:38.728 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:40.389 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:42.077 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:43.064 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:43.864 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:44.568 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:45.282 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:46.073 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:46.990 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:47.637 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:48.992 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:49.683 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:50.617 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:51.464 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:52.399 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:53.272 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:54.242 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:55.053 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:21:55.936 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:22:25.474 [nacos-grpc-client-executor-21.12.0.8-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Receive server push request, request = ClientDetectionRequest, requestId = 212 +21:22:25.475 [nacos-grpc-client-executor-21.12.0.8-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Ack server push request, request = ClientDetectionRequest, requestId = 212 +21:22:25.479 [nacos-grpc-client-executor-21.12.0.8-32] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b926475b-1676-48f7-a924-bae87206dd35_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 211 +21:22:25.480 [nacos-grpc-client-executor-21.12.0.8-32] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b926475b-1676-48f7-a924-bae87206dd35_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 211 +21:22:25.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Server healthy check fail, currentConnection = 1725628869516_21.12.0.11_62721 +21:22:25.529 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Try to reconnect to a new server, server is not appointed, will choose a random server. +21:22:25.529 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:22:25.535 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b926475b-1676-48f7-a924-bae87206dd35_config-0] Server healthy check fail, currentConnection = 1725628853414_21.12.0.11_62670 +21:22:25.536 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b926475b-1676-48f7-a924-bae87206dd35_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +21:22:25.536 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:22:25.626 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:22:26.547 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Success to connect a server [21.12.0.8:8848], connectionId = 1725628946399_21.12.0.11_62834 +21:22:26.547 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1725628869516_21.12.0.11_62721 +21:22:26.548 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725628869516_21.12.0.11_62721 +21:22:26.552 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Try to reconnect to a new server, server is not appointed, will choose a random server. +21:22:26.553 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Notify disconnected event to listeners +21:22:26.553 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:22:26.554 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Notify connected event to listeners. +21:22:26.554 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +21:22:26.622 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b926475b-1676-48f7-a924-bae87206dd35_config-0] Success to connect a server [21.12.0.8:8848], connectionId = 1725628946430_21.12.0.11_62835 +21:22:26.622 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b926475b-1676-48f7-a924-bae87206dd35_config-0] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1725628853414_21.12.0.11_62670 +21:22:26.623 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725628853414_21.12.0.11_62670 +21:22:26.623 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b926475b-1676-48f7-a924-bae87206dd35_config-0] Notify disconnected event to listeners +21:22:26.623 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b926475b-1676-48f7-a924-bae87206dd35_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +21:22:26.624 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b926475b-1676-48f7-a924-bae87206dd35_config-0] DisConnected,clear listen context... +21:22:26.624 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:22:26.624 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b926475b-1676-48f7-a924-bae87206dd35_config-0] Notify connected event to listeners. +21:22:26.624 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b926475b-1676-48f7-a924-bae87206dd35_config-0] Connected,notify listen context... +21:22:26.626 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:22:27.161 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:22:27.163 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Success to connect a server [21.12.0.8:8848], connectionId = 1725628947455_21.12.0.11_62836 +21:22:27.163 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1725628946399_21.12.0.11_62834 +21:22:27.163 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725628946399_21.12.0.11_62834 +21:22:27.166 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b926475b-1676-48f7-a924-bae87206dd35_config-0] Success to connect a server [21.12.0.8:8848], connectionId = 1725628947861_21.12.0.11_62837 +21:22:27.167 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b926475b-1676-48f7-a924-bae87206dd35_config-0] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1725628946430_21.12.0.11_62835 +21:22:27.168 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725628946430_21.12.0.11_62835 +21:22:28.729 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-property +21:22:28.732 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b926475b-1676-48f7-a924-bae87206dd35_config-0] Notify disconnected event to listeners +21:22:28.732 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Notify disconnected event to listeners +21:22:28.733 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b926475b-1676-48f7-a924-bae87206dd35_config-0] DisConnected,clear listen context... +21:22:28.733 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a324f498-d2cf-4d60-930f-c28a4c48b4f0] Notify connected event to listeners. +21:22:28.733 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b926475b-1676-48f7-a924-bae87206dd35_config-0] Notify connected event to listeners. +21:22:28.734 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +21:22:28.734 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b926475b-1676-48f7-a924-bae87206dd35_config-0] Connected,notify listen context... +21:22:28.734 [nacos-grpc-client-executor-21.12.0.8-32] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1725628946399_21.12.0.11_62834]Ignore complete event,isRunning:true,isAbandon=true +21:22:28.847 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:22:45.421 [http-nio-9701-exec-1] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-3} inited +21:24:26.823 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +21:24:26.823 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 deregistering service cloud-property with instance: Instance{instanceId='null', ip='192.168.54.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +21:24:26.888 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +21:24:26.893 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +21:24:26.894 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +21:24:26.895 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +21:24:26.897 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +21:24:26.897 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +21:24:26.897 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +21:24:26.898 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +21:24:26.898 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +21:24:26.898 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +21:24:26.899 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +21:24:26.899 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +21:24:26.899 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->a324f498-d2cf-4d60-930f-c28a4c48b4f0 +21:24:26.900 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@d6614f2[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 47] +21:24:26.900 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +21:24:26.900 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@37d460bb[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +21:24:26.901 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725628947455_21.12.0.11_62836 +21:24:26.902 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@dae3831[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 54] +21:24:26.902 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->a324f498-d2cf-4d60-930f-c28a4c48b4f0 +21:24:26.903 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +21:24:26.903 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +21:24:26.904 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +21:24:26.908 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... +21:24:26.915 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... +21:24:26.926 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed +21:24:26.926 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, +21:24:26.926 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye +21:24:35.773 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +21:24:37.854 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +21:24:37.855 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +21:24:37.929 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +21:24:41.251 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +21:24:41.253 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success +21:24:41.253 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +21:24:42.799 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +21:24:45.280 [main] INFO c.m.r.RabbitConfig - [init,29] - rabbitMQ启动成功 +21:24:46.507 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +21:24:46.508 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +21:24:46.508 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +21:24:46.512 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +21:24:46.516 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +21:24:46.517 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +21:24:46.674 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of eedc9419-1dca-4666-9531-599420684cea +21:24:46.676 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->eedc9419-1dca-4666-9531-599420684cea +21:24:46.677 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eedc9419-1dca-4666-9531-599420684cea] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +21:24:46.677 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eedc9419-1dca-4666-9531-599420684cea] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +21:24:46.677 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eedc9419-1dca-4666-9531-599420684cea] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +21:24:46.677 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eedc9419-1dca-4666-9531-599420684cea] Try to connect to server on start up, server: {serverIp = '21.12.0.8', server main port = 8848} +21:24:46.678 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:24:46.877 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eedc9419-1dca-4666-9531-599420684cea] Success to connect to server [21.12.0.8:8848] on start up, connectionId = 1725629087553_21.12.0.11_63041 +21:24:46.878 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eedc9419-1dca-4666-9531-599420684cea] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +21:24:46.878 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eedc9419-1dca-4666-9531-599420684cea] Notify connected event to listeners. +21:24:46.878 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eedc9419-1dca-4666-9531-599420684cea] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x00000268014f12a0 +21:24:46.878 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +21:24:46.879 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 registering service cloud-property with instance Instance{instanceId='null', ip='192.168.54.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +21:24:46.943 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-property 192.168.54.139:9701 register finished +21:24:47.089 [main] INFO c.m.s.IntegrationApplication - [logStarted,56] - Started IntegrationApplication in 14.261 seconds (process running for 14.98) +21:24:47.098 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +21:24:47.099 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +21:24:47.099 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +21:24:47.107 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property.yml, group=DEFAULT_GROUP, cnt=1 +21:24:47.108 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property.yml, group=DEFAULT_GROUP +21:24:47.108 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +21:24:47.109 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property, group=DEFAULT_GROUP, cnt=1 +21:24:47.109 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property, group=DEFAULT_GROUP +21:24:47.111 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property-dev.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +21:24:47.111 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property-dev.yml, group=DEFAULT_GROUP, cnt=1 +21:24:47.111 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property-dev.yml, group=DEFAULT_GROUP +21:24:47.333 [RMI TCP Connection(4)-192.168.54.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +21:24:52.953 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [tableStructureShow,468] - 字段类型名称集合:[TableFie(id=2093629925, field=Name, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629926, field=CardNo, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629927, field=Descriot, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629928, field=CtfTp, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629929, field=CtfId, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629930, field=Gender, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629931, field=Birthday, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629932, field=Address, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629933, field=Zip, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629934, field=Dirty, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629935, field=District1, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629936, field=District2, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629937, field=District3, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629938, field=District4, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629939, field=District5, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629940, field=District6, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629941, field=FirstNm, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629942, field=LastNm, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629943, field=Duty, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629944, field=Mobile, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629945, field=Tel, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629946, field=Fax, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629947, field=EMail, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629948, field=Nation, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629949, field=Taste, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629950, field=Education, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629951, field=Company, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629952, field=CTel, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629953, field=CAddress, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629954, field=CZip, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629955, field=Family, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629956, field=Version, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629957, field=id, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null)] +21:24:53.186 [http-nio-9701-exec-1] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-2} inited +21:24:54.229 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:54.301 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:54.405 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:54.496 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:54.666 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:54.923 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:54.998 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:55.064 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:55.171 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:55.238 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:55.336 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:55.408 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:55.482 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:55.539 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:55.629 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:55.689 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:55.761 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:55.823 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:55.896 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:55.971 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:56.043 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:56.143 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:56.202 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:56.273 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:56.334 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:56.414 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:56.479 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:56.568 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:56.653 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:56.727 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:56.807 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:56.965 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:24:57.057 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,337] - 字段备注: +21:25:02.896 [http-nio-9701-exec-1] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-3} inited +21:26:19.951 [nacos-grpc-client-executor-21.12.0.8-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1e48d846-92f5-4ea8-9678-5b4979dd06bd_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 221 +21:26:19.951 [nacos-grpc-client-executor-21.12.0.8-10] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eedc9419-1dca-4666-9531-599420684cea] Receive server push request, request = ClientDetectionRequest, requestId = 222 +21:26:19.952 [nacos-grpc-client-executor-21.12.0.8-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1e48d846-92f5-4ea8-9678-5b4979dd06bd_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 221 +21:26:19.952 [nacos-grpc-client-executor-21.12.0.8-10] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eedc9419-1dca-4666-9531-599420684cea] Ack server push request, request = ClientDetectionRequest, requestId = 222 +21:26:20.224 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eedc9419-1dca-4666-9531-599420684cea] Server healthy check fail, currentConnection = 1725629087553_21.12.0.11_63041 +21:26:20.224 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eedc9419-1dca-4666-9531-599420684cea] Try to reconnect to a new server, server is not appointed, will choose a random server. +21:26:20.224 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:26:20.264 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +21:26:20.265 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 deregistering service cloud-property with instance: Instance{instanceId='null', ip='192.168.54.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +21:26:20.272 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1e48d846-92f5-4ea8-9678-5b4979dd06bd_config-0] Server healthy check fail, currentConnection = 1725629075703_21.12.0.11_63014 +21:26:20.272 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1e48d846-92f5-4ea8-9678-5b4979dd06bd_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +21:26:20.273 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:26:20.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eedc9419-1dca-4666-9531-599420684cea] Success to connect a server [21.12.0.8:8848], connectionId = 1725629181136_21.12.0.11_63207 +21:26:20.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1e48d846-92f5-4ea8-9678-5b4979dd06bd_config-0] Success to connect a server [21.12.0.8:8848], connectionId = 1725629181164_21.12.0.11_63208 +21:26:20.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1e48d846-92f5-4ea8-9678-5b4979dd06bd_config-0] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1725629075703_21.12.0.11_63014 +21:26:20.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eedc9419-1dca-4666-9531-599420684cea] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1725629087553_21.12.0.11_63041 +21:26:20.529 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725629075703_21.12.0.11_63014 +21:26:20.529 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725629087553_21.12.0.11_63041 +21:26:20.535 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1e48d846-92f5-4ea8-9678-5b4979dd06bd_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +21:26:20.535 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eedc9419-1dca-4666-9531-599420684cea] Try to reconnect to a new server, server is not appointed, will choose a random server. +21:26:20.535 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eedc9419-1dca-4666-9531-599420684cea] Notify disconnected event to listeners +21:26:20.535 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1e48d846-92f5-4ea8-9678-5b4979dd06bd_config-0] Notify disconnected event to listeners +21:26:20.536 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:26:20.536 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:26:20.536 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [1e48d846-92f5-4ea8-9678-5b4979dd06bd_config-0] DisConnected,clear listen context... +21:26:20.538 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1e48d846-92f5-4ea8-9678-5b4979dd06bd_config-0] Notify connected event to listeners. +21:26:20.538 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [1e48d846-92f5-4ea8-9678-5b4979dd06bd_config-0] Connected,notify listen context... +21:26:20.539 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eedc9419-1dca-4666-9531-599420684cea] Notify connected event to listeners. +21:26:20.540 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +21:26:20.681 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +21:26:20.685 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +21:26:20.686 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +21:26:20.686 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +21:26:20.686 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +21:26:20.687 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +21:26:20.687 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +21:26:20.687 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +21:26:20.687 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +21:26:20.688 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +21:26:20.688 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +21:26:20.688 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +21:26:20.688 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->eedc9419-1dca-4666-9531-599420684cea +21:26:20.688 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@197d786d[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 5] +21:26:20.688 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +21:26:20.688 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6000932f[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +21:26:20.689 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725629181136_21.12.0.11_63207 +21:26:20.732 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725629181136_21.12.0.11_63207 +21:26:20.689 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@2e480ae9[Running, pool size = 14, active threads = 0, queued tasks = 0, completed tasks = 24] +21:26:20.754 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->eedc9419-1dca-4666-9531-599420684cea +21:26:20.770 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +21:26:20.771 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +21:26:20.773 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +21:26:20.787 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... +21:26:20.804 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... +21:26:20.840 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eedc9419-1dca-4666-9531-599420684cea] Client is shutdown, stop reconnect to server +21:26:20.840 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed +21:26:20.841 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, +21:26:20.841 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye +21:26:20.861 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1e48d846-92f5-4ea8-9678-5b4979dd06bd_config-0] Success to connect a server [21.12.0.8:8848], connectionId = 1725629181465_21.12.0.11_63214 +21:26:20.861 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1e48d846-92f5-4ea8-9678-5b4979dd06bd_config-0] Abandon prev connection, server is 21.12.0.8:8848, connectionId is 1725629181164_21.12.0.11_63208 +21:26:20.861 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725629181164_21.12.0.11_63208 +21:26:20.862 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1e48d846-92f5-4ea8-9678-5b4979dd06bd_config-0] Notify disconnected event to listeners +21:26:20.863 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [1e48d846-92f5-4ea8-9678-5b4979dd06bd_config-0] DisConnected,clear listen context... +21:26:20.876 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1e48d846-92f5-4ea8-9678-5b4979dd06bd_config-0] Notify connected event to listeners. +21:26:20.876 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [1e48d846-92f5-4ea8-9678-5b4979dd06bd_config-0] Connected,notify listen context... +21:27:25.054 [main] INFO c.m.s.IntegrationApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +21:27:27.076 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +21:27:27.076 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +21:27:27.135 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +21:27:30.335 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +21:27:30.335 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success +21:27:30.335 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +21:27:31.347 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +21:27:33.678 [main] INFO c.m.r.RabbitConfig - [init,29] - rabbitMQ启动成功 +21:27:34.831 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +21:27:34.831 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +21:27:34.831 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +21:27:34.835 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +21:27:34.838 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +21:27:34.838 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +21:27:34.983 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 211efaef-a277-4c4c-824f-51d5b5b8a953 +21:27:34.984 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->211efaef-a277-4c4c-824f-51d5b5b8a953 +21:27:34.985 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [211efaef-a277-4c4c-824f-51d5b5b8a953] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +21:27:34.985 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [211efaef-a277-4c4c-824f-51d5b5b8a953] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +21:27:34.986 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [211efaef-a277-4c4c-824f-51d5b5b8a953] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +21:27:34.986 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [211efaef-a277-4c4c-824f-51d5b5b8a953] Try to connect to server on start up, server: {serverIp = '21.12.0.8', server main port = 8848} +21:27:34.986 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:21.12.0.8 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +21:27:35.182 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [211efaef-a277-4c4c-824f-51d5b5b8a953] Success to connect to server [21.12.0.8:8848] on start up, connectionId = 1725629255850_21.12.0.11_63311 +21:27:35.183 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [211efaef-a277-4c4c-824f-51d5b5b8a953] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +21:27:35.183 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [211efaef-a277-4c4c-824f-51d5b5b8a953] Notify connected event to listeners. +21:27:35.183 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [211efaef-a277-4c4c-824f-51d5b5b8a953] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x0000019d814f14f8 +21:27:35.183 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +21:27:35.186 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 registering service cloud-property with instance Instance{instanceId='null', ip='192.168.54.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +21:27:35.240 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-property 192.168.54.139:9701 register finished +21:27:35.385 [main] INFO c.m.s.IntegrationApplication - [logStarted,56] - Started IntegrationApplication in 13.679 seconds (process running for 14.53) +21:27:35.394 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +21:27:35.395 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +21:27:35.395 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +21:27:35.403 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property.yml, group=DEFAULT_GROUP, cnt=1 +21:27:35.403 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property.yml, group=DEFAULT_GROUP +21:27:35.404 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +21:27:35.404 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property, group=DEFAULT_GROUP, cnt=1 +21:27:35.404 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property, group=DEFAULT_GROUP +21:27:35.406 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [subscribe] cloud-property-dev.yml+DEFAULT_GROUP+ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 +21:27:35.406 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-ec66ecf1-f28e-43bc-aa86-625f1bc53bf8-21.12.0.8_8848] [add-listener] ok, tenant=ec66ecf1-f28e-43bc-aa86-625f1bc53bf8, dataId=cloud-property-dev.yml, group=DEFAULT_GROUP, cnt=1 +21:27:35.406 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-property-dev.yml, group=DEFAULT_GROUP +21:27:35.848 [RMI TCP Connection(3)-192.168.54.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +21:27:47.891 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [tableStructureShow,469] - 字段类型名称集合:[TableFie(id=2093629925, field=Name, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629926, field=CardNo, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629927, field=Descriot, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629928, field=CtfTp, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629929, field=CtfId, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629930, field=Gender, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629931, field=Birthday, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629932, field=Address, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629933, field=Zip, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629934, field=Dirty, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629935, field=District1, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629936, field=District2, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629937, field=District3, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629938, field=District4, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629939, field=District5, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629940, field=District6, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629941, field=FirstNm, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629942, field=LastNm, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629943, field=Duty, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629944, field=Mobile, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629945, field=Tel, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629946, field=Fax, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629947, field=EMail, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629948, field=Nation, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629949, field=Taste, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629950, field=Education, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629951, field=Company, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629952, field=CTel, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629953, field=CAddress, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629954, field=CZip, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629955, field=Family, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629956, field=Version, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null), TableFie(id=2093629957, field=id, type=varchar(255), collation=utf8mb3_general_ci, nullable=YES, primarys=, annotation=, tableId=174, dataValue=null, dataMapping=null)] +21:27:48.001 [http-nio-9701-exec-1] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-2} inited +21:27:48.590 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:48.665 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:48.722 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:48.797 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:48.848 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:48.947 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:49.005 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:49.074 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:49.164 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:49.227 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:49.305 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:49.378 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:49.457 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:49.511 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:49.567 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:49.624 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:49.675 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:49.732 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:49.798 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:49.872 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:49.936 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:49.993 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:50.045 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:50.101 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:50.175 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:50.235 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:50.299 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:50.352 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:50.430 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:50.499 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:50.556 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:50.642 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:50.702 [http-nio-9701-exec-1] INFO c.m.s.s.i.DataRunNameServiceImpl - [getDataResult,338] - 字段备注: +21:27:52.752 [http-nio-9701-exec-1] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-3} inited +21:30:22.915 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +21:30:22.916 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] ec66ecf1-f28e-43bc-aa86-625f1bc53bf8 deregistering service cloud-property with instance: Instance{instanceId='null', ip='192.168.54.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +21:30:22.967 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +21:30:22.969 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +21:30:22.970 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +21:30:22.971 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +21:30:22.971 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +21:30:22.971 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +21:30:22.971 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +21:30:22.971 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +21:30:22.971 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +21:30:22.972 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +21:30:22.972 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +21:30:22.972 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +21:30:22.972 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->211efaef-a277-4c4c-824f-51d5b5b8a953 +21:30:22.972 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@6b4f409a[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 54] +21:30:22.973 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +21:30:22.973 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6343b546[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +21:30:22.973 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725629255850_21.12.0.11_63311 +21:30:22.979 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6be28041[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 40] +21:30:22.979 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->211efaef-a277-4c4c-824f-51d5b5b8a953 +21:30:22.980 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +21:30:22.981 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +21:30:22.981 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +21:30:22.984 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... +21:30:22.987 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... +21:30:22.994 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed +21:30:22.994 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, +21:30:22.994 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye