From c8ba19d293fd53c73829eb4b6bf45d5ced380a1d Mon Sep 17 00:00:00 2001 From: Qin Dong Ming <2720806930@qq.com> Date: Fri, 30 Aug 2024 18:51:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=A2=E6=88=B7=E7=AB=AF=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E7=BC=96=E5=86=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/muyu/controller/Test.java | 78 ++-- .../java/com/bwie/muyu/base/BaseEngine.java | 24 +- .../com/bwie/muyu/base/EngineContainer.java | 48 +-- .../com/bwie/muyu/base/EngineException.java | 38 +- .../java/com/bwie/muyu/base/EngineParam.java | 44 +- .../bwie/muyu/base/Engine_2020_11_3_2347.java | 68 +-- .../main/java/com/bwie/muyu/base/Test.java | 34 +- .../main/java/com/bwie/muyu/base/User.java | 44 +- .../muyu/base/hander/DataEngineHandler.java | 46 +- .../muyu/base/hander/DataEngineValue.java | 56 +-- logs/cloud-etl-engine/info.2024-08-29.log | 363 ++++++++++++++++ logs/cloud-etl-engine/info.log | 404 ++---------------- 12 files changed, 644 insertions(+), 603 deletions(-) create mode 100644 logs/cloud-etl-engine/info.2024-08-29.log diff --git a/cloud-etl-server/src/main/java/com/muyu/controller/Test.java b/cloud-etl-server/src/main/java/com/muyu/controller/Test.java index eb352eb..e123eb6 100644 --- a/cloud-etl-server/src/main/java/com/muyu/controller/Test.java +++ b/cloud-etl-server/src/main/java/com/muyu/controller/Test.java @@ -1,39 +1,39 @@ -package com.muyu.controller; - -import lombok.extern.log4j.Log4j2; -import org.springframework.stereotype.Component; - -/** - * @Author:qdm - * @Package:com.muyu.controller - * @Project:cloud-etl-engine - * @name:Test - * @Date:2024/8/29 19:54 - */ -@Component -@Log4j2 -public class Test { - public static void main(String[] args) { - - Student student = new Student(); - - student.setName("张"); - - if (student.getName().length() < 2 || student.getName().length() > 16) { - - throw new RuntimeException("名称不合法"); - - } - - student.setName(""); - - if (student.getAge() < 1 || student.getAge() > 120) { - - throw new RuntimeException("名称不合法"); - - } - - student.setAge(200); - - } -} +//package com.muyu.controller; +// +//import lombok.extern.log4j.Log4j2; +//import org.springframework.stereotype.Component; +// +///** +// * @Author:qdm +// * @Package:com.muyu.controller +// * @Project:cloud-etl-engine +// * @name:Test +// * @Date:2024/8/29 19:54 +// */ +//@Component +//@Log4j2 +//public class Test { +// public static void main(String[] args) { +// +// Student student = new Student(); +// +// student.setName("张"); +// +// if (student.getName().length() < 2 || student.getName().length() > 16) { +// +// throw new RuntimeException("名称不合法"); +// +// } +// +// student.setName(""); +// +// if (student.getAge() < 1 || student.getAge() > 120) { +// +// throw new RuntimeException("名称不合法"); +// +// } +// +// student.setAge(200); +// +// } +//} diff --git a/elt-data-access/src/main/java/com/bwie/muyu/base/BaseEngine.java b/elt-data-access/src/main/java/com/bwie/muyu/base/BaseEngine.java index ee5702a..0fd22dc 100644 --- a/elt-data-access/src/main/java/com/bwie/muyu/base/BaseEngine.java +++ b/elt-data-access/src/main/java/com/bwie/muyu/base/BaseEngine.java @@ -1,12 +1,12 @@ -package com.bwie.muyu.base; - -/** - * @Author:qdm - * @Package:com.bwie.muyu.base - * @Project:cloud-etl-engine - * @name:BaseEngine - * @Date:2024/8/29 20:23 - */ -public interface BaseEngine { - -} +//package com.bwie.muyu.base; +// +///** +// * @Author:qdm +// * @Package:com.bwie.muyu.base +// * @Project:cloud-etl-engine +// * @name:BaseEngine +// * @Date:2024/8/29 20:23 +// */ +//public interface BaseEngine { +// +//} diff --git a/elt-data-access/src/main/java/com/bwie/muyu/base/EngineContainer.java b/elt-data-access/src/main/java/com/bwie/muyu/base/EngineContainer.java index 10c09e3..6568e37 100644 --- a/elt-data-access/src/main/java/com/bwie/muyu/base/EngineContainer.java +++ b/elt-data-access/src/main/java/com/bwie/muyu/base/EngineContainer.java @@ -1,24 +1,24 @@ -package com.bwie.muyu.base; - -import lombok.AllArgsConstructor; -import lombok.Builder; -import lombok.Data; -import lombok.NoArgsConstructor; - -/** - * @Author:qdm - * @Package:com.bwie.muyu.base - * @Project:cloud-etl-engine - * @name:EngineContainer - * @Date:2024/8/30 11:32 - */ -@Data -@AllArgsConstructor -@NoArgsConstructor -@Builder -public class EngineContainer { - - public static Integer getSumEngine() { - return null; - } -} +//package com.bwie.muyu.base; +// +//import lombok.AllArgsConstructor; +//import lombok.Builder; +//import lombok.Data; +//import lombok.NoArgsConstructor; +// +///** +// * @Author:qdm +// * @Package:com.bwie.muyu.base +// * @Project:cloud-etl-engine +// * @name:EngineContainer +// * @Date:2024/8/30 11:32 +// */ +//@Data +//@AllArgsConstructor +//@NoArgsConstructor +//@Builder +//public class EngineContainer { +// +// public static Integer getSumEngine() { +// return null; +// } +//} diff --git a/elt-data-access/src/main/java/com/bwie/muyu/base/EngineException.java b/elt-data-access/src/main/java/com/bwie/muyu/base/EngineException.java index 8e37558..662c70d 100644 --- a/elt-data-access/src/main/java/com/bwie/muyu/base/EngineException.java +++ b/elt-data-access/src/main/java/com/bwie/muyu/base/EngineException.java @@ -1,20 +1,20 @@ -package com.bwie.muyu.base; - -import java.util.HashMap; - -/** - * @Author:qdm - * @Package:com.bwie.muyu.base - * @Project:cloud-etl-engine - * @name:EngineExcepion - * @Date:2024/8/30 10:50 - */ -public class EngineException { -// public engineException(String message){ -// super.(message); +//package com.bwie.muyu.base; +// +//import java.util.HashMap; +// +///** +// * @Author:qdm +// * @Package:com.bwie.muyu.base +// * @Project:cloud-etl-engine +// * @name:EngineExcepion +// * @Date:2024/8/30 10:50 +// */ +//public class EngineException { +//// public engineException(String message){ +//// super.(message); +//// } +// +// public static void engineExe(String engine20201132347, HashMap params) { +// // } - - public static void engineExe(String engine20201132347, HashMap params) { - - } -} +//} diff --git a/elt-data-access/src/main/java/com/bwie/muyu/base/EngineParam.java b/elt-data-access/src/main/java/com/bwie/muyu/base/EngineParam.java index 90406c1..2f50a0b 100644 --- a/elt-data-access/src/main/java/com/bwie/muyu/base/EngineParam.java +++ b/elt-data-access/src/main/java/com/bwie/muyu/base/EngineParam.java @@ -1,22 +1,22 @@ -package com.bwie.muyu.base; - -import java.lang.annotation.ElementType; -import java.lang.annotation.Retention; -import java.lang.annotation.RetentionPolicy; -import java.lang.annotation.Target; - -/** - * @Author:qdm - * @Package:com.bwie.muyu.base - * @Project:cloud-etl-engine - * @name:EngineParam - * @Date:2024/8/30 10:46 - */ -@Retention(RetentionPolicy.RUNTIME) -@Target(ElementType.PARAMETER) -public @interface EngineParam { - /** - * 输入字段名称 - */ - public String name(); -} +//package com.bwie.muyu.base; +// +//import java.lang.annotation.ElementType; +//import java.lang.annotation.Retention; +//import java.lang.annotation.RetentionPolicy; +//import java.lang.annotation.Target; +// +///** +// * @Author:qdm +// * @Package:com.bwie.muyu.base +// * @Project:cloud-etl-engine +// * @name:EngineParam +// * @Date:2024/8/30 10:46 +// */ +//@Retention(RetentionPolicy.RUNTIME) +//@Target(ElementType.PARAMETER) +//public @interface EngineParam { +// /** +// * 输入字段名称 +// */ +// public String name(); +//} diff --git a/elt-data-access/src/main/java/com/bwie/muyu/base/Engine_2020_11_3_2347.java b/elt-data-access/src/main/java/com/bwie/muyu/base/Engine_2020_11_3_2347.java index 7ca5877..e765720 100644 --- a/elt-data-access/src/main/java/com/bwie/muyu/base/Engine_2020_11_3_2347.java +++ b/elt-data-access/src/main/java/com/bwie/muyu/base/Engine_2020_11_3_2347.java @@ -1,34 +1,34 @@ -package com.bwie.muyu.base; - -import com.muyu.common.core.utils.SpringUtils; -import org.springframework.boot.autoconfigure.security.SecurityProperties; - -import java.util.Date; - -/** - * @Author:qdm - * @Package:com.bwie.muyu.base - * @Project:cloud-etl-engine - * @name:Engine_2020_11_3_2347 - * @Date:2024/8/30 10:32 - */ -public class Engine_2020_11_3_2347 { - public String execute(@EngineParam(name="idCard")String idCard){ - String msg = ""; - Integer year = Integer.valueOf(idCard.substring(6, 10)); - Date date = new Date(); - int thisYear = date.getYear() + 1900; - msg = "这个身份证的年龄是:"+ (thisYear - year); - Integer two = Integer.valueOf(idCard.substring(16, 17)); - if (two % 2 == 0){ - msg += ",这个身份证是男生"; - }else { - msg += ",这个身份证是女生"; - } - Integer sumEngine = EngineContainer.getSumEngine(); - System.out.println("项目中规则引擎数量为:"+sumEngine); - User bean = SpringUtils.getBean(User.class); - System.out.println(bean.getName()+"--"+bean.getAge); - return msg; - } -} +//package com.bwie.muyu.base; +// +//import com.muyu.common.core.utils.SpringUtils; +//import org.springframework.boot.autoconfigure.security.SecurityProperties; +// +//import java.util.Date; +// +///** +// * @Author:qdm +// * @Package:com.bwie.muyu.base +// * @Project:cloud-etl-engine +// * @name:Engine_2020_11_3_2347 +// * @Date:2024/8/30 10:32 +// */ +//public class Engine_2020_11_3_2347 { +// public String execute(@EngineParam(name="idCard")String idCard){ +// String msg = ""; +// Integer year = Integer.valueOf(idCard.substring(6, 10)); +// Date date = new Date(); +// int thisYear = date.getYear() + 1900; +// msg = "这个身份证的年龄是:"+ (thisYear - year); +// Integer two = Integer.valueOf(idCard.substring(16, 17)); +// if (two % 2 == 0){ +// msg += ",这个身份证是男生"; +// }else { +// msg += ",这个身份证是女生"; +// } +// Integer sumEngine = EngineContainer.getSumEngine(); +// System.out.println("项目中规则引擎数量为:"+sumEngine); +// User bean = SpringUtils.getBean(User.class); +// System.out.println(bean.getName()+"--"+bean.getAge); +// return msg; +// } +//} diff --git a/elt-data-access/src/main/java/com/bwie/muyu/base/Test.java b/elt-data-access/src/main/java/com/bwie/muyu/base/Test.java index 3d4a00d..de61f9d 100644 --- a/elt-data-access/src/main/java/com/bwie/muyu/base/Test.java +++ b/elt-data-access/src/main/java/com/bwie/muyu/base/Test.java @@ -1,17 +1,17 @@ -package com.bwie.muyu.base; - -import com.muyu.config.EngineConfig; - -/** - * @Author:qdm - * @Package:com.bwie.muyu.base - * @Project:cloud-etl-engine - * @name:Test - * @Date:2024/8/30 11:16 - */ -public class Test { - public static void main(String[] args) { - EngineConfig engineConfig = new EngineConfig(); - - } -} +//package com.bwie.muyu.base; +// +//import com.muyu.config.EngineConfig; +// +///** +// * @Author:qdm +// * @Package:com.bwie.muyu.base +// * @Project:cloud-etl-engine +// * @name:Test +// * @Date:2024/8/30 11:16 +// */ +//public class Test { +// public static void main(String[] args) { +// EngineConfig engineConfig = new EngineConfig(); +// +// } +//} diff --git a/elt-data-access/src/main/java/com/bwie/muyu/base/User.java b/elt-data-access/src/main/java/com/bwie/muyu/base/User.java index 6bafba3..b59b44c 100644 --- a/elt-data-access/src/main/java/com/bwie/muyu/base/User.java +++ b/elt-data-access/src/main/java/com/bwie/muyu/base/User.java @@ -1,22 +1,22 @@ -package com.bwie.muyu.base; - -import lombok.AllArgsConstructor; -import lombok.Builder; -import lombok.Data; -import lombok.NoArgsConstructor; - -/** - * @Author:qdm - * @Package:com.bwie.muyu.base - * @Project:cloud-etl-engine - * @name:User - * @Date:2024/8/30 11:33 - */ -@Data -@AllArgsConstructor -@NoArgsConstructor -@Builder -public class User { - public String getAge; - private String name; -} +//package com.bwie.muyu.base; +// +//import lombok.AllArgsConstructor; +//import lombok.Builder; +//import lombok.Data; +//import lombok.NoArgsConstructor; +// +///** +// * @Author:qdm +// * @Package:com.bwie.muyu.base +// * @Project:cloud-etl-engine +// * @name:User +// * @Date:2024/8/30 11:33 +// */ +//@Data +//@AllArgsConstructor +//@NoArgsConstructor +//@Builder +//public class User { +// public String getAge; +// private String name; +//} diff --git a/elt-data-access/src/main/java/com/bwie/muyu/base/hander/DataEngineHandler.java b/elt-data-access/src/main/java/com/bwie/muyu/base/hander/DataEngineHandler.java index 6429370..3358958 100644 --- a/elt-data-access/src/main/java/com/bwie/muyu/base/hander/DataEngineHandler.java +++ b/elt-data-access/src/main/java/com/bwie/muyu/base/hander/DataEngineHandler.java @@ -1,23 +1,23 @@ -package com.bwie.muyu.base.hander; - -import lombok.Data; - -/** - * @Author:qdm - * @Package:com.bwie.muyu.base.hander - * @Project:cloud-etl-engine - * @name:DataEngineHandler - * @Date:2024/8/29 20:26 - */ -@Data -public class DataEngineHandler { - public static final ThreadLocal DataEngineHandler = new ThreadLocal<>(); - - public static void set(final Object handler) { - DataEngineHandler.set(handler); - } - - public static T get() { - return (T) DataEngineHandler.get(); - } -} +//package com.bwie.muyu.base.hander; +// +//import lombok.Data; +// +///** +// * @Author:qdm +// * @Package:com.bwie.muyu.base.hander +// * @Project:cloud-etl-engine +// * @name:DataEngineHandler +// * @Date:2024/8/29 20:26 +// */ +//@Data +//public class DataEngineHandler { +// public static final ThreadLocal DataEngineHandler = new ThreadLocal<>(); +// +// public static void set(final Object handler) { +// DataEngineHandler.set(handler); +// } +// +// public static T get() { +// return (T) DataEngineHandler.get(); +// } +//} diff --git a/elt-data-access/src/main/java/com/bwie/muyu/base/hander/DataEngineValue.java b/elt-data-access/src/main/java/com/bwie/muyu/base/hander/DataEngineValue.java index 467f8fb..eaec237 100644 --- a/elt-data-access/src/main/java/com/bwie/muyu/base/hander/DataEngineValue.java +++ b/elt-data-access/src/main/java/com/bwie/muyu/base/hander/DataEngineValue.java @@ -1,28 +1,28 @@ -package com.bwie.muyu.base.hander; - -/** - * @Author:qdm - * @Package:com.bwie.muyu.base.hander - * @Project:cloud-etl-engine - * @name:DataEngineValue - * @Date:2024/8/29 20:31 - */ - -public class DataEngineValue { - - public static void set(DataEngineValue dataEngineValue) { - DataEngineHandler.set(dataEngineValue); - } - - public static DataEngineValue get() { - return DataEngineHandler.get(); - } - - public static Object getValue() { - return get().getValue(); - } - - public static Integer getIntegerValue() { - return get().getIntegerValue(); - } -} +//package com.bwie.muyu.base.hander; +// +///** +// * @Author:qdm +// * @Package:com.bwie.muyu.base.hander +// * @Project:cloud-etl-engine +// * @name:DataEngineValue +// * @Date:2024/8/29 20:31 +// */ +// +//public class DataEngineValue { +// +// public static void set(DataEngineValue dataEngineValue) { +// DataEngineHandler.set(dataEngineValue); +// } +// +// public static DataEngineValue get() { +// return DataEngineHandler.get(); +// } +// +// public static Object getValue() { +// return get().getValue(); +// } +// +// public static Integer getIntegerValue() { +// return get().getIntegerValue(); +// } +//} diff --git a/logs/cloud-etl-engine/info.2024-08-29.log b/logs/cloud-etl-engine/info.2024-08-29.log new file mode 100644 index 0000000..97c723b --- /dev/null +++ b/logs/cloud-etl-engine/info.2024-08-29.log @@ -0,0 +1,363 @@ +11:21:21.807 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +11:21:25.467 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +11:21:25.467 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +11:21:25.555 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +11:21:47.175 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +11:21:47.177 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] +14:01:09.950 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +14:01:12.577 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +14:01:12.577 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +14:01:12.656 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +14:01:12.819 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown +14:01:13.035 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +14:01:16.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown +14:01:16.348 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +14:01:19.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown +14:01:19.767 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +14:01:22.783 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown +14:01:23.297 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +14:01:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown +14:01:26.905 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +14:01:29.909 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown +14:01:30.611 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +14:01:33.621 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown +14:01:34.227 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +14:01:34.229 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] +14:18:54.448 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +14:18:57.256 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9703"] +14:18:57.258 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +14:18:57.258 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +14:18:57.274 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown +14:18:57.349 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +14:18:57.489 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +14:19:00.503 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown +14:19:00.816 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +14:19:03.825 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown +14:19:04.232 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +14:19:07.243 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown +14:19:07.756 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +14:19:10.764 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown +14:19:11.373 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +14:19:14.387 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown +14:19:15.101 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +14:19:18.109 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown +14:19:18.914 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +14:19:18.974 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +14:19:18.976 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] +14:24:19.448 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +14:24:22.468 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +14:24:22.468 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +14:24:22.552 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +14:24:39.991 [nacos-grpc-client-executor-47.116.184.54-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 2600 +14:24:39.991 [nacos-grpc-client-executor-47.116.184.54-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 2600 +14:24:40.250 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Server healthy check fail, currentConnection = 1724912666053_117.143.60.22_53732 +14:24:40.251 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +14:24:40.251 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +14:24:40.327 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1724912687476_139.224.212.27_63135 +14:24:40.327 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1724912666053_117.143.60.22_53732 +14:24:40.327 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724912666053_117.143.60.22_53732 +14:24:40.336 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Notify disconnected event to listeners +14:24:40.336 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] DisConnected,clear listen context... +14:24:40.336 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Notify connected event to listeners. +14:24:40.336 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Connected,notify listen context... +14:24:44.186 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +14:24:44.188 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] +14:26:22.402 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +14:26:25.187 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +14:26:25.188 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +14:26:25.272 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +14:26:27.496 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +14:26:27.497 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success +14:26:27.497 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +14:26:28.874 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +14:26:36.622 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +14:26:36.623 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +14:26:36.623 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +14:26:36.629 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +14:26:36.634 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +14:26:36.634 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +14:26:36.732 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of ee0662ff-efa1-4bd9-a668-7036f4a30b6c +14:26:36.734 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->ee0662ff-efa1-4bd9-a668-7036f4a30b6c +14:26:36.734 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +14:26:36.736 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +14:26:36.736 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +14:26:36.736 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848} +14:26:36.737 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +14:26:36.827 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724912803970_139.224.212.27_61891 +14:26:36.827 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +14:26:36.827 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Notify connected event to listeners. +14:26:36.827 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001f5424d1928 +14:26:36.827 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +14:26:36.829 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-engine with instance Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +14:26:36.853 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished +14:26:38.066 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 21.141 seconds (process running for 22.11) +14:26:38.076 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +14:26:38.076 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +14:26:38.077 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine.yml+DEFAULT_GROUP+cloud-2112 +14:26:38.089 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine.yml, group=DEFAULT_GROUP, cnt=1 +14:26:38.090 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP +14:26:38.091 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine+DEFAULT_GROUP+cloud-2112 +14:26:38.091 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1 +14:26:38.091 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP +14:26:38.093 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine-dev.yml+DEFAULT_GROUP+cloud-2112 +14:26:38.094 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP, cnt=1 +14:26:38.094 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP +14:26:39.353 [RMI TCP Connection(17)-172.16.0.2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +14:26:50.570 [http-nio-9703-exec-5] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 397 ms +19:47:38.384 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +19:47:41.720 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +19:47:41.720 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +19:47:41.818 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +19:47:44.655 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +19:47:44.656 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success +19:47:44.656 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +19:47:46.125 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +19:47:54.211 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +19:47:54.212 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +19:47:54.212 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +19:47:54.219 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +19:47:54.225 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +19:47:54.225 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +19:47:54.328 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of ec1cff5d-5087-4f09-b9ed-df6f462dec98 +19:47:54.330 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->ec1cff5d-5087-4f09-b9ed-df6f462dec98 +19:47:54.330 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec1cff5d-5087-4f09-b9ed-df6f462dec98] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +19:47:54.330 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec1cff5d-5087-4f09-b9ed-df6f462dec98] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +19:47:54.331 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec1cff5d-5087-4f09-b9ed-df6f462dec98] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +19:47:54.331 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec1cff5d-5087-4f09-b9ed-df6f462dec98] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848} +19:47:54.332 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +19:47:54.374 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec1cff5d-5087-4f09-b9ed-df6f462dec98] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724932081600_139.224.212.27_62309 +19:47:54.374 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec1cff5d-5087-4f09-b9ed-df6f462dec98] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +19:47:54.374 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec1cff5d-5087-4f09-b9ed-df6f462dec98] Notify connected event to listeners. +19:47:54.374 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec1cff5d-5087-4f09-b9ed-df6f462dec98] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000002205c4d16e8 +19:47:54.374 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +19:47:54.376 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-engine with instance Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +19:47:54.396 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished +19:47:55.623 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 22.898 seconds (process running for 24.043) +19:47:55.633 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +19:47:55.633 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +19:47:55.634 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine.yml+DEFAULT_GROUP+cloud-2112 +19:47:55.648 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine.yml, group=DEFAULT_GROUP, cnt=1 +19:47:55.648 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP +19:47:55.649 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine+DEFAULT_GROUP+cloud-2112 +19:47:55.649 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1 +19:47:55.649 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP +19:47:55.651 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine-dev.yml+DEFAULT_GROUP+cloud-2112 +19:47:55.651 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP, cnt=1 +19:47:55.651 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP +19:47:55.734 [RMI TCP Connection(5)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +19:48:04.272 [http-nio-9703-exec-5] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 430 ms +19:52:26.155 [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) +19:52:26.170 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /172.13.1.1:6379 +19:52:31.067 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 172.13.1.1/:6379 +20:43:36.632 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +20:43:39.642 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +20:43:39.642 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +20:43:39.745 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +20:43:41.083 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +20:43:41.085 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success +20:43:41.085 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +20:43:42.425 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +20:43:49.973 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +20:43:49.974 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +20:43:49.974 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +20:43:49.980 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +20:43:49.984 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +20:43:49.985 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +20:43:50.092 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of cb129bab-89a6-4f3e-b3ca-350b7031c5e1 +20:43:50.095 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->cb129bab-89a6-4f3e-b3ca-350b7031c5e1 +20:43:50.095 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cb129bab-89a6-4f3e-b3ca-350b7031c5e1] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +20:43:50.095 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cb129bab-89a6-4f3e-b3ca-350b7031c5e1] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +20:43:50.096 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cb129bab-89a6-4f3e-b3ca-350b7031c5e1] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +20:43:50.096 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cb129bab-89a6-4f3e-b3ca-350b7031c5e1] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848} +20:43:50.097 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +20:43:50.138 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cb129bab-89a6-4f3e-b3ca-350b7031c5e1] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724935437370_139.224.212.27_62232 +20:43:50.138 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cb129bab-89a6-4f3e-b3ca-350b7031c5e1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +20:43:50.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cb129bab-89a6-4f3e-b3ca-350b7031c5e1] Notify connected event to listeners. +20:43:50.138 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cb129bab-89a6-4f3e-b3ca-350b7031c5e1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000223db508000 +20:43:50.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +20:43:50.140 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-engine with instance Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +20:43:50.158 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished +20:43:51.360 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 20.164 seconds (process running for 21.136) +20:43:51.371 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +20:43:51.371 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +20:43:51.372 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine.yml+DEFAULT_GROUP+cloud-2112 +20:43:51.382 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine.yml, group=DEFAULT_GROUP, cnt=1 +20:43:51.382 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP +20:43:51.383 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine+DEFAULT_GROUP+cloud-2112 +20:43:51.383 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1 +20:43:51.383 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP +20:43:51.386 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine-dev.yml+DEFAULT_GROUP+cloud-2112 +20:43:51.386 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP, cnt=1 +20:43:51.386 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP +20:43:51.672 [RMI TCP Connection(5)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +20:47:24.228 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +20:47:24.229 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-engine with instance: Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +20:47:24.243 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +20:47:24.245 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +20:47:24.245 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +20:47:24.246 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +20:47:24.246 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +20:47:24.246 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +20:47:24.246 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +20:47:24.246 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +20:47:24.246 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +20:47:24.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +20:47:24.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +20:47:24.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +20:47:24.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->cb129bab-89a6-4f3e-b3ca-350b7031c5e1 +20:47:24.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@321530b3[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 71] +20:47:24.248 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +20:47:24.248 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@251ea37b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +20:47:24.248 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724935437370_139.224.212.27_62232 +20:47:24.255 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4009c08f[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 51] +20:47:24.255 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->cb129bab-89a6-4f3e-b3ca-350b7031c5e1 +20:47:24.256 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +20:47:24.256 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +20:47:24.256 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +20:47:24.263 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... +20:47:24.269 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... +20:47:24.277 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed +20:47:24.278 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, +20:47:24.278 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye +20:47:33.057 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +20:47:35.757 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +20:47:35.757 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +20:47:35.839 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +20:47:37.122 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +20:47:37.123 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success +20:47:37.123 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +20:47:37.208 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... +20:47:37.211 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... +20:47:37.216 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed +20:47:37.217 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, +20:47:37.217 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye +20:47:37.218 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] +20:47:56.221 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +20:47:59.042 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +20:47:59.042 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +20:47:59.170 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +20:48:00.574 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +20:48:00.576 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success +20:48:00.576 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +20:48:01.934 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +20:48:09.599 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +20:48:09.599 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +20:48:09.600 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +20:48:09.606 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +20:48:09.611 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +20:48:09.612 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +20:48:09.707 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f16ffbea-6e55-405e-8cc2-3bde529084cc +20:48:09.711 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->f16ffbea-6e55-405e-8cc2-3bde529084cc +20:48:09.711 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f16ffbea-6e55-405e-8cc2-3bde529084cc] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +20:48:09.712 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f16ffbea-6e55-405e-8cc2-3bde529084cc] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +20:48:09.712 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f16ffbea-6e55-405e-8cc2-3bde529084cc] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +20:48:09.713 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f16ffbea-6e55-405e-8cc2-3bde529084cc] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848} +20:48:09.713 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +20:48:09.768 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f16ffbea-6e55-405e-8cc2-3bde529084cc] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724935696988_139.224.212.27_63667 +20:48:09.769 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f16ffbea-6e55-405e-8cc2-3bde529084cc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +20:48:09.769 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f16ffbea-6e55-405e-8cc2-3bde529084cc] Notify connected event to listeners. +20:48:09.769 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f16ffbea-6e55-405e-8cc2-3bde529084cc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000002b4014df060 +20:48:09.769 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +20:48:09.770 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-engine with instance Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +20:48:09.839 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished +20:48:11.047 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 19.966 seconds (process running for 20.865) +20:48:11.057 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +20:48:11.057 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +20:48:11.058 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine.yml+DEFAULT_GROUP+cloud-2112 +20:48:11.070 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine.yml, group=DEFAULT_GROUP, cnt=1 +20:48:11.070 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP +20:48:11.071 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine+DEFAULT_GROUP+cloud-2112 +20:48:11.071 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1 +20:48:11.071 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP +20:48:11.073 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine-dev.yml+DEFAULT_GROUP+cloud-2112 +20:48:11.073 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP, cnt=1 +20:48:11.074 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP +20:48:11.529 [RMI TCP Connection(5)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +20:48:22.046 [http-nio-9703-exec-5] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 394 ms +20:59:53.814 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +20:59:53.815 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-engine with instance: Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +20:59:53.825 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->f16ffbea-6e55-405e-8cc2-3bde529084cc +20:59:53.829 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@7b6610b[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 234] +20:59:53.829 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +20:59:53.829 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@42da67a9[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +20:59:53.829 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724935696988_139.224.212.27_63667 +20:59:53.833 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@35057f68[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 144] +20:59:53.833 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->f16ffbea-6e55-405e-8cc2-3bde529084cc +20:59:53.834 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +20:59:53.834 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +20:59:53.834 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +20:59:53.839 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... +20:59:53.842 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... +20:59:53.845 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed +20:59:53.845 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, +20:59:53.845 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye +22:17:14.714 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +22:17:18.268 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +22:17:18.268 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +22:17:18.370 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +22:17:19.843 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +22:17:19.845 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success +22:17:19.845 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +22:17:21.326 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +22:17:29.257 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +22:17:29.258 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +22:17:29.258 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +22:17:29.264 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +22:17:29.270 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +22:17:29.270 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +22:17:29.369 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of e8c2ff65-9b44-4b11-b439-59949f2b02bd +22:17:29.371 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->e8c2ff65-9b44-4b11-b439-59949f2b02bd +22:17:29.371 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8c2ff65-9b44-4b11-b439-59949f2b02bd] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +22:17:29.371 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8c2ff65-9b44-4b11-b439-59949f2b02bd] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +22:17:29.372 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8c2ff65-9b44-4b11-b439-59949f2b02bd] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +22:17:29.372 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8c2ff65-9b44-4b11-b439-59949f2b02bd] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848} +22:17:29.372 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +22:17:29.421 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8c2ff65-9b44-4b11-b439-59949f2b02bd] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724941056661_139.224.212.27_62362 +22:17:29.421 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8c2ff65-9b44-4b11-b439-59949f2b02bd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +22:17:29.421 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8c2ff65-9b44-4b11-b439-59949f2b02bd] Notify connected event to listeners. +22:17:29.421 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8c2ff65-9b44-4b11-b439-59949f2b02bd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000002362e4e12a0 +22:17:29.421 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +22:17:29.423 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-engine with instance Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +22:17:29.441 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished +22:17:30.663 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 22.398 seconds (process running for 23.703) +22:17:30.675 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +22:17:30.675 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +22:17:30.676 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine.yml+DEFAULT_GROUP+cloud-2112 +22:17:30.688 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine.yml, group=DEFAULT_GROUP, cnt=1 +22:17:30.689 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP +22:17:30.689 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine+DEFAULT_GROUP+cloud-2112 +22:17:30.690 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1 +22:17:30.690 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP +22:17:30.693 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine-dev.yml+DEFAULT_GROUP+cloud-2112 +22:17:30.693 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP, cnt=1 +22:17:30.693 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP +22:17:31.155 [RMI TCP Connection(21)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +22:17:38.814 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +22:17:38.814 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-engine with instance: Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} diff --git a/logs/cloud-etl-engine/info.log b/logs/cloud-etl-engine/info.log index 97c723b..549a36f 100644 --- a/logs/cloud-etl-engine/info.log +++ b/logs/cloud-etl-engine/info.log @@ -1,363 +1,41 @@ -11:21:21.807 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -11:21:25.467 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -11:21:25.467 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -11:21:25.555 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -11:21:47.175 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -11:21:47.177 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -14:01:09.950 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -14:01:12.577 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -14:01:12.577 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -14:01:12.656 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -14:01:12.819 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown -14:01:13.035 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:01:16.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown -14:01:16.348 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:01:19.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown -14:01:19.767 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:01:22.783 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown -14:01:23.297 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:01:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown -14:01:26.905 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:01:29.909 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown -14:01:30.611 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:01:33.621 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ccfc5c6-75d6-4d70-b812-02c318309dc3_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown -14:01:34.227 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -14:01:34.229 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -14:18:54.448 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -14:18:57.256 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9703"] -14:18:57.258 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -14:18:57.258 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -14:18:57.274 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown -14:18:57.349 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -14:18:57.489 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:19:00.503 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown -14:19:00.816 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:19:03.825 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown -14:19:04.232 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:19:07.243 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown -14:19:07.756 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:19:10.764 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown -14:19:11.373 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:19:14.387 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown -14:19:15.101 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:19:18.109 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12440a6b-a1ac-4fe1-b3fa-e257cf5f45f0_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.184.54', server main port = 8848}, error = unknown -14:19:18.914 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:19:18.974 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -14:19:18.976 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -14:24:19.448 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -14:24:22.468 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -14:24:22.468 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -14:24:22.552 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -14:24:39.991 [nacos-grpc-client-executor-47.116.184.54-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 2600 -14:24:39.991 [nacos-grpc-client-executor-47.116.184.54-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 2600 -14:24:40.250 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Server healthy check fail, currentConnection = 1724912666053_117.143.60.22_53732 -14:24:40.251 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:24:40.251 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:24:40.327 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1724912687476_139.224.212.27_63135 -14:24:40.327 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1724912666053_117.143.60.22_53732 -14:24:40.327 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724912666053_117.143.60.22_53732 -14:24:40.336 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Notify disconnected event to listeners -14:24:40.336 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] DisConnected,clear listen context... -14:24:40.336 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Notify connected event to listeners. -14:24:40.336 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [34b0d6cf-fd4d-4dac-99ca-63e6eab15b79_config-0] Connected,notify listen context... -14:24:44.186 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -14:24:44.188 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -14:26:22.402 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -14:26:25.187 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -14:26:25.188 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -14:26:25.272 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -14:26:27.496 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -14:26:27.497 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -14:26:27.497 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -14:26:28.874 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -14:26:36.622 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -14:26:36.623 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -14:26:36.623 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -14:26:36.629 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -14:26:36.634 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -14:26:36.634 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -14:26:36.732 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of ee0662ff-efa1-4bd9-a668-7036f4a30b6c -14:26:36.734 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->ee0662ff-efa1-4bd9-a668-7036f4a30b6c -14:26:36.734 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:26:36.736 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:26:36.736 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:26:36.736 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848} -14:26:36.737 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:26:36.827 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724912803970_139.224.212.27_61891 -14:26:36.827 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:26:36.827 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Notify connected event to listeners. -14:26:36.827 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ee0662ff-efa1-4bd9-a668-7036f4a30b6c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001f5424d1928 -14:26:36.827 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -14:26:36.829 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-engine with instance Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -14:26:36.853 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished -14:26:38.066 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 21.141 seconds (process running for 22.11) -14:26:38.076 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -14:26:38.076 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -14:26:38.077 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine.yml+DEFAULT_GROUP+cloud-2112 -14:26:38.089 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine.yml, group=DEFAULT_GROUP, cnt=1 -14:26:38.090 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP -14:26:38.091 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine+DEFAULT_GROUP+cloud-2112 -14:26:38.091 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1 -14:26:38.091 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP -14:26:38.093 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine-dev.yml+DEFAULT_GROUP+cloud-2112 -14:26:38.094 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP, cnt=1 -14:26:38.094 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP -14:26:39.353 [RMI TCP Connection(17)-172.16.0.2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -14:26:50.570 [http-nio-9703-exec-5] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 397 ms -19:47:38.384 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:47:41.720 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:47:41.720 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:47:41.818 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:47:44.655 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -19:47:44.656 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -19:47:44.656 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -19:47:46.125 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:47:54.211 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:47:54.212 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:47:54.212 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:47:54.219 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:47:54.225 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:47:54.225 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:47:54.328 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of ec1cff5d-5087-4f09-b9ed-df6f462dec98 -19:47:54.330 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->ec1cff5d-5087-4f09-b9ed-df6f462dec98 -19:47:54.330 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec1cff5d-5087-4f09-b9ed-df6f462dec98] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:47:54.330 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec1cff5d-5087-4f09-b9ed-df6f462dec98] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:47:54.331 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec1cff5d-5087-4f09-b9ed-df6f462dec98] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:47:54.331 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec1cff5d-5087-4f09-b9ed-df6f462dec98] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848} -19:47:54.332 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:47:54.374 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec1cff5d-5087-4f09-b9ed-df6f462dec98] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724932081600_139.224.212.27_62309 -19:47:54.374 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec1cff5d-5087-4f09-b9ed-df6f462dec98] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:47:54.374 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec1cff5d-5087-4f09-b9ed-df6f462dec98] Notify connected event to listeners. -19:47:54.374 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec1cff5d-5087-4f09-b9ed-df6f462dec98] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000002205c4d16e8 -19:47:54.374 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:47:54.376 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-engine with instance Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:47:54.396 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished -19:47:55.623 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 22.898 seconds (process running for 24.043) -19:47:55.633 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:47:55.633 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:47:55.634 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine.yml+DEFAULT_GROUP+cloud-2112 -19:47:55.648 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine.yml, group=DEFAULT_GROUP, cnt=1 -19:47:55.648 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP -19:47:55.649 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine+DEFAULT_GROUP+cloud-2112 -19:47:55.649 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1 -19:47:55.649 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP -19:47:55.651 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine-dev.yml+DEFAULT_GROUP+cloud-2112 -19:47:55.651 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:47:55.651 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP -19:47:55.734 [RMI TCP Connection(5)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:48:04.272 [http-nio-9703-exec-5] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 430 ms -19:52:26.155 [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) -19:52:26.170 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /172.13.1.1:6379 -19:52:31.067 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 172.13.1.1/:6379 -20:43:36.632 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:43:39.642 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:43:39.642 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:43:39.745 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:43:41.083 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -20:43:41.085 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -20:43:41.085 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -20:43:42.425 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:43:49.973 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:43:49.974 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:43:49.974 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:43:49.980 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:43:49.984 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -20:43:49.985 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -20:43:50.092 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of cb129bab-89a6-4f3e-b3ca-350b7031c5e1 -20:43:50.095 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->cb129bab-89a6-4f3e-b3ca-350b7031c5e1 -20:43:50.095 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cb129bab-89a6-4f3e-b3ca-350b7031c5e1] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:43:50.095 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cb129bab-89a6-4f3e-b3ca-350b7031c5e1] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:43:50.096 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cb129bab-89a6-4f3e-b3ca-350b7031c5e1] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:43:50.096 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cb129bab-89a6-4f3e-b3ca-350b7031c5e1] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848} -20:43:50.097 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:43:50.138 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cb129bab-89a6-4f3e-b3ca-350b7031c5e1] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724935437370_139.224.212.27_62232 -20:43:50.138 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cb129bab-89a6-4f3e-b3ca-350b7031c5e1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:43:50.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cb129bab-89a6-4f3e-b3ca-350b7031c5e1] Notify connected event to listeners. -20:43:50.138 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cb129bab-89a6-4f3e-b3ca-350b7031c5e1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000223db508000 -20:43:50.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:43:50.140 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-engine with instance Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -20:43:50.158 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished -20:43:51.360 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 20.164 seconds (process running for 21.136) -20:43:51.371 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:43:51.371 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:43:51.372 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine.yml+DEFAULT_GROUP+cloud-2112 -20:43:51.382 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine.yml, group=DEFAULT_GROUP, cnt=1 -20:43:51.382 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP -20:43:51.383 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine+DEFAULT_GROUP+cloud-2112 -20:43:51.383 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1 -20:43:51.383 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP -20:43:51.386 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine-dev.yml+DEFAULT_GROUP+cloud-2112 -20:43:51.386 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:43:51.386 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP -20:43:51.672 [RMI TCP Connection(5)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:47:24.228 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:47:24.229 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-engine with instance: Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:47:24.243 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:47:24.245 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:47:24.245 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:47:24.246 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:47:24.246 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:47:24.246 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:47:24.246 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:47:24.246 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:47:24.246 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:47:24.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:47:24.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:47:24.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:47:24.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->cb129bab-89a6-4f3e-b3ca-350b7031c5e1 -20:47:24.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@321530b3[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 71] -20:47:24.248 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:47:24.248 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@251ea37b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:47:24.248 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724935437370_139.224.212.27_62232 -20:47:24.255 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4009c08f[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 51] -20:47:24.255 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->cb129bab-89a6-4f3e-b3ca-350b7031c5e1 -20:47:24.256 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:47:24.256 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:47:24.256 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:47:24.263 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -20:47:24.269 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -20:47:24.277 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -20:47:24.278 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -20:47:24.278 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -20:47:33.057 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:47:35.757 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:47:35.757 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:47:35.839 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:47:37.122 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -20:47:37.123 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -20:47:37.123 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -20:47:37.208 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -20:47:37.211 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -20:47:37.216 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -20:47:37.217 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -20:47:37.217 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -20:47:37.218 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -20:47:56.221 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:47:59.042 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:47:59.042 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:47:59.170 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:48:00.574 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -20:48:00.576 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -20:48:00.576 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -20:48:01.934 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:48:09.599 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:48:09.599 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:48:09.600 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:48:09.606 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:48:09.611 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -20:48:09.612 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -20:48:09.707 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f16ffbea-6e55-405e-8cc2-3bde529084cc -20:48:09.711 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->f16ffbea-6e55-405e-8cc2-3bde529084cc -20:48:09.711 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f16ffbea-6e55-405e-8cc2-3bde529084cc] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:48:09.712 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f16ffbea-6e55-405e-8cc2-3bde529084cc] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:48:09.712 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f16ffbea-6e55-405e-8cc2-3bde529084cc] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:48:09.713 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f16ffbea-6e55-405e-8cc2-3bde529084cc] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848} -20:48:09.713 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:48:09.768 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f16ffbea-6e55-405e-8cc2-3bde529084cc] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724935696988_139.224.212.27_63667 -20:48:09.769 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f16ffbea-6e55-405e-8cc2-3bde529084cc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:48:09.769 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f16ffbea-6e55-405e-8cc2-3bde529084cc] Notify connected event to listeners. -20:48:09.769 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f16ffbea-6e55-405e-8cc2-3bde529084cc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000002b4014df060 -20:48:09.769 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:48:09.770 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-engine with instance Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -20:48:09.839 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished -20:48:11.047 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 19.966 seconds (process running for 20.865) -20:48:11.057 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:48:11.057 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:48:11.058 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine.yml+DEFAULT_GROUP+cloud-2112 -20:48:11.070 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine.yml, group=DEFAULT_GROUP, cnt=1 -20:48:11.070 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP -20:48:11.071 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine+DEFAULT_GROUP+cloud-2112 -20:48:11.071 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1 -20:48:11.071 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP -20:48:11.073 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine-dev.yml+DEFAULT_GROUP+cloud-2112 -20:48:11.073 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:48:11.074 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP -20:48:11.529 [RMI TCP Connection(5)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:48:22.046 [http-nio-9703-exec-5] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 394 ms -20:59:53.814 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:59:53.815 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-engine with instance: Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:59:53.825 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:59:53.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->f16ffbea-6e55-405e-8cc2-3bde529084cc -20:59:53.829 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@7b6610b[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 234] -20:59:53.829 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:59:53.829 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@42da67a9[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:59:53.829 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724935696988_139.224.212.27_63667 -20:59:53.833 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@35057f68[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 144] -20:59:53.833 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->f16ffbea-6e55-405e-8cc2-3bde529084cc -20:59:53.834 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:59:53.834 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:59:53.834 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:59:53.839 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -20:59:53.842 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -20:59:53.845 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -20:59:53.845 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -20:59:53.845 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -22:17:14.714 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -22:17:18.268 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -22:17:18.268 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -22:17:18.370 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -22:17:19.843 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -22:17:19.845 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -22:17:19.845 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -22:17:21.326 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -22:17:29.257 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -22:17:29.258 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -22:17:29.258 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -22:17:29.264 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -22:17:29.270 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -22:17:29.270 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -22:17:29.369 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of e8c2ff65-9b44-4b11-b439-59949f2b02bd -22:17:29.371 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->e8c2ff65-9b44-4b11-b439-59949f2b02bd -22:17:29.371 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8c2ff65-9b44-4b11-b439-59949f2b02bd] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -22:17:29.371 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8c2ff65-9b44-4b11-b439-59949f2b02bd] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -22:17:29.372 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8c2ff65-9b44-4b11-b439-59949f2b02bd] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -22:17:29.372 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8c2ff65-9b44-4b11-b439-59949f2b02bd] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848} -22:17:29.372 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -22:17:29.421 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8c2ff65-9b44-4b11-b439-59949f2b02bd] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1724941056661_139.224.212.27_62362 -22:17:29.421 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8c2ff65-9b44-4b11-b439-59949f2b02bd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -22:17:29.421 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8c2ff65-9b44-4b11-b439-59949f2b02bd] Notify connected event to listeners. -22:17:29.421 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8c2ff65-9b44-4b11-b439-59949f2b02bd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000002362e4e12a0 -22:17:29.421 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -22:17:29.423 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-engine with instance Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -22:17:29.441 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished -22:17:30.663 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 22.398 seconds (process running for 23.703) -22:17:30.675 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -22:17:30.675 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -22:17:30.676 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine.yml+DEFAULT_GROUP+cloud-2112 -22:17:30.688 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine.yml, group=DEFAULT_GROUP, cnt=1 -22:17:30.689 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP -22:17:30.689 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine+DEFAULT_GROUP+cloud-2112 -22:17:30.690 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1 -22:17:30.690 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP -22:17:30.693 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine-dev.yml+DEFAULT_GROUP+cloud-2112 -22:17:30.693 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP, cnt=1 -22:17:30.693 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP -22:17:31.155 [RMI TCP Connection(21)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -22:17:38.814 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -22:17:38.814 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-engine with instance: Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +18:51:05.906 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +18:51:08.719 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +18:51:08.719 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +18:51:08.800 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +18:51:10.110 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +18:51:10.112 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success +18:51:10.112 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +18:51:11.417 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +18:51:18.885 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +18:51:18.886 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +18:51:18.886 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +18:51:18.892 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +18:51:18.897 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +18:51:18.897 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +18:51:18.995 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 3fd89f63-451c-45ce-a603-6b71e2eddedd +18:51:18.998 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->3fd89f63-451c-45ce-a603-6b71e2eddedd +18:51:18.998 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3fd89f63-451c-45ce-a603-6b71e2eddedd] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +18:51:18.999 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3fd89f63-451c-45ce-a603-6b71e2eddedd] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +18:51:18.999 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3fd89f63-451c-45ce-a603-6b71e2eddedd] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +18:51:18.999 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3fd89f63-451c-45ce-a603-6b71e2eddedd] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848} +18:51:19.000 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +18:51:19.055 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3fd89f63-451c-45ce-a603-6b71e2eddedd] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725015087326_139.224.212.27_62093 +18:51:19.056 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3fd89f63-451c-45ce-a603-6b71e2eddedd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +18:51:19.056 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3fd89f63-451c-45ce-a603-6b71e2eddedd] Notify connected event to listeners. +18:51:19.056 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3fd89f63-451c-45ce-a603-6b71e2eddedd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000291934d0678 +18:51:19.056 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +18:51:19.057 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-engine with instance Instance{instanceId='null', ip='192.168.52.1', port=9703, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +18:51:19.073 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished +18:51:20.280 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 19.799 seconds (process running for 20.891) +18:51:20.291 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +18:51:20.291 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +18:51:20.292 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine.yml+DEFAULT_GROUP+cloud-2112 +18:51:20.304 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine.yml, group=DEFAULT_GROUP, cnt=1 +18:51:20.305 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP +18:51:20.306 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine+DEFAULT_GROUP+cloud-2112 +18:51:20.306 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1 +18:51:20.312 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP +18:51:20.315 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-47.116.184.54_8848] [subscribe] cloud-engine-dev.yml+DEFAULT_GROUP+cloud-2112 +18:51:20.315 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP, cnt=1 +18:51:20.315 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP +18:51:20.609 [RMI TCP Connection(2)-10.100.28.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'