.class工具类测试
commit
e4fcf5fadd
|
@ -1,6 +1,5 @@
|
||||||
package com.muyu.Engineclient;
|
package com.muyu.Engineclient;
|
||||||
|
|
||||||
import com.muyu.common.core.domain.Result;
|
|
||||||
import com.muyu.domain.EngineVersion;
|
import com.muyu.domain.EngineVersion;
|
||||||
import com.muyu.remote.RemoteVersionService;
|
import com.muyu.remote.RemoteVersionService;
|
||||||
import lombok.extern.log4j.Log4j2;
|
import lombok.extern.log4j.Log4j2;
|
||||||
|
|
|
@ -18,10 +18,12 @@
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.muyu</groupId>
|
<groupId>com.muyu</groupId>
|
||||||
<artifactId>cloud-common-core</artifactId>
|
<artifactId>cloud-common-core</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.muyu</groupId>
|
<groupId>com.muyu</groupId>
|
||||||
<artifactId>cloud-common-security</artifactId>
|
<artifactId>cloud-common-security</artifactId>
|
||||||
|
@ -33,6 +35,13 @@
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.aliyun.oss</groupId>
|
||||||
|
<artifactId>aliyun-sdk-oss</artifactId>
|
||||||
|
<version>3.17.4</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- <dependency>-->
|
<!-- <dependency>-->
|
||||||
<!-- <groupId>org.springframework.boot</groupId>-->
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
||||||
<!-- <artifactId>spring-boot-starter-openapi</artifactId>-->
|
<!-- <artifactId>spring-boot-starter-openapi</artifactId>-->
|
||||||
|
|
|
@ -0,0 +1,81 @@
|
||||||
|
package com.muyu.domain;
|
||||||
|
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author:qdm
|
||||||
|
* @Package:com.muyu.domain
|
||||||
|
* @Project:cloud-etl-engine
|
||||||
|
* @name:JavaClass
|
||||||
|
* @Date:2024/9/3 19:04
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
public class JavaClass {
|
||||||
|
/**
|
||||||
|
* 主键
|
||||||
|
*/
|
||||||
|
private Integer id;
|
||||||
|
/**
|
||||||
|
* 姓名
|
||||||
|
*/
|
||||||
|
private String name;
|
||||||
|
/**
|
||||||
|
* 性别
|
||||||
|
*/
|
||||||
|
private String sex;
|
||||||
|
/**
|
||||||
|
* 描述
|
||||||
|
*/
|
||||||
|
private String desc;
|
||||||
|
/**
|
||||||
|
* 价格
|
||||||
|
*/
|
||||||
|
private BigDecimal price;
|
||||||
|
/**
|
||||||
|
* 分数
|
||||||
|
*/
|
||||||
|
private Double score;
|
||||||
|
/**
|
||||||
|
* 身份证
|
||||||
|
*/
|
||||||
|
private String idCard;
|
||||||
|
/**
|
||||||
|
* 年龄
|
||||||
|
*/
|
||||||
|
private Integer age;
|
||||||
|
/**
|
||||||
|
* 地址
|
||||||
|
*/
|
||||||
|
private String address;
|
||||||
|
/**
|
||||||
|
* 邮箱
|
||||||
|
*/
|
||||||
|
private String email;
|
||||||
|
/**
|
||||||
|
* 电话
|
||||||
|
*/
|
||||||
|
private String phone;
|
||||||
|
/**
|
||||||
|
* 创建人
|
||||||
|
*/
|
||||||
|
private Integer createBy;
|
||||||
|
/**
|
||||||
|
* 修改人
|
||||||
|
*/
|
||||||
|
private Integer updateBy;
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
private Date createTime;
|
||||||
|
/**
|
||||||
|
* 修改时间
|
||||||
|
*/
|
||||||
|
private Date updateTime;
|
||||||
|
}
|
|
@ -19,7 +19,6 @@
|
||||||
<version>1.0.0</version>
|
<version>1.0.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
<!-- SpringCloud Alibaba Nacos -->
|
<!-- SpringCloud Alibaba Nacos -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.alibaba.cloud</groupId>
|
<groupId>com.alibaba.cloud</groupId>
|
||||||
|
@ -44,8 +43,12 @@
|
||||||
<artifactId>spring-boot-starter-actuator</artifactId>
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<<<<<<< HEAD
|
||||||
|
|
||||||
<!-- //创建测试工程,引入依赖-->
|
<!-- //创建测试工程,引入依赖-->
|
||||||
|
=======
|
||||||
|
<!-- //创建测试工程,引入依赖-->
|
||||||
|
>>>>>>> 6153133e0ae6ba8fbc2d841bc887a2893fd758a4
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.aliyun.oss</groupId>
|
<groupId>com.aliyun.oss</groupId>
|
||||||
<artifactId>aliyun-sdk-oss</artifactId>
|
<artifactId>aliyun-sdk-oss</artifactId>
|
||||||
|
@ -57,6 +60,10 @@
|
||||||
<artifactId>jaxb-api</artifactId>
|
<artifactId>jaxb-api</artifactId>
|
||||||
<version>2.3.1</version>
|
<version>2.3.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<<<<<<< HEAD
|
||||||
|
=======
|
||||||
|
|
||||||
|
>>>>>>> 6153133e0ae6ba8fbc2d841bc887a2893fd758a4
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javax.activation</groupId>
|
<groupId>javax.activation</groupId>
|
||||||
<artifactId>activation</artifactId>
|
<artifactId>activation</artifactId>
|
||||||
|
@ -114,8 +121,11 @@
|
||||||
<artifactId>junit</artifactId>
|
<artifactId>junit</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<<<<<<< HEAD
|
||||||
|
|
||||||
|
|
||||||
|
=======
|
||||||
|
>>>>>>> 6153133e0ae6ba8fbc2d841bc887a2893fd758a4
|
||||||
<!-- <!– XllJob定时任务 –>-->
|
<!-- <!– XllJob定时任务 –>-->
|
||||||
<!-- <dependency>-->
|
<!-- <dependency>-->
|
||||||
<!-- <groupId>com.muyu</groupId>-->
|
<!-- <groupId>com.muyu</groupId>-->
|
||||||
|
@ -132,7 +142,6 @@
|
||||||
<build>
|
<build>
|
||||||
<finalName>cloud-engine</finalName>
|
<finalName>cloud-engine</finalName>
|
||||||
|
|
||||||
|
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
|
|
@ -1,13 +1,9 @@
|
||||||
package com.muyu.controller;
|
package com.muyu.controller;
|
||||||
|
|
||||||
import com.muyu.common.core.utils.poi.ExcelUtil;
|
|
||||||
import com.muyu.common.core.web.controller.BaseController;
|
import com.muyu.common.core.web.controller.BaseController;
|
||||||
import com.muyu.domain.EngineLevelEntity;
|
import com.muyu.domain.EngineLevelEntity;
|
||||||
import com.muyu.domain.EngineMaintenance;
|
|
||||||
import com.muyu.domain.EngineVersion;
|
|
||||||
import com.muyu.domain.constants.Result;
|
import com.muyu.domain.constants.Result;
|
||||||
import com.muyu.service.EngineLevelService;
|
import com.muyu.service.EngineLevelService;
|
||||||
import jakarta.servlet.http.HttpServletResponse;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,11 @@ import com.muyu.req.VersionClassCreateReq;
|
||||||
import com.muyu.resp.EngineConfigScopeResp;
|
import com.muyu.resp.EngineConfigScopeResp;
|
||||||
import com.muyu.resp.VersionClassCreateResp;
|
import com.muyu.resp.VersionClassCreateResp;
|
||||||
import com.muyu.service.EngineVersionService;
|
import com.muyu.service.EngineVersionService;
|
||||||
|
import com.muyu.utils.OssUpload;
|
||||||
import jakarta.servlet.http.HttpServletResponse;
|
import jakarta.servlet.http.HttpServletResponse;
|
||||||
|
import lombok.extern.log4j.Log4j2;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -24,13 +27,16 @@ import java.util.List;
|
||||||
* @name:EngineVersionController
|
* @name:EngineVersionController
|
||||||
* @Date:2024/8/22 21:59
|
* @Date:2024/8/22 21:59
|
||||||
*/
|
*/
|
||||||
|
@Component
|
||||||
@RestController
|
@RestController
|
||||||
|
@Log4j2
|
||||||
@RequestMapping("/version")
|
@RequestMapping("/version")
|
||||||
public class EngineVersionController extends BaseController {
|
public class EngineVersionController extends BaseController {
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
EngineVersionService engineVersionService;
|
EngineVersionService engineVersionService;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询引擎规则配置列表
|
* 查询引擎规则配置列表
|
||||||
*/
|
*/
|
||||||
|
@ -172,6 +178,9 @@ public class EngineVersionController extends BaseController {
|
||||||
*/
|
*/
|
||||||
@PostMapping("/insertVersion")
|
@PostMapping("/insertVersion")
|
||||||
public boolean insertVersion(@RequestBody EngineVersion engineVersion) {
|
public boolean insertVersion(@RequestBody EngineVersion engineVersion) {
|
||||||
|
log.info("数据是:{}"+engineVersion.getRuleContent());
|
||||||
|
OssUpload.uploadFiles(engineVersion.getRuleContent(), engineVersion.getVersionCode());
|
||||||
|
engineVersion.setId(null);
|
||||||
boolean insert = engineVersionService.insert(engineVersion);
|
boolean insert = engineVersionService.insert(engineVersion);
|
||||||
return insert;
|
return insert;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,5 +2,4 @@ package com.muyu.engine.value;
|
||||||
|
|
||||||
public class ENGINE_PHONE_TEST_V1 {
|
public class ENGINE_PHONE_TEST_V1 {
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,9 @@ import com.muyu.abstracts.DataValue;
|
||||||
|
|
||||||
public class DataEngineDataSetHandler {
|
public class DataEngineDataSetHandler {
|
||||||
|
|
||||||
public static void set(DataValue[][] dataDescribe){DataEngineHandler.set(dataDescribe);}
|
public static void set(DataValue[][] dataDescribe) {
|
||||||
|
DataEngineHandler.set(dataDescribe);
|
||||||
|
}
|
||||||
|
|
||||||
public static DataValue[][] get() {
|
public static DataValue[][] get() {
|
||||||
return DataEngineHandler.get();
|
return DataEngineHandler.get();
|
||||||
|
|
|
@ -20,9 +20,4 @@ public static void remove(){
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,9 @@ import com.muyu.abstracts.DataValue;
|
||||||
|
|
||||||
public class DataEngineRowHandler {
|
public class DataEngineRowHandler {
|
||||||
|
|
||||||
public static void set(DataValue[] dataDescribe){DataEngineHandler.set(dataDescribe);}
|
public static void set(DataValue[] dataDescribe) {
|
||||||
|
DataEngineHandler.set(dataDescribe);
|
||||||
|
}
|
||||||
|
|
||||||
public static DataValue[] get() {
|
public static DataValue[] get() {
|
||||||
return DataEngineHandler.get();
|
return DataEngineHandler.get();
|
||||||
|
|
|
@ -1,55 +1,119 @@
|
||||||
package com.muyu.input;
|
//<<<<<<< HEAD
|
||||||
|
//package com.muyu.input;
|
||||||
import com.aliyun.oss.ClientException;
|
//
|
||||||
import com.aliyun.oss.OSS;
|
//import com.aliyun.oss.ClientException;
|
||||||
import com.aliyun.oss.common.auth.*;
|
//import com.aliyun.oss.OSS;
|
||||||
import com.aliyun.oss.OSSClientBuilder;
|
//import com.aliyun.oss.common.auth.*;
|
||||||
import com.aliyun.oss.OSSException;
|
//import com.aliyun.oss.OSSClientBuilder;
|
||||||
import com.aliyun.oss.model.PutObjectRequest;
|
//import com.aliyun.oss.OSSException;
|
||||||
import com.aliyun.oss.model.PutObjectResult;
|
//import com.aliyun.oss.model.PutObjectRequest;
|
||||||
import java.io.FileInputStream;
|
//import com.aliyun.oss.model.PutObjectResult;
|
||||||
import java.io.InputStream;
|
//import java.io.FileInputStream;
|
||||||
|
//import java.io.InputStream;
|
||||||
public class Demo {
|
//
|
||||||
|
//public class Demo {
|
||||||
public static void main(String[] args) throws Exception {
|
//
|
||||||
// Endpoint以华东1(杭州)为例,其它Region请按实际情况填写。
|
// public static void main(String[] args) throws Exception {
|
||||||
String endpoint = "https://oss-cn-shanghai.aliyuncs.com";
|
// // Endpoint以华东1(杭州)为例,其它Region请按实际情况填写。
|
||||||
// 从环境变量中获取访问凭证。运行本代码示例之前,请确保已设置环境变量OSS_ACCESS_KEY_ID和OSS_ACCESS_KEY_SECRET。
|
// String endpoint = "https://oss-cn-shanghai.aliyuncs.com";
|
||||||
EnvironmentVariableCredentialsProvider credentialsProvider = CredentialsProviderFactory.newEnvironmentVariableCredentialsProvider();
|
// // 从环境变量中获取访问凭证。运行本代码示例之前,请确保已设置环境变量OSS_ACCESS_KEY_ID和OSS_ACCESS_KEY_SECRET。
|
||||||
// 填写Bucket名称,例如examplebucket。
|
// EnvironmentVariableCredentialsProvider credentialsProvider = CredentialsProviderFactory.newEnvironmentVariableCredentialsProvider();
|
||||||
String bucketName = "011811";
|
// // 填写Bucket名称,例如examplebucket。
|
||||||
// 填写Object完整路径,完整路径中不能包含Bucket名称,例如exampledir/exampleobject.txt。
|
// String bucketName = "011811";
|
||||||
String objectName = "localpath\\examplefile.txt";
|
// // 填写Object完整路径,完整路径中不能包含Bucket名称,例如exampledir/exampleobject.txt。
|
||||||
// 填写本地文件的完整路径,例如D:\\localpath\\examplefile.txt。
|
// String objectName = "localpath\\examplefile.txt";
|
||||||
// 如果未指定本地路径,则默认从示例程序所属项目对应本地路径中上传文件流。
|
// // 填写本地文件的完整路径,例如D:\\localpath\\examplefile.txt。
|
||||||
String filePath= "C:\\Users\\qdm\\Desktop\\Project\\CLOUD-ETL-UI-ENGINE\\cloud-etl-engine\\cloud-etl-server\\target\\";
|
// // 如果未指定本地路径,则默认从示例程序所属项目对应本地路径中上传文件流。
|
||||||
|
// String filePath= "C:\\Users\\qdm\\Desktop\\Project\\CLOUD-ETL-UI-ENGINE\\cloud-etl-engine\\cloud-etl-server\\target\\";
|
||||||
// 创建OSSClient实例。
|
//
|
||||||
OSS ossClient = new OSSClientBuilder().build(endpoint, credentialsProvider);
|
// // 创建OSSClient实例。
|
||||||
|
// OSS ossClient = new OSSClientBuilder().build(endpoint, credentialsProvider);
|
||||||
try {
|
//
|
||||||
InputStream inputStream = new FileInputStream(filePath);
|
// try {
|
||||||
// 创建PutObjectRequest对象。
|
// InputStream inputStream = new FileInputStream(filePath);
|
||||||
PutObjectRequest putObjectRequest = new PutObjectRequest(bucketName, objectName, inputStream);
|
// // 创建PutObjectRequest对象。
|
||||||
// 创建PutObject请求。
|
// PutObjectRequest putObjectRequest = new PutObjectRequest(bucketName, objectName, inputStream);
|
||||||
PutObjectResult result = ossClient.putObject(putObjectRequest);
|
// // 创建PutObject请求。
|
||||||
} catch (OSSException oe) {
|
// PutObjectResult result = ossClient.putObject(putObjectRequest);
|
||||||
System.out.println("Caught an OSSException, which means your request made it to OSS, "
|
// } catch (OSSException oe) {
|
||||||
+ "but was rejected with an error response for some reason.");
|
// System.out.println("Caught an OSSException, which means your request made it to OSS, "
|
||||||
System.out.println("Error Message:" + oe.getErrorMessage());
|
// + "but was rejected with an error response for some reason.");
|
||||||
System.out.println("Error Code:" + oe.getErrorCode());
|
// System.out.println("Error Message:" + oe.getErrorMessage());
|
||||||
System.out.println("Request ID:" + oe.getRequestId());
|
// System.out.println("Error Code:" + oe.getErrorCode());
|
||||||
System.out.println("Host ID:" + oe.getHostId());
|
// System.out.println("Request ID:" + oe.getRequestId());
|
||||||
} catch (ClientException ce) {
|
// System.out.println("Host ID:" + oe.getHostId());
|
||||||
System.out.println("Caught an ClientException, which means the client encountered "
|
// } catch (ClientException ce) {
|
||||||
+ "a serious internal problem while trying to communicate with OSS, "
|
// System.out.println("Caught an ClientException, which means the client encountered "
|
||||||
+ "such as not being able to access the network.");
|
// + "a serious internal problem while trying to communicate with OSS, "
|
||||||
System.out.println("Error Message:" + ce.getMessage());
|
// + "such as not being able to access the network.");
|
||||||
} finally {
|
// System.out.println("Error Message:" + ce.getMessage());
|
||||||
if (ossClient != null) {
|
// } finally {
|
||||||
ossClient.shutdown();
|
// if (ossClient != null) {
|
||||||
}
|
// ossClient.shutdown();
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
//}
|
||||||
|
//=======
|
||||||
|
////package com.muyu.input;
|
||||||
|
////
|
||||||
|
////import com.aliyun.oss.ClientException;
|
||||||
|
////import com.aliyun.oss.OSS;
|
||||||
|
////import com.aliyun.oss.common.auth.*;
|
||||||
|
////import com.aliyun.oss.OSSClientBuilder;
|
||||||
|
////import com.aliyun.oss.OSSException;
|
||||||
|
////import com.aliyun.oss.model.PutObjectRequest;
|
||||||
|
////import com.aliyun.oss.model.PutObjectResult;
|
||||||
|
////
|
||||||
|
////import java.io.FileInputStream;
|
||||||
|
////import java.io.InputStream;
|
||||||
|
////
|
||||||
|
////public class Demo {
|
||||||
|
////
|
||||||
|
//// public static void main(String[] args) throws Exception {
|
||||||
|
////
|
||||||
|
//// // Endpoint以华东1(杭州)为例,其它Region请按实际情况填写。
|
||||||
|
//// String endpoint = "https://oss-cn-shanghai.aliyuncs.com";
|
||||||
|
//// // 从环境变量中获取访问凭证。运行本代码示例之前,请确保已设置环境变量OSS_ACCESS_KEY_ID和OSS_ACCESS_KEY_SECRET。
|
||||||
|
//// EnvironmentVariableCredentialsProvider credentialsProvider = CredentialsProviderFactory.newEnvironmentVariableCredentialsProvider();
|
||||||
|
//// // 填写Bucket名称,例如examplebucket。
|
||||||
|
//// String bucketName = "011811";
|
||||||
|
//// // 填写Object完整路径,完整路径中不能包含Bucket名称,例如exampledir/exampleobject.txt。
|
||||||
|
//// String objectName = "cloud-etl-engine\\cloud-etl-engine\\cloud-etl-server\\target\\cloud-engine.jar";
|
||||||
|
//// // 填写本地文件的完整路径,例如D:\\localpath\\examplefile.txt。
|
||||||
|
//// // 如果未指定本地路径,则默认从示例程序所属项目对应本地路径中上传文件流。
|
||||||
|
//// String filePath = "D:\\cloud-etl-engine\\cloud-etl-engine\\cloud-etl-server\\target\\cloud-engine.jar";
|
||||||
|
////
|
||||||
|
//// // 创建OSSClient实例。
|
||||||
|
//// OSS ossClient = new OSSClientBuilder().build(endpoint, credentialsProvider);
|
||||||
|
////
|
||||||
|
//// try {
|
||||||
|
//// InputStream inputStream = new FileInputStream(filePath);
|
||||||
|
//// // 创建PutObjectRequest对象。
|
||||||
|
//// PutObjectRequest putObjectRequest = new PutObjectRequest(bucketName, objectName, inputStream);
|
||||||
|
//// // 创建PutObject请求。
|
||||||
|
//// PutObjectResult result = ossClient.putObject(putObjectRequest);
|
||||||
|
//// } catch (OSSException oe) {
|
||||||
|
//// System.out.println("Caught an OSSException, which means your request made it to OSS, "
|
||||||
|
//// + "but was rejected with an error response for some reason.");
|
||||||
|
//// System.out.println("Error Message:" + oe.getErrorMessage());
|
||||||
|
//// System.out.println("Error Code:" + oe.getErrorCode());
|
||||||
|
//// System.out.println("Request ID:" + oe.getRequestId());
|
||||||
|
//// System.out.println("Host ID:" + oe.getHostId());
|
||||||
|
//// } catch (ClientException ce) {
|
||||||
|
//// System.out.println("Caught an ClientException, which means the client encountered "
|
||||||
|
//// + "a serious internal problem while trying to communicate with OSS, "
|
||||||
|
//// + "such as not being able to access the network.");
|
||||||
|
//// System.out.println("Error Message:" + ce.getMessage());
|
||||||
|
//// } finally {
|
||||||
|
//// if (ossClient != null) {
|
||||||
|
//// ossClient.shutdown();
|
||||||
|
//// }
|
||||||
|
//// }
|
||||||
|
//// }
|
||||||
|
////
|
||||||
|
//// public static void main1(String[] args) {
|
||||||
|
//// System.out.println("你好世界");
|
||||||
|
//// }
|
||||||
|
////}
|
||||||
|
//>>>>>>> 6153133e0ae6ba8fbc2d841bc887a2893fd758a4
|
||||||
|
|
|
@ -2,7 +2,6 @@ package com.muyu.mapper;
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
import com.muyu.domain.EngineMaintenance;
|
import com.muyu.domain.EngineMaintenance;
|
||||||
import com.muyu.domain.EngineVersion;
|
|
||||||
import com.muyu.req.EngineMaintenanceQueryReq;
|
import com.muyu.req.EngineMaintenanceQueryReq;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
import org.apache.ibatis.annotations.Param;
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Tomcat
|
# Tomcat
|
||||||
server:
|
server:
|
||||||
port: 9703
|
port: 9706
|
||||||
|
|
||||||
# nacos线上地址
|
# nacos线上地址
|
||||||
nacos:
|
nacos:
|
||||||
|
|
|
@ -4,9 +4,11 @@
|
||||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
<mapper namespace="com.muyu.mapper.EngineMapper">
|
<mapper namespace="com.muyu.mapper.EngineMapper">
|
||||||
<insert id="add">
|
<insert id="add">
|
||||||
INSERT INTO `text`.`engine_maintenance` (`name`, `type`, `scope`, `engine_code`, `is_activate`, `status`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `version_id`)
|
INSERT INTO `text`.`engine_maintenance` (`name`, `type`, `scope`, `engine_code`, `is_activate`, `status`,
|
||||||
VALUES
|
`description`, `create_by`, `create_time`, `update_by`, `update_time`,
|
||||||
(#{name}, #{type}, #{scope}, #{engineCode}, #{isActivate}, #{status}, #{description}, #{createTime}, #{createTime}, #{updateTime}, #{updateTime}, #{remark}, #{versionId});
|
`remark`, `version_id`)
|
||||||
|
VALUES (#{name}, #{type}, #{scope}, #{engineCode}, #{isActivate}, #{status}, #{description}, #{createTime},
|
||||||
|
#{createTime}, #{updateTime}, #{updateTime}, #{remark}, #{versionId});
|
||||||
</insert>
|
</insert>
|
||||||
<!-- <update id="forbiddenEngine">-->
|
<!-- <update id="forbiddenEngine">-->
|
||||||
<!-- update engine_maintenance-->
|
<!-- update engine_maintenance-->
|
||||||
|
@ -60,6 +62,8 @@
|
||||||
</where>
|
</where>
|
||||||
</select>
|
</select>
|
||||||
<select id="select" resultType="com.muyu.domain.EngineMaintenance">
|
<select id="select" resultType="com.muyu.domain.EngineMaintenance">
|
||||||
select * from engine_maintenance where id = #{id}
|
select *
|
||||||
|
from engine_maintenance
|
||||||
|
where id = #{id}
|
||||||
</select>
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,640 @@
|
||||||
|
11:50:25.289 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||||
|
11:50:28.242 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||||
|
11:50:28.242 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||||
|
11:50:28.336 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||||
|
11:50:30.092 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||||
|
11:50:30.093 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||||
|
11:50:30.093 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||||
|
11:50:31.515 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||||
|
11:50:39.142 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||||
|
11:50:39.142 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||||
|
11:50:39.143 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||||
|
11:50:39.150 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||||
|
11:50:39.155 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||||
|
11:50:39.155 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||||
|
11:50:39.257 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of d34c71bd-6ca3-4e58-8827-79bb660c76a7
|
||||||
|
11:50:39.260 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->d34c71bd-6ca3-4e58-8827-79bb660c76a7
|
||||||
|
11:50:39.260 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d34c71bd-6ca3-4e58-8827-79bb660c76a7] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||||
|
11:50:39.260 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d34c71bd-6ca3-4e58-8827-79bb660c76a7] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||||
|
11:50:39.261 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d34c71bd-6ca3-4e58-8827-79bb660c76a7] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||||
|
11:50:39.261 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d34c71bd-6ca3-4e58-8827-79bb660c76a7] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
||||||
|
11:50:39.261 [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}
|
||||||
|
11:50:39.324 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d34c71bd-6ca3-4e58-8827-79bb660c76a7] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725249053789_139.224.212.27_63604
|
||||||
|
11:50:39.324 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d34c71bd-6ca3-4e58-8827-79bb660c76a7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||||
|
11:50:39.324 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d34c71bd-6ca3-4e58-8827-79bb660c76a7] Notify connected event to listeners.
|
||||||
|
11:50:39.324 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d34c71bd-6ca3-4e58-8827-79bb660c76a7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000270814d3468
|
||||||
|
11:50:39.324 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
11:50:39.326 [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}}
|
||||||
|
11:50:39.341 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
|
||||||
|
11:50:40.566 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 20.749 seconds (process running for 21.951)
|
||||||
|
11:50:40.576 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||||
|
11:50:40.576 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||||
|
11:50:40.577 [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
|
||||||
|
11:50:40.589 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine.yml, group=DEFAULT_GROUP, cnt=1
|
||||||
|
11:50:40.589 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
||||||
|
11:50:40.590 [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
|
||||||
|
11:50:40.590 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1
|
||||||
|
11:50:40.590 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
||||||
|
11:50:40.593 [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
|
||||||
|
11:50:40.593 [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
|
||||||
|
11:50:40.593 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
||||||
|
11:50:41.064 [RMI TCP Connection(6)-172.16.0.4] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||||
|
11:51:06.007 [http-nio-9703-exec-2] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 432 ms
|
||||||
|
15:29:24.797 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||||
|
15:29:27.733 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||||
|
15:29:27.733 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||||
|
15:29:27.819 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||||
|
15:29:41.095 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||||
|
15:29:41.096 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||||
|
15:29:41.096 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||||
|
15:29:42.514 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||||
|
15:29:45.900 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||||
|
15:29:45.900 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||||
|
15:29:45.900 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||||
|
15:29:45.906 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||||
|
15:29:45.912 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||||
|
15:29:45.912 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||||
|
15:29:46.116 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 2ce7e53e-b010-4c6b-9483-20397cd1db9f
|
||||||
|
15:29:46.118 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->2ce7e53e-b010-4c6b-9483-20397cd1db9f
|
||||||
|
15:29:46.119 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2ce7e53e-b010-4c6b-9483-20397cd1db9f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||||
|
15:29:46.119 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2ce7e53e-b010-4c6b-9483-20397cd1db9f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||||
|
15:29:46.119 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2ce7e53e-b010-4c6b-9483-20397cd1db9f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||||
|
15:29:46.121 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2ce7e53e-b010-4c6b-9483-20397cd1db9f] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
||||||
|
15:29:46.121 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
||||||
|
15:29:46.531 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2ce7e53e-b010-4c6b-9483-20397cd1db9f] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725262200768_139.224.212.27_63046
|
||||||
|
15:29:46.531 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2ce7e53e-b010-4c6b-9483-20397cd1db9f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||||
|
15:29:46.531 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2ce7e53e-b010-4c6b-9483-20397cd1db9f] Notify connected event to listeners.
|
||||||
|
15:29:46.531 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2ce7e53e-b010-4c6b-9483-20397cd1db9f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001cdcd4e0d88
|
||||||
|
15:29:46.531 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
15:29:46.533 [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=[2409:891f:9263:e1f0:4806:708f:6c43:445c], preserved.register.source=SPRING_CLOUD}}
|
||||||
|
15:29:47.115 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
|
||||||
|
15:29:47.311 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 29.016 seconds (process running for 30.054)
|
||||||
|
15:29:47.322 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||||
|
15:29:47.322 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||||
|
15:29:47.323 [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
|
||||||
|
15:29:47.335 [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
|
||||||
|
15:29:47.335 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
||||||
|
15:29:47.336 [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
|
||||||
|
15:29:47.336 [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
|
||||||
|
15:29:47.336 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
||||||
|
15:29:47.338 [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
|
||||||
|
15:29:47.339 [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
|
||||||
|
15:29:47.339 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
||||||
|
15:29:47.418 [RMI TCP Connection(3)-172.16.0.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||||
|
15:29:58.779 [http-nio-9703-exec-3] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 438 ms
|
||||||
|
15:30:20.571 [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)
|
||||||
|
15:30:20.637 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /172.13.1.1:6379
|
||||||
|
15:30:24.788 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 172.13.1.1/<unresolved>:6379
|
||||||
|
19:04:55.747 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||||
|
19:05:00.029 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||||
|
19:05:00.029 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||||
|
19:05:00.119 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||||
|
19:05:01.468 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||||
|
19:05:01.469 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||||
|
19:05:01.469 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||||
|
19:05:03.141 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||||
|
19:05:11.258 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||||
|
19:05:11.259 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||||
|
19:05:11.259 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||||
|
19:05:11.266 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||||
|
19:05:11.273 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||||
|
19:05:11.273 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||||
|
19:05:11.378 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of ef23f78b-da4a-4e82-b6a2-95c735f6f28a
|
||||||
|
19:05:11.382 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->ef23f78b-da4a-4e82-b6a2-95c735f6f28a
|
||||||
|
19:05:11.383 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef23f78b-da4a-4e82-b6a2-95c735f6f28a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||||
|
19:05:11.383 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef23f78b-da4a-4e82-b6a2-95c735f6f28a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||||
|
19:05:11.383 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef23f78b-da4a-4e82-b6a2-95c735f6f28a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||||
|
19:05:11.384 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef23f78b-da4a-4e82-b6a2-95c735f6f28a] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
||||||
|
19:05:11.384 [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:05:11.544 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef23f78b-da4a-4e82-b6a2-95c735f6f28a] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725275125977_139.224.212.27_63031
|
||||||
|
19:05:11.545 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef23f78b-da4a-4e82-b6a2-95c735f6f28a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||||
|
19:05:11.545 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef23f78b-da4a-4e82-b6a2-95c735f6f28a] Notify connected event to listeners.
|
||||||
|
19:05:11.545 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef23f78b-da4a-4e82-b6a2-95c735f6f28a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$563/0x00000212b44d67e0
|
||||||
|
19:05:11.545 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
19:05:11.546 [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:05:11.563 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
|
||||||
|
19:05:12.787 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 22.957 seconds (process running for 24.791)
|
||||||
|
19:05:12.798 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||||
|
19:05:12.799 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||||
|
19:05:12.799 [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:05:12.812 [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:05:12.812 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
||||||
|
19:05:12.813 [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:05:12.813 [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:05:12.813 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
||||||
|
19:05:12.814 [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:05:12.815 [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:05:12.815 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
||||||
|
19:05:51.855 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
||||||
|
19:05:51.855 [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={}}
|
||||||
|
19:05:51.865 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
||||||
|
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
||||||
|
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
||||||
|
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
||||||
|
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
||||||
|
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
||||||
|
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
||||||
|
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
||||||
|
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
||||||
|
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
||||||
|
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
||||||
|
19:05:51.867 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
||||||
|
19:05:51.867 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->ef23f78b-da4a-4e82-b6a2-95c735f6f28a
|
||||||
|
19:05:51.867 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@723f0106[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 13]
|
||||||
|
19:05:51.867 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
||||||
|
19:05:51.867 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@77e3c4ff[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
||||||
|
19:05:51.867 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725275125977_139.224.212.27_63031
|
||||||
|
19:05:51.875 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@688bf7d3[Running, pool size = 4, active threads = 1, queued tasks = 0, completed tasks = 14]
|
||||||
|
19:05:51.875 [nacos-grpc-client-executor-47.116.184.54-14] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1725275125977_139.224.212.27_63031]Ignore complete event,isRunning:false,isAbandon=false
|
||||||
|
19:05:51.875 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->ef23f78b-da4a-4e82-b6a2-95c735f6f28a
|
||||||
|
19:05:51.875 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
||||||
|
19:05:51.875 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
||||||
|
19:05:51.875 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
||||||
|
19:05:51.886 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
|
||||||
|
19:05:51.888 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
|
||||||
|
19:05:51.894 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
|
||||||
|
19:05:51.894 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
|
||||||
|
19:05:51.894 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
|
||||||
|
19:06:00.345 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||||
|
19:06:03.466 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||||
|
19:06:03.467 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||||
|
19:06:03.562 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||||
|
19:06:04.825 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||||
|
19:06:04.826 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||||
|
19:06:04.826 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||||
|
19:06:06.287 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||||
|
19:06:14.264 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||||
|
19:06:14.266 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||||
|
19:06:14.266 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||||
|
19:06:14.273 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||||
|
19:06:14.281 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||||
|
19:06:14.281 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||||
|
19:06:14.374 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 7d2648e1-326d-47a5-87c2-f0225af9d60e
|
||||||
|
19:06:14.377 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->7d2648e1-326d-47a5-87c2-f0225af9d60e
|
||||||
|
19:06:14.377 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7d2648e1-326d-47a5-87c2-f0225af9d60e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||||
|
19:06:14.377 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7d2648e1-326d-47a5-87c2-f0225af9d60e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||||
|
19:06:14.378 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7d2648e1-326d-47a5-87c2-f0225af9d60e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||||
|
19:06:14.378 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7d2648e1-326d-47a5-87c2-f0225af9d60e] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
||||||
|
19:06:14.378 [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:06:14.409 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7d2648e1-326d-47a5-87c2-f0225af9d60e] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725275188945_139.224.212.27_63118
|
||||||
|
19:06:14.409 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7d2648e1-326d-47a5-87c2-f0225af9d60e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||||
|
19:06:14.409 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7d2648e1-326d-47a5-87c2-f0225af9d60e] Notify connected event to listeners.
|
||||||
|
19:06:14.409 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7d2648e1-326d-47a5-87c2-f0225af9d60e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001db014d0678
|
||||||
|
19:06:14.409 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
19:06:14.410 [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:06:14.425 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
|
||||||
|
19:06:15.645 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 20.826 seconds (process running for 21.974)
|
||||||
|
19:06:15.656 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||||
|
19:06:15.656 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||||
|
19:06:15.657 [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:06:15.670 [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:06:15.671 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
||||||
|
19:06:15.671 [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:06:15.672 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1
|
||||||
|
19:06:15.672 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
||||||
|
19:06:15.674 [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:06:15.676 [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:06:15.676 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
||||||
|
19:06:15.773 [RMI TCP Connection(3)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||||
|
19:06:58.179 [http-nio-9703-exec-3] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 438 ms
|
||||||
|
20:31:17.187 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||||
|
20:31:20.359 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||||
|
20:31:20.359 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||||
|
20:31:20.449 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||||
|
20:31:22.698 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||||
|
20:31:22.700 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||||
|
20:31:22.700 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||||
|
20:31:24.211 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||||
|
20:31:32.023 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||||
|
20:31:32.024 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||||
|
20:31:32.024 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||||
|
20:31:32.030 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||||
|
20:31:32.035 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||||
|
20:31:32.035 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||||
|
20:31:32.138 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 5d696e8a-c618-446e-8431-612ecb9e063b
|
||||||
|
20:31:32.140 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->5d696e8a-c618-446e-8431-612ecb9e063b
|
||||||
|
20:31:32.140 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||||
|
20:31:32.140 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||||
|
20:31:32.141 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||||
|
20:31:32.141 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
||||||
|
20:31:32.142 [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:31:32.193 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725280306725_139.224.212.27_63694
|
||||||
|
20:31:32.194 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||||
|
20:31:32.194 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Notify connected event to listeners.
|
||||||
|
20:31:32.194 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000014f515092a0
|
||||||
|
20:31:32.194 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
20:31:32.195 [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:31:32.210 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
|
||||||
|
20:31:33.429 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 21.863 seconds (process running for 23.168)
|
||||||
|
20:31:33.440 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||||
|
20:31:33.440 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||||
|
20:31:33.441 [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:31:33.453 [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:31:33.453 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
||||||
|
20:31:33.454 [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:31:33.454 [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:31:33.454 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
||||||
|
20:31:33.456 [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:31:33.456 [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:31:33.456 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
||||||
|
20:31:33.877 [RMI TCP Connection(7)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||||
|
20:31:50.189 [http-nio-9703-exec-5] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 412 ms
|
||||||
|
20:32:45.574 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||||
|
20:32:48.442 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||||
|
20:32:48.442 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||||
|
20:32:48.541 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||||
|
20:32:49.933 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||||
|
20:32:49.934 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||||
|
20:32:49.934 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||||
|
20:32:51.387 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||||
|
20:32:58.976 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||||
|
20:32:58.976 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||||
|
20:32:58.977 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||||
|
20:32:58.983 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||||
|
20:32:58.987 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||||
|
20:32:58.988 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||||
|
20:32:59.083 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of fafeb84a-fe1e-488a-9594-265e3635ed5c
|
||||||
|
20:32:59.086 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->fafeb84a-fe1e-488a-9594-265e3635ed5c
|
||||||
|
20:32:59.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||||
|
20:32:59.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||||
|
20:32:59.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||||
|
20:32:59.088 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
||||||
|
20:32:59.088 [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:32:59.381 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725280393764_139.224.212.27_62404
|
||||||
|
20:32:59.381 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||||
|
20:32:59.381 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Notify connected event to listeners.
|
||||||
|
20:32:59.381 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000235814d2150
|
||||||
|
20:32:59.381 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
20:32:59.383 [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:32:59.402 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
|
||||||
|
20:33:00.605 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 20.645 seconds (process running for 21.605)
|
||||||
|
20:33:00.615 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||||
|
20:33:00.616 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||||
|
20:33:00.617 [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:33:00.628 [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:33:00.628 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
||||||
|
20:33:00.629 [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:33:00.629 [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:33:00.629 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
||||||
|
20:33:00.632 [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:33:00.632 [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:33:00.632 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
||||||
|
20:33:01.150 [RMI TCP Connection(6)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||||
|
20:33:27.012 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
||||||
|
20:33:27.013 [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:33:27.028 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
||||||
|
20:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
||||||
|
20:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
||||||
|
20:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
||||||
|
20:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
||||||
|
20:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
||||||
|
20:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
||||||
|
20:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
||||||
|
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
||||||
|
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
||||||
|
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
||||||
|
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
||||||
|
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->fafeb84a-fe1e-488a-9594-265e3635ed5c
|
||||||
|
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@732567b3[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 9]
|
||||||
|
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
||||||
|
20:33:27.031 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7e8284f4[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
||||||
|
20:33:27.031 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725280393764_139.224.212.27_62404
|
||||||
|
20:33:27.036 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@20a7885[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 13]
|
||||||
|
20:33:27.036 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->fafeb84a-fe1e-488a-9594-265e3635ed5c
|
||||||
|
20:33:27.036 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
||||||
|
20:33:27.036 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
||||||
|
20:33:27.036 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
||||||
|
20:33:27.043 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
|
||||||
|
20:33:27.046 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
|
||||||
|
20:33:27.050 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
|
||||||
|
20:33:27.050 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
|
||||||
|
20:33:27.050 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
|
||||||
|
20:35:43.670 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||||
|
20:35:46.407 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||||
|
20:35:46.408 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||||
|
20:35:46.497 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||||
|
20:35:48.069 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||||
|
20:35:48.070 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||||
|
20:35:48.070 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||||
|
20:35:49.413 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||||
|
20:35:56.907 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||||
|
20:35:56.907 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||||
|
20:35:56.907 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||||
|
20:35:56.913 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||||
|
20:35:56.920 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||||
|
20:35:56.920 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||||
|
20:35:57.017 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f85f7d19-4f5b-41a8-bd27-b7ea6712eb24
|
||||||
|
20:35:57.019 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->f85f7d19-4f5b-41a8-bd27-b7ea6712eb24
|
||||||
|
20:35:57.021 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||||
|
20:35:57.021 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||||
|
20:35:57.021 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||||
|
20:35:57.022 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
||||||
|
20:35:57.022 [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:35:57.068 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725280571602_139.224.212.27_63232
|
||||||
|
20:35:57.068 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||||
|
20:35:57.068 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Notify connected event to listeners.
|
||||||
|
20:35:57.068 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001cc874d12a0
|
||||||
|
20:35:57.068 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
20:35:57.072 [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:35:57.087 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
|
||||||
|
20:35:58.293 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 20.029 seconds (process running for 21.04)
|
||||||
|
20:35:58.304 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||||
|
20:35:58.305 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||||
|
20:35:58.305 [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:35:58.317 [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:35:58.317 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
||||||
|
20:35:58.318 [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:35:58.318 [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:35:58.318 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
||||||
|
20:35:58.320 [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:35:58.321 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP, cnt=1
|
||||||
|
20:35:58.321 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
||||||
|
20:35:58.601 [RMI TCP Connection(4)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||||
|
20:39:48.241 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||||
|
20:39:51.131 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||||
|
20:39:51.131 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||||
|
20:39:51.244 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||||
|
20:39:57.408 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||||
|
20:39:57.409 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||||
|
20:39:57.409 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||||
|
20:39:58.833 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||||
|
20:40:06.199 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||||
|
20:40:06.199 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||||
|
20:40:06.200 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||||
|
20:40:06.205 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||||
|
20:40:06.211 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||||
|
20:40:06.211 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||||
|
20:40:06.389 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of bb9834b2-198f-4e10-a9c8-c6780ed1f0cd
|
||||||
|
20:40:06.392 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->bb9834b2-198f-4e10-a9c8-c6780ed1f0cd
|
||||||
|
20:40:06.392 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||||
|
20:40:06.392 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||||
|
20:40:06.392 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||||
|
20:40:06.393 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
||||||
|
20:40:06.393 [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:40:06.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725280820986_139.224.212.27_62849
|
||||||
|
20:40:06.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||||
|
20:40:06.576 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify connected event to listeners.
|
||||||
|
20:40:06.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000025f3b4d2150
|
||||||
|
20:40:06.576 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
20:40:06.578 [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:40:06.599 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
|
||||||
|
20:40:07.794 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 25.629 seconds (process running for 26.594)
|
||||||
|
20:40:07.804 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||||
|
20:40:07.804 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||||
|
20:40:07.805 [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:40:07.816 [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:40:07.816 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
||||||
|
20:40:07.817 [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:40:07.817 [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:40:07.817 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
||||||
|
20:40:07.819 [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:40:07.819 [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:40:07.819 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
||||||
|
20:40:08.245 [RMI TCP Connection(10)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||||
|
20:48:55.694 [http-nio-9703-exec-3] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 432 ms
|
||||||
|
20:50:28.368 [nacos-grpc-client-executor-47.116.184.54-127] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 3885
|
||||||
|
20:50:28.368 [nacos-grpc-client-executor-47.116.184.54-127] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 3885
|
||||||
|
20:50:28.368 [nacos-grpc-client-executor-47.116.184.54-113] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Receive server push request, request = ClientDetectionRequest, requestId = 3886
|
||||||
|
20:50:28.368 [nacos-grpc-client-executor-47.116.184.54-113] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Ack server push request, request = ClientDetectionRequest, requestId = 3886
|
||||||
|
20:50:28.460 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Server healthy check fail, currentConnection = 1725280820986_139.224.212.27_62849
|
||||||
|
20:50:28.460 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Server healthy check fail, currentConnection = 1725280802025_139.224.212.27_62791
|
||||||
|
20:50:28.461 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
|
20:50:28.461 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
|
20:50:28.461 [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}
|
||||||
|
20:50:28.461 [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}
|
||||||
|
20:50:28.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Success to connect a server [47.116.184.54:8848], connectionId = 1725281443045_139.224.212.27_62047
|
||||||
|
20:50:28.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281443045_139.224.212.27_62046
|
||||||
|
20:50:28.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725280820986_139.224.212.27_62849
|
||||||
|
20:50:28.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725280802025_139.224.212.27_62791
|
||||||
|
20:50:28.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725280820986_139.224.212.27_62849
|
||||||
|
20:50:28.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725280802025_139.224.212.27_62791
|
||||||
|
20:50:28.520 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
|
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify disconnected event to listeners
|
||||||
|
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify disconnected event to listeners
|
||||||
|
20:50:28.520 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
|
20:50:28.520 [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}
|
||||||
|
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] DisConnected,clear listen context...
|
||||||
|
20:50:28.520 [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}
|
||||||
|
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify connected event to listeners.
|
||||||
|
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Connected,notify listen context...
|
||||||
|
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify connected event to listeners.
|
||||||
|
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
20:50:28.619 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281443135_139.224.212.27_62048
|
||||||
|
20:50:28.619 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281443045_139.224.212.27_62046
|
||||||
|
20:50:28.619 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281443045_139.224.212.27_62046
|
||||||
|
20:50:28.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Success to connect a server [47.116.184.54:8848], connectionId = 1725281443135_139.224.212.27_62050
|
||||||
|
20:50:28.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281443045_139.224.212.27_62047
|
||||||
|
20:50:28.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281443045_139.224.212.27_62047
|
||||||
|
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify disconnected event to listeners
|
||||||
|
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify disconnected event to listeners
|
||||||
|
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] DisConnected,clear listen context...
|
||||||
|
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify connected event to listeners.
|
||||||
|
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify connected event to listeners.
|
||||||
|
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Connected,notify listen context...
|
||||||
|
20:50:31.376 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-engine
|
||||||
|
20:52:13.596 [nacos-grpc-client-executor-47.116.184.54-157] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 3889
|
||||||
|
20:52:13.595 [nacos-grpc-client-executor-47.116.184.54-141] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Receive server push request, request = ClientDetectionRequest, requestId = 3890
|
||||||
|
20:52:13.596 [nacos-grpc-client-executor-47.116.184.54-157] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 3889
|
||||||
|
20:52:13.596 [nacos-grpc-client-executor-47.116.184.54-141] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Ack server push request, request = ClientDetectionRequest, requestId = 3890
|
||||||
|
20:52:13.678 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Server healthy check fail, currentConnection = 1725281443135_139.224.212.27_62048
|
||||||
|
20:52:13.678 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
|
20:52:13.679 [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}
|
||||||
|
20:52:13.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281548259_139.224.212.27_62271
|
||||||
|
20:52:13.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281443135_139.224.212.27_62048
|
||||||
|
20:52:13.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281443135_139.224.212.27_62048
|
||||||
|
20:52:13.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
|
20:52:13.735 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify disconnected event to listeners
|
||||||
|
20:52:13.736 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] DisConnected,clear listen context...
|
||||||
|
20:52:13.736 [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}
|
||||||
|
20:52:13.736 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify connected event to listeners.
|
||||||
|
20:52:13.736 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Connected,notify listen context...
|
||||||
|
20:52:13.771 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
||||||
|
20:52:13.771 [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:52:13.796 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281548316_139.224.212.27_62273
|
||||||
|
20:52:13.796 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281548259_139.224.212.27_62271
|
||||||
|
20:52:13.796 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281548259_139.224.212.27_62271
|
||||||
|
20:52:13.797 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify disconnected event to listeners
|
||||||
|
20:52:13.797 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] DisConnected,clear listen context...
|
||||||
|
20:52:13.797 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify connected event to listeners.
|
||||||
|
20:52:13.797 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Connected,notify listen context...
|
||||||
|
20:52:14.151 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Server healthy check fail, currentConnection = 1725281443135_139.224.212.27_62050
|
||||||
|
20:52:14.152 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
|
20:52:14.152 [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}
|
||||||
|
20:52:14.190 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Success to connect a server [47.116.184.54:8848], connectionId = 1725281548733_139.224.212.27_62276
|
||||||
|
20:52:14.190 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281443135_139.224.212.27_62050
|
||||||
|
20:52:14.190 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281443135_139.224.212.27_62050
|
||||||
|
20:52:14.190 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
|
20:52:14.190 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify disconnected event to listeners
|
||||||
|
20:52:14.191 [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}
|
||||||
|
20:52:14.191 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify connected event to listeners.
|
||||||
|
20:52:14.191 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
20:52:14.194 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
||||||
|
20:52:14.195 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
||||||
|
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
||||||
|
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
||||||
|
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
||||||
|
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
||||||
|
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
||||||
|
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
||||||
|
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
||||||
|
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
||||||
|
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
||||||
|
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
||||||
|
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->bb9834b2-198f-4e10-a9c8-c6780ed1f0cd
|
||||||
|
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@5a243271[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 203]
|
||||||
|
20:52:14.197 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
||||||
|
20:52:14.197 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@67a9b155[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
||||||
|
20:52:14.197 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281548733_139.224.212.27_62276
|
||||||
|
20:52:14.197 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@17659ed2[Running, pool size = 11, active threads = 0, queued tasks = 0, completed tasks = 152]
|
||||||
|
20:52:14.197 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->bb9834b2-198f-4e10-a9c8-c6780ed1f0cd
|
||||||
|
20:52:14.197 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
||||||
|
20:52:14.198 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
||||||
|
20:52:14.198 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
||||||
|
20:52:14.200 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281548733_139.224.212.27_62276
|
||||||
|
20:52:14.203 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
|
||||||
|
20:52:14.206 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
|
||||||
|
20:52:14.209 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
|
||||||
|
20:52:14.210 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
|
||||||
|
20:52:14.210 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
|
||||||
|
20:52:24.615 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||||
|
20:52:27.357 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||||
|
20:52:27.358 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||||
|
20:52:27.446 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||||
|
20:52:29.528 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||||
|
20:52:29.529 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||||
|
20:52:29.529 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||||
|
20:52:30.884 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||||
|
20:52:38.468 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||||
|
20:52:38.468 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||||
|
20:52:38.468 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||||
|
20:52:38.475 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||||
|
20:52:38.480 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||||
|
20:52:38.480 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||||
|
20:52:38.573 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of eaa84ec3-a592-4301-8619-5cb3256d7462
|
||||||
|
20:52:38.575 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->eaa84ec3-a592-4301-8619-5cb3256d7462
|
||||||
|
20:52:38.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||||
|
20:52:38.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||||
|
20:52:38.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||||
|
20:52:38.577 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
||||||
|
20:52:38.577 [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:52:38.611 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725281573161_139.224.212.27_62353
|
||||||
|
20:52:38.613 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||||
|
20:52:38.613 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify connected event to listeners.
|
||||||
|
20:52:38.613 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001681f4e14f8
|
||||||
|
20:52:38.613 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
20:52:38.615 [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:52:38.628 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
|
||||||
|
20:52:39.836 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 20.413 seconds (process running for 21.354)
|
||||||
|
20:52:39.846 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||||
|
20:52:39.847 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||||
|
20:52:39.847 [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:52:39.858 [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:52:39.858 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
||||||
|
20:52:39.860 [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:52:39.860 [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:52:39.860 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
||||||
|
20:52:39.862 [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:52:39.862 [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:52:39.862 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
||||||
|
20:52:40.385 [RMI TCP Connection(3)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||||
|
20:53:07.046 [http-nio-9703-exec-3] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 478 ms
|
||||||
|
20:54:25.329 [nacos-grpc-client-executor-47.116.184.54-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Receive server push request, request = ClientDetectionRequest, requestId = 3893
|
||||||
|
20:54:25.331 [nacos-grpc-client-executor-47.116.184.54-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Ack server push request, request = ClientDetectionRequest, requestId = 3893
|
||||||
|
20:54:49.211 [nacos-grpc-client-executor-47.116.184.54-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 3895
|
||||||
|
20:54:49.211 [nacos-grpc-client-executor-47.116.184.54-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Receive server push request, request = ClientDetectionRequest, requestId = 3894
|
||||||
|
20:54:49.212 [nacos-grpc-client-executor-47.116.184.54-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 3895
|
||||||
|
20:54:49.212 [nacos-grpc-client-executor-47.116.184.54-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Ack server push request, request = ClientDetectionRequest, requestId = 3894
|
||||||
|
20:55:26.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Server healthy check fail, currentConnection = 1725281558693_139.224.212.27_62310
|
||||||
|
20:55:26.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Server healthy check fail, currentConnection = 1725281573161_139.224.212.27_62353
|
||||||
|
20:55:26.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
|
20:55:26.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
|
20:55:26.196 [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}
|
||||||
|
20:55:26.196 [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}
|
||||||
|
20:55:26.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281740780_139.224.212.27_62616
|
||||||
|
20:55:26.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Success to connect a server [47.116.184.54:8848], connectionId = 1725281740780_139.224.212.27_62617
|
||||||
|
20:55:26.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281558693_139.224.212.27_62310
|
||||||
|
20:55:26.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281573161_139.224.212.27_62353
|
||||||
|
20:55:26.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281558693_139.224.212.27_62310
|
||||||
|
20:55:26.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281573161_139.224.212.27_62353
|
||||||
|
20:55:26.249 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
|
20:55:26.249 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify disconnected event to listeners
|
||||||
|
20:55:26.249 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
|
20:55:26.249 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify disconnected event to listeners
|
||||||
|
20:55:26.250 [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}
|
||||||
|
20:55:26.250 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] DisConnected,clear listen context...
|
||||||
|
20:55:26.250 [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}
|
||||||
|
20:55:26.250 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify connected event to listeners.
|
||||||
|
20:55:26.250 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Connected,notify listen context...
|
||||||
|
20:55:26.251 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify connected event to listeners.
|
||||||
|
20:55:26.251 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
20:55:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Success to connect a server [47.116.184.54:8848], connectionId = 1725281740845_139.224.212.27_62618
|
||||||
|
20:55:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281740845_139.224.212.27_62619
|
||||||
|
20:55:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281740780_139.224.212.27_62617
|
||||||
|
20:55:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281740780_139.224.212.27_62616
|
||||||
|
20:55:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281740780_139.224.212.27_62617
|
||||||
|
20:55:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281740780_139.224.212.27_62616
|
||||||
|
20:55:26.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify disconnected event to listeners
|
||||||
|
20:55:26.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify disconnected event to listeners
|
||||||
|
20:55:26.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] DisConnected,clear listen context...
|
||||||
|
20:55:26.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify connected event to listeners.
|
||||||
|
20:55:26.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify connected event to listeners.
|
||||||
|
20:55:26.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
20:55:26.302 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Connected,notify listen context...
|
||||||
|
20:55:27.190 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-engine
|
||||||
|
20:59:02.913 [nacos-grpc-client-executor-47.116.184.54-45] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Receive server push request, request = ClientDetectionRequest, requestId = 3898
|
||||||
|
20:59:02.912 [nacos-grpc-client-executor-47.116.184.54-60] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 3899
|
||||||
|
20:59:02.913 [nacos-grpc-client-executor-47.116.184.54-60] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 3899
|
||||||
|
20:59:02.913 [nacos-grpc-client-executor-47.116.184.54-45] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Ack server push request, request = ClientDetectionRequest, requestId = 3898
|
||||||
|
20:59:03.170 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Server healthy check fail, currentConnection = 1725281740845_139.224.212.27_62618
|
||||||
|
20:59:03.170 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
|
20:59:03.170 [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}
|
||||||
|
20:59:03.216 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Success to connect a server [47.116.184.54:8848], connectionId = 1725281957753_139.224.212.27_62991
|
||||||
|
20:59:03.216 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281740845_139.224.212.27_62618
|
||||||
|
20:59:03.217 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281740845_139.224.212.27_62618
|
||||||
|
20:59:03.217 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify disconnected event to listeners
|
||||||
|
20:59:03.217 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
|
20:59:03.217 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify connected event to listeners.
|
||||||
|
20:59:03.217 [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}
|
||||||
|
20:59:03.217 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
20:59:03.255 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Success to connect a server [47.116.184.54:8848], connectionId = 1725281957801_139.224.212.27_62992
|
||||||
|
20:59:03.255 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281957753_139.224.212.27_62991
|
||||||
|
20:59:03.256 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281957753_139.224.212.27_62991
|
||||||
|
20:59:03.256 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify disconnected event to listeners
|
||||||
|
20:59:03.256 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify connected event to listeners.
|
||||||
|
20:59:03.256 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
20:59:03.385 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Server healthy check fail, currentConnection = 1725281740845_139.224.212.27_62619
|
||||||
|
20:59:03.385 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
|
20:59:03.385 [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}
|
||||||
|
20:59:03.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281957969_139.224.212.27_62993
|
||||||
|
20:59:03.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281740845_139.224.212.27_62619
|
||||||
|
20:59:03.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281740845_139.224.212.27_62619
|
||||||
|
20:59:03.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
|
20:59:03.427 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify disconnected event to listeners
|
||||||
|
20:59:03.427 [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}
|
||||||
|
20:59:03.427 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] DisConnected,clear listen context...
|
||||||
|
20:59:03.427 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify connected event to listeners.
|
||||||
|
20:59:03.427 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Connected,notify listen context...
|
||||||
|
20:59:03.494 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281958016_139.224.212.27_62994
|
||||||
|
20:59:03.495 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281957969_139.224.212.27_62993
|
||||||
|
20:59:03.495 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281957969_139.224.212.27_62993
|
||||||
|
20:59:03.495 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify disconnected event to listeners
|
||||||
|
20:59:03.495 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] DisConnected,clear listen context...
|
||||||
|
20:59:03.495 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify connected event to listeners.
|
||||||
|
20:59:03.495 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Connected,notify listen context...
|
||||||
|
20:59:05.914 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-engine
|
|
@ -1,88 +1,60 @@
|
||||||
11:50:25.289 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
16:53:28.609 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||||
11:50:28.242 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
16:53:31.098 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||||
11:50:28.242 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
16:53:31.098 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||||
11:50:28.336 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
16:53:31.173 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||||
11:50:30.092 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
16:53:34.725 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||||
11:50:30.093 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
16:53:34.728 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||||
11:50:30.093 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
16:53:34.728 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||||
11:50:31.515 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
16:53:36.304 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||||
11:50:39.142 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
16:53:43.475 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
|
||||||
11:50:39.142 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
16:53:43.477 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
|
||||||
11:50:39.143 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
16:53:43.483 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
|
||||||
11:50:39.150 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
16:53:43.483 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
|
||||||
11:50:39.155 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
16:53:43.483 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
|
||||||
11:50:39.155 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
16:53:43.484 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
|
||||||
11:50:39.257 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of d34c71bd-6ca3-4e58-8827-79bb660c76a7
|
16:54:08.641 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||||
11:50:39.260 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->d34c71bd-6ca3-4e58-8827-79bb660c76a7
|
16:54:10.523 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||||
11:50:39.260 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d34c71bd-6ca3-4e58-8827-79bb660c76a7] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
16:54:10.524 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||||
11:50:39.260 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d34c71bd-6ca3-4e58-8827-79bb660c76a7] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
16:54:10.589 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||||
11:50:39.261 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d34c71bd-6ca3-4e58-8827-79bb660c76a7] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
16:54:14.295 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||||
11:50:39.261 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d34c71bd-6ca3-4e58-8827-79bb660c76a7] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
16:54:14.296 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||||
11:50:39.261 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
16:54:14.296 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||||
11:50:39.324 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d34c71bd-6ca3-4e58-8827-79bb660c76a7] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725249053789_139.224.212.27_63604
|
16:54:15.310 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||||
11:50:39.324 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d34c71bd-6ca3-4e58-8827-79bb660c76a7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
16:54:22.587 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||||
11:50:39.324 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d34c71bd-6ca3-4e58-8827-79bb660c76a7] Notify connected event to listeners.
|
16:54:22.588 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||||
11:50:39.324 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d34c71bd-6ca3-4e58-8827-79bb660c76a7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000270814d3468
|
16:54:22.588 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||||
11:50:39.324 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
16:54:22.592 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||||
11:50:39.326 [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}}
|
16:54:22.595 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||||
11:50:39.341 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
|
16:54:22.595 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||||
11:50:40.566 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 20.749 seconds (process running for 21.951)
|
16:54:22.757 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 6291cc68-6550-4cd8-9a70-6149e1a735eb
|
||||||
11:50:40.576 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
16:54:22.759 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->6291cc68-6550-4cd8-9a70-6149e1a735eb
|
||||||
11:50:40.576 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
16:54:22.759 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||||
11:50:40.577 [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
|
16:54:22.759 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||||
11:50:40.589 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine.yml, group=DEFAULT_GROUP, cnt=1
|
16:54:22.759 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||||
11:50:40.589 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
16:54:22.760 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
||||||
11:50:40.590 [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
|
16:54:22.760 [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}
|
||||||
11:50:40.590 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1
|
16:54:23.139 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725353680712_139.224.212.27_63272
|
||||||
11:50:40.590 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
16:54:23.139 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||||
11:50:40.593 [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
|
16:54:23.139 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Notify connected event to listeners.
|
||||||
11:50:40.593 [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
|
16:54:23.139 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000021f014d0440
|
||||||
11:50:40.593 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
16:54:23.139 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
11:50:41.064 [RMI TCP Connection(6)-172.16.0.4] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
16:54:23.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=9706, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8f45:476:2757:da74:cc8d:2026], preserved.register.source=SPRING_CLOUD}}
|
||||||
11:51:06.007 [http-nio-9703-exec-2] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 432 ms
|
16:54:23.190 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9706 register finished
|
||||||
15:29:24.797 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
16:54:24.390 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 20.982 seconds (process running for 22.569)
|
||||||
15:29:27.733 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
16:54:24.398 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||||
15:29:27.733 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
16:54:24.399 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||||
15:29:27.819 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
16:54:24.399 [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
|
||||||
15:29:41.095 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
16:54:24.406 [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
|
||||||
15:29:41.096 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
16:54:24.407 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
||||||
15:29:41.096 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
16:54:24.407 [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
|
||||||
15:29:42.514 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
16:54:24.407 [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
|
||||||
15:29:45.900 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
16:54:24.408 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
||||||
15:29:45.900 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
16:54:24.410 [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
|
||||||
15:29:45.900 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
16:54:24.410 [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
|
||||||
15:29:45.906 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
16:54:24.410 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
||||||
15:29:45.912 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
16:54:24.629 [RMI TCP Connection(5)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||||
15:29:45.912 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
16:54:46.647 [http-nio-9706-exec-6] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 393 ms
|
||||||
15:29:46.116 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 2ce7e53e-b010-4c6b-9483-20397cd1db9f
|
16:56:12.520 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
|
||||||
15:29:46.118 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->2ce7e53e-b010-4c6b-9483-20397cd1db9f
|
|
||||||
15:29:46.119 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2ce7e53e-b010-4c6b-9483-20397cd1db9f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
|
||||||
15:29:46.119 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2ce7e53e-b010-4c6b-9483-20397cd1db9f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
|
||||||
15:29:46.119 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2ce7e53e-b010-4c6b-9483-20397cd1db9f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
|
||||||
15:29:46.121 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2ce7e53e-b010-4c6b-9483-20397cd1db9f] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
|
||||||
15:29:46.121 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
|
||||||
15:29:46.531 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2ce7e53e-b010-4c6b-9483-20397cd1db9f] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725262200768_139.224.212.27_63046
|
|
||||||
15:29:46.531 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2ce7e53e-b010-4c6b-9483-20397cd1db9f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
|
||||||
15:29:46.531 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2ce7e53e-b010-4c6b-9483-20397cd1db9f] Notify connected event to listeners.
|
|
||||||
15:29:46.531 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2ce7e53e-b010-4c6b-9483-20397cd1db9f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001cdcd4e0d88
|
|
||||||
15:29:46.531 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
|
||||||
15:29:46.533 [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=[2409:891f:9263:e1f0:4806:708f:6c43:445c], preserved.register.source=SPRING_CLOUD}}
|
|
||||||
15:29:47.115 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
|
|
||||||
15:29:47.311 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 29.016 seconds (process running for 30.054)
|
|
||||||
15:29:47.322 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
|
||||||
15:29:47.322 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
|
||||||
15:29:47.323 [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
|
|
||||||
15:29:47.335 [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
|
|
||||||
15:29:47.335 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
|
||||||
15:29:47.336 [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
|
|
||||||
15:29:47.336 [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
|
|
||||||
15:29:47.336 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
|
||||||
15:29:47.338 [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
|
|
||||||
15:29:47.339 [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
|
|
||||||
15:29:47.339 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
|
||||||
15:29:47.418 [RMI TCP Connection(3)-172.16.0.5] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
|
||||||
15:29:58.779 [http-nio-9703-exec-3] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 438 ms
|
|
||||||
15:30:20.571 [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
|
java.net.SocketException: Connection reset
|
||||||
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
|
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
|
||||||
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
|
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
|
||||||
|
@ -98,543 +70,218 @@ java.net.SocketException: Connection reset
|
||||||
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
|
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
|
||||||
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
|
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
|
||||||
at java.base/java.lang.Thread.run(Thread.java:842)
|
at java.base/java.lang.Thread.run(Thread.java:842)
|
||||||
15:30:20.637 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /172.13.1.1:6379
|
16:56:12.566 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
15:30:24.788 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 172.13.1.1/<unresolved>:6379
|
16:56:12.566 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
19:04:55.747 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
16:56:12.566 [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}
|
||||||
19:05:00.029 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
16:56:12.566 [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}
|
||||||
19:05:00.029 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
16:56:12.638 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /172.13.1.1:6379
|
||||||
19:05:00.119 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
16:56:12.718 [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}
|
||||||
19:05:01.468 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
16:56:12.718 [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}
|
||||||
19:05:01.469 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
16:56:13.997 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725353791644_117.143.60.22_51578
|
||||||
19:05:01.469 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
16:56:13.997 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725353665596_139.224.212.27_63222
|
||||||
19:05:03.141 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
16:56:13.997 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725353665596_139.224.212.27_63222
|
||||||
19:05:11.258 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
16:56:13.997 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Notify disconnected event to listeners
|
||||||
19:05:11.259 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
16:56:13.997 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] DisConnected,clear listen context...
|
||||||
19:05:11.259 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
16:56:13.997 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Notify connected event to listeners.
|
||||||
19:05:11.266 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
16:56:13.997 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Connected,notify listen context...
|
||||||
19:05:11.273 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
16:56:14.120 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Success to connect a server [47.116.184.54:8848], connectionId = 1725353791655_117.143.60.22_51579
|
||||||
19:05:11.273 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
16:56:14.120 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725353680712_139.224.212.27_63272
|
||||||
19:05:11.378 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of ef23f78b-da4a-4e82-b6a2-95c735f6f28a
|
16:56:14.120 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725353680712_139.224.212.27_63272
|
||||||
19:05:11.382 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->ef23f78b-da4a-4e82-b6a2-95c735f6f28a
|
16:56:14.120 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Notify disconnected event to listeners
|
||||||
19:05:11.383 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef23f78b-da4a-4e82-b6a2-95c735f6f28a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
16:56:14.122 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Notify connected event to listeners.
|
||||||
19:05:11.383 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef23f78b-da4a-4e82-b6a2-95c735f6f28a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
16:56:14.122 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
19:05:11.383 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef23f78b-da4a-4e82-b6a2-95c735f6f28a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
16:56:17.046 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-engine
|
||||||
19:05:11.384 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef23f78b-da4a-4e82-b6a2-95c735f6f28a] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
16:56:22.842 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||||
19:05:11.384 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
16:56:22.875 [lettuce-nioEventLoop-4-4] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 172.13.1.1/<unresolved>:6379
|
||||||
19:05:11.544 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef23f78b-da4a-4e82-b6a2-95c735f6f28a] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725275125977_139.224.212.27_63031
|
16:56:36.141 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Server healthy check fail, currentConnection = 1725353791644_117.143.60.22_51578
|
||||||
19:05:11.545 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef23f78b-da4a-4e82-b6a2-95c735f6f28a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
16:56:36.141 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
19:05:11.545 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef23f78b-da4a-4e82-b6a2-95c735f6f28a] Notify connected event to listeners.
|
16:56:36.141 [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}
|
||||||
19:05:11.545 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef23f78b-da4a-4e82-b6a2-95c735f6f28a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$563/0x00000212b44d67e0
|
16:56:36.186 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725353813974_139.224.212.27_61775
|
||||||
19:05:11.545 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
16:56:36.186 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725353791644_117.143.60.22_51578
|
||||||
19:05:11.546 [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}}
|
16:56:36.186 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725353791644_117.143.60.22_51578
|
||||||
19:05:11.563 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
|
16:56:36.189 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Notify disconnected event to listeners
|
||||||
19:05:12.787 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 22.957 seconds (process running for 24.791)
|
16:56:36.189 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] DisConnected,clear listen context...
|
||||||
19:05:12.798 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
16:56:36.189 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Notify connected event to listeners.
|
||||||
19:05:12.799 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
16:56:36.189 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Connected,notify listen context...
|
||||||
19:05:12.799 [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
|
16:56:36.367 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Server healthy check fail, currentConnection = 1725353791655_117.143.60.22_51579
|
||||||
19:05:12.812 [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
|
16:56:36.367 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
19:05:12.812 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
16:56:36.367 [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}
|
||||||
19:05:12.813 [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
|
16:56:36.412 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Success to connect a server [47.116.184.54:8848], connectionId = 1725353814197_139.224.212.27_61778
|
||||||
19:05:12.813 [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
|
16:56:36.412 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725353791655_117.143.60.22_51579
|
||||||
19:05:12.813 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
16:56:36.412 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725353791655_117.143.60.22_51579
|
||||||
19:05:12.814 [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
|
16:56:36.412 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Notify disconnected event to listeners
|
||||||
19:05:12.815 [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
|
16:56:36.412 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Notify connected event to listeners.
|
||||||
19:05:12.815 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
16:56:36.413 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
19:05:51.855 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
16:56:38.148 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-engine
|
||||||
19:05:51.855 [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={}}
|
17:04:04.336 [lettuce-nioEventLoop-4-4] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
|
||||||
19:05:51.865 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
java.net.SocketException: Connection reset
|
||||||
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
|
||||||
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
|
||||||
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
|
||||||
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
|
||||||
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356)
|
||||||
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
|
||||||
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
|
||||||
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
|
||||||
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
|
||||||
19:05:51.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
|
||||||
19:05:51.867 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:994)
|
||||||
19:05:51.867 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->ef23f78b-da4a-4e82-b6a2-95c735f6f28a
|
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
|
||||||
19:05:51.867 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@723f0106[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 13]
|
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
|
||||||
19:05:51.867 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
at java.base/java.lang.Thread.run(Thread.java:842)
|
||||||
19:05:51.867 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@77e3c4ff[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
17:04:04.353 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
19:05:51.867 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725275125977_139.224.212.27_63031
|
17:04:04.354 [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}
|
||||||
19:05:51.875 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@688bf7d3[Running, pool size = 4, active threads = 1, queued tasks = 0, completed tasks = 14]
|
17:04:04.358 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
||||||
19:05:51.875 [nacos-grpc-client-executor-47.116.184.54-14] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1725275125977_139.224.212.27_63031]Ignore complete event,isRunning:false,isAbandon=false
|
17:04:04.358 [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}
|
||||||
19:05:51.875 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->ef23f78b-da4a-4e82-b6a2-95c735f6f28a
|
17:04:04.448 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /172.13.1.1:6379
|
||||||
19:05:51.875 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
17:04:04.477 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Success to connect a server [47.116.184.54:8848], connectionId = 1725354262216_117.143.60.22_52628
|
||||||
19:05:51.875 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
17:04:04.480 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725353814197_139.224.212.27_61778
|
||||||
19:05:51.875 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
17:04:04.480 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725353814197_139.224.212.27_61778
|
||||||
19:05:51.886 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
|
17:04:04.480 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Notify disconnected event to listeners
|
||||||
19:05:51.888 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
|
17:04:04.480 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6291cc68-6550-4cd8-9a70-6149e1a735eb] Notify connected event to listeners.
|
||||||
19:05:51.894 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
|
17:04:04.480 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
19:05:51.894 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
|
17:04:04.496 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725354262238_117.143.60.22_52629
|
||||||
19:05:51.894 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
|
17:04:04.499 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725353813974_139.224.212.27_61775
|
||||||
19:06:00.345 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
17:04:04.499 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725353813974_139.224.212.27_61775
|
||||||
19:06:03.466 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
17:04:04.499 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Notify disconnected event to listeners
|
||||||
19:06:03.467 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
17:04:04.499 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] DisConnected,clear listen context...
|
||||||
19:06:03.562 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
17:04:04.499 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Notify connected event to listeners.
|
||||||
19:06:04.825 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
17:04:04.499 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [277bee39-70fd-4b11-8bd7-39929cc7934e_config-0] Connected,notify listen context...
|
||||||
19:06:04.826 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
17:04:06.265 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-engine
|
||||||
19:06:04.826 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
17:04:14.527 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||||
19:06:06.287 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
17:04:24.627 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||||
19:06:14.264 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
17:04:34.727 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||||
19:06:14.266 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
17:04:44.836 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 172.13.1.1/<unresolved>:6379
|
||||||
19:06:14.266 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
17:15:48.353 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||||
19:06:14.273 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
17:15:50.452 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||||
19:06:14.281 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
17:15:50.453 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||||
19:06:14.281 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
17:15:50.519 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||||
19:06:14.374 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 7d2648e1-326d-47a5-87c2-f0225af9d60e
|
17:16:12.001 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||||
19:06:14.377 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->7d2648e1-326d-47a5-87c2-f0225af9d60e
|
17:16:12.003 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
|
||||||
19:06:14.377 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7d2648e1-326d-47a5-87c2-f0225af9d60e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
17:17:14.331 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||||
19:06:14.377 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7d2648e1-326d-47a5-87c2-f0225af9d60e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
17:17:16.477 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||||
19:06:14.378 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7d2648e1-326d-47a5-87c2-f0225af9d60e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
17:17:16.477 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||||
19:06:14.378 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7d2648e1-326d-47a5-87c2-f0225af9d60e] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
17:17:16.544 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||||
19:06:14.378 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.184.54 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
17:17:38.016 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||||
19:06:14.409 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7d2648e1-326d-47a5-87c2-f0225af9d60e] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725275188945_139.224.212.27_63118
|
17:17:38.019 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
|
||||||
19:06:14.409 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7d2648e1-326d-47a5-87c2-f0225af9d60e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
20:53:30.486 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||||
19:06:14.409 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7d2648e1-326d-47a5-87c2-f0225af9d60e] Notify connected event to listeners.
|
20:53:32.645 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||||
19:06:14.409 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7d2648e1-326d-47a5-87c2-f0225af9d60e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001db014d0678
|
20:53:32.645 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||||
19:06:14.409 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
20:53:32.716 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||||
19:06:14.410 [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:53:35.849 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||||
19:06:14.425 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
|
20:53:35.850 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||||
19:06:15.645 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 20.826 seconds (process running for 21.974)
|
20:53:35.850 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||||
19:06:15.656 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
20:53:36.987 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||||
19:06:15.656 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
20:53:46.059 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||||
19:06:15.657 [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:53:46.060 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||||
19:06:15.670 [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:53:46.060 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||||
19:06:15.671 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
20:53:46.065 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||||
19:06:15.671 [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:53:46.068 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||||
19:06:15.672 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine, group=DEFAULT_GROUP, cnt=1
|
20:53:46.069 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||||
19:06:15.672 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
20:53:46.229 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 12a3bb21-8f1e-402e-ac42-989ca00d260b
|
||||||
19:06:15.674 [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:53:46.231 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->12a3bb21-8f1e-402e-ac42-989ca00d260b
|
||||||
19:06:15.676 [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:53:46.231 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12a3bb21-8f1e-402e-ac42-989ca00d260b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||||
19:06:15.676 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
20:53:46.231 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12a3bb21-8f1e-402e-ac42-989ca00d260b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||||
19:06:15.773 [RMI TCP Connection(3)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
20:53:46.231 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12a3bb21-8f1e-402e-ac42-989ca00d260b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||||
19:06:58.179 [http-nio-9703-exec-3] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 438 ms
|
20:53:46.232 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12a3bb21-8f1e-402e-ac42-989ca00d260b] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
||||||
20:31:17.187 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
20:53:46.232 [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:31:20.359 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
20:53:46.452 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12a3bb21-8f1e-402e-ac42-989ca00d260b] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725368044156_139.224.212.27_63414
|
||||||
20:31:20.359 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
20:53:46.452 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12a3bb21-8f1e-402e-ac42-989ca00d260b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||||
20:31:20.449 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
20:53:46.452 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12a3bb21-8f1e-402e-ac42-989ca00d260b] Notify connected event to listeners.
|
||||||
20:31:22.698 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
20:53:46.452 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [12a3bb21-8f1e-402e-ac42-989ca00d260b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001483f50b240
|
||||||
20:31:22.700 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
20:53:46.452 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
20:31:22.700 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
20:53:46.454 [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=9706, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8f45:476:2757:da74:cc8d:2026], preserved.register.source=SPRING_CLOUD}}
|
||||||
20:31:24.211 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
20:53:46.507 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9706 register finished
|
||||||
20:31:32.023 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
20:53:47.755 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 22.617 seconds (process running for 23.728)
|
||||||
20:31:32.024 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
20:53:47.764 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||||
20:31:32.024 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
20:53:47.765 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||||
20:31:32.030 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
20:53:47.765 [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:31:32.035 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
20:53:47.772 [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:31:32.035 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
20:53:47.772 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
||||||
20:31:32.138 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 5d696e8a-c618-446e-8431-612ecb9e063b
|
20:53:47.773 [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:31:32.140 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->5d696e8a-c618-446e-8431-612ecb9e063b
|
20:53:47.773 [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:31:32.140 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
20:53:47.773 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
||||||
20:31:32.140 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
20:53:47.776 [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:31:32.141 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
20:53:47.776 [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:31:32.141 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
20:53:47.777 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
||||||
20:31:32.142 [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:53:48.029 [RMI TCP Connection(6)-172.16.0.8] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||||
20:31:32.193 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725280306725_139.224.212.27_63694
|
20:53:58.222 [http-nio-9706-exec-1] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 398 ms
|
||||||
20:31:32.194 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
20:54:04.568 [http-nio-9706-exec-2] INFO c.m.c.EngineVersionController - [insertVersion,181] - 88888888888888888888888888888
|
||||||
20:31:32.194 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Notify connected event to listeners.
|
20:54:31.879 [http-nio-9706-exec-3] INFO c.m.c.EngineVersionController - [insertVersion,181] - 888888888888888888888888888881
|
||||||
20:31:32.194 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d696e8a-c618-446e-8431-612ecb9e063b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000014f515092a0
|
20:56:08.244 [http-nio-9706-exec-7] INFO c.m.c.EngineVersionController - [insertVersion,181] - 888888888888888888888888888881
|
||||||
20:31:32.194 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
20:56:26.004 [http-nio-9706-exec-9] INFO c.m.c.EngineVersionController - [insertVersion,181] - 888888888888888888888888888881
|
||||||
20:31:32.195 [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:56:42.413 [http-nio-9706-exec-10] INFO c.m.c.EngineVersionController - [insertVersion,181] - 888888888888888888888888888881
|
||||||
20:31:32.210 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
|
20:57:02.411 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
||||||
20:31:33.429 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 21.863 seconds (process running for 23.168)
|
20:57:02.412 [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=9706, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
|
||||||
20:31:33.440 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
20:57:03.759 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
||||||
20:31:33.440 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
20:57:03.761 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
||||||
20:31:33.441 [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:57:03.761 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
||||||
20:31:33.453 [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:57:03.762 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
||||||
20:31:33.453 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
20:57:03.762 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
||||||
20:31:33.454 [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:57:03.762 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
||||||
20:31:33.454 [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:57:03.762 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
||||||
20:31:33.454 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
20:57:03.762 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
||||||
20:31:33.456 [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:57:03.762 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
||||||
20:31:33.456 [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:57:03.762 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
||||||
20:31:33.456 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
20:57:03.762 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
||||||
20:31:33.877 [RMI TCP Connection(7)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
20:57:03.763 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
||||||
20:31:50.189 [http-nio-9703-exec-5] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 412 ms
|
20:57:03.763 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->12a3bb21-8f1e-402e-ac42-989ca00d260b
|
||||||
20:32:45.574 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
20:57:03.763 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@43bb1e9e[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 65]
|
||||||
20:32:48.442 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
20:57:03.763 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
||||||
20:32:48.442 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
20:57:03.763 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@639c478c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
||||||
20:32:48.541 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
20:57:03.763 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725368044156_139.224.212.27_63414
|
||||||
20:32:49.933 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
20:57:03.766 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@687ad4b5[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 47]
|
||||||
20:32:49.934 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
20:57:03.766 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->12a3bb21-8f1e-402e-ac42-989ca00d260b
|
||||||
20:32:49.934 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
20:57:03.767 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
||||||
20:32:51.387 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
20:57:03.767 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
||||||
20:32:58.976 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
20:57:03.767 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
||||||
20:32:58.976 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
20:57:03.771 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
|
||||||
20:32:58.977 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
20:57:03.773 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
|
||||||
20:32:58.983 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
20:57:03.776 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
|
||||||
20:32:58.987 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
20:57:03.778 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
|
||||||
20:32:58.988 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
20:57:03.778 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
|
||||||
20:32:59.083 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of fafeb84a-fe1e-488a-9594-265e3635ed5c
|
20:57:15.207 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||||
20:32:59.086 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->fafeb84a-fe1e-488a-9594-265e3635ed5c
|
20:57:17.226 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||||
20:32:59.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
20:57:17.227 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||||
20:32:59.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
20:57:17.294 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||||
20:32:59.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
20:57:20.598 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||||
20:32:59.088 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
20:57:20.599 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||||
20:32:59.088 [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:57:20.599 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||||
20:32:59.381 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725280393764_139.224.212.27_62404
|
20:57:21.687 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||||
20:32:59.381 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
20:57:30.645 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||||
20:32:59.381 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Notify connected event to listeners.
|
20:57:30.645 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||||
20:32:59.381 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fafeb84a-fe1e-488a-9594-265e3635ed5c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000235814d2150
|
20:57:30.646 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||||
20:32:59.381 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
20:57:30.649 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||||
20:32:59.383 [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:57:30.653 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||||
20:32:59.402 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
|
20:57:30.654 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||||
20:33:00.605 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 20.645 seconds (process running for 21.605)
|
20:57:31.187 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of ecb51939-9a90-4574-98c9-f34f4fb99846
|
||||||
20:33:00.615 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
20:57:31.189 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->ecb51939-9a90-4574-98c9-f34f4fb99846
|
||||||
20:33:00.616 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
20:57:31.189 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ecb51939-9a90-4574-98c9-f34f4fb99846] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||||
20:33:00.617 [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:57:31.189 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ecb51939-9a90-4574-98c9-f34f4fb99846] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||||
20:33:00.628 [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:57:31.190 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ecb51939-9a90-4574-98c9-f34f4fb99846] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||||
20:33:00.628 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
20:57:31.190 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ecb51939-9a90-4574-98c9-f34f4fb99846] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
||||||
20:33:00.629 [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:57:31.190 [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:33:00.629 [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:57:31.405 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ecb51939-9a90-4574-98c9-f34f4fb99846] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725368269114_139.224.212.27_62222
|
||||||
20:33:00.629 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
20:57:31.406 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ecb51939-9a90-4574-98c9-f34f4fb99846] Notify connected event to listeners.
|
||||||
20:33:00.632 [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:57:31.406 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ecb51939-9a90-4574-98c9-f34f4fb99846] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||||
20:33:00.632 [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:57:31.406 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
20:33:00.632 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
20:57:31.406 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ecb51939-9a90-4574-98c9-f34f4fb99846] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001e9024d3468
|
||||||
20:33:01.150 [RMI TCP Connection(6)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
20:57:31.407 [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=9706, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8f45:476:2757:da74:cc8d:2026], preserved.register.source=SPRING_CLOUD}}
|
||||||
20:33:27.012 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
20:57:31.446 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9706 register finished
|
||||||
20:33:27.013 [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:57:32.689 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 22.498 seconds (process running for 23.425)
|
||||||
20:33:27.028 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
20:57:32.698 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||||
20:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
20:57:32.699 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||||
20:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
20:57:32.700 [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:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
20:57:32.707 [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:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
20:57:32.707 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
||||||
20:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
20:57:32.708 [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:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
20:57:32.708 [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:33:27.029 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
20:57:32.708 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
||||||
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
20:57:32.710 [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:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
20:57:32.710 [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:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
20:57:32.711 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
||||||
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
20:57:32.802 [RMI TCP Connection(9)-172.16.0.8] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||||
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->fafeb84a-fe1e-488a-9594-265e3635ed5c
|
20:57:39.982 [http-nio-9706-exec-2] INFO c.m.c.EngineVersionController - [insertVersion,181] - 数据是:{}1
|
||||||
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@732567b3[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 9]
|
21:16:09.176 [http-nio-9706-exec-3] INFO c.m.c.EngineVersionController - [insertVersion,181] - 数据是:{}1
|
||||||
20:33:27.030 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
21:16:28.848 [http-nio-9706-exec-8] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 409 ms
|
||||||
20:33:27.031 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7e8284f4[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
21:16:31.265 [http-nio-9706-exec-9] INFO c.m.c.EngineVersionController - [insertVersion,181] - 数据是:{}1
|
||||||
20:33:27.031 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725280393764_139.224.212.27_62404
|
|
||||||
20:33:27.036 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@20a7885[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 13]
|
|
||||||
20:33:27.036 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->fafeb84a-fe1e-488a-9594-265e3635ed5c
|
|
||||||
20:33:27.036 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
|
||||||
20:33:27.036 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
|
||||||
20:33:27.036 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
|
||||||
20:33:27.043 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
|
|
||||||
20:33:27.046 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
|
|
||||||
20:33:27.050 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
|
|
||||||
20:33:27.050 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
|
|
||||||
20:33:27.050 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
|
|
||||||
20:35:43.670 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
|
||||||
20:35:46.407 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
|
||||||
20:35:46.408 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
|
||||||
20:35:46.497 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
|
||||||
20:35:48.069 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
|
||||||
20:35:48.070 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
|
||||||
20:35:48.070 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
|
||||||
20:35:49.413 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
|
||||||
20:35:56.907 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
|
||||||
20:35:56.907 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
|
||||||
20:35:56.907 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
|
||||||
20:35:56.913 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
|
||||||
20:35:56.920 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
|
||||||
20:35:56.920 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
|
||||||
20:35:57.017 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f85f7d19-4f5b-41a8-bd27-b7ea6712eb24
|
|
||||||
20:35:57.019 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->f85f7d19-4f5b-41a8-bd27-b7ea6712eb24
|
|
||||||
20:35:57.021 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
|
||||||
20:35:57.021 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
|
||||||
20:35:57.021 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
|
||||||
20:35:57.022 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
|
||||||
20:35:57.022 [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:35:57.068 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725280571602_139.224.212.27_63232
|
|
||||||
20:35:57.068 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
|
||||||
20:35:57.068 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Notify connected event to listeners.
|
|
||||||
20:35:57.068 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f85f7d19-4f5b-41a8-bd27-b7ea6712eb24] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001cc874d12a0
|
|
||||||
20:35:57.068 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
|
||||||
20:35:57.072 [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:35:57.087 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
|
|
||||||
20:35:58.293 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 20.029 seconds (process running for 21.04)
|
|
||||||
20:35:58.304 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
|
||||||
20:35:58.305 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
|
||||||
20:35:58.305 [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:35:58.317 [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:35:58.317 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
|
||||||
20:35:58.318 [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:35:58.318 [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:35:58.318 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
|
||||||
20:35:58.320 [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:35:58.321 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-47.116.184.54_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP, cnt=1
|
|
||||||
20:35:58.321 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
|
||||||
20:35:58.601 [RMI TCP Connection(4)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
|
||||||
20:39:48.241 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
|
||||||
20:39:51.131 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
|
||||||
20:39:51.131 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
|
||||||
20:39:51.244 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
|
||||||
20:39:57.408 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
|
||||||
20:39:57.409 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
|
||||||
20:39:57.409 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
|
||||||
20:39:58.833 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
|
||||||
20:40:06.199 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
|
||||||
20:40:06.199 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
|
||||||
20:40:06.200 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
|
||||||
20:40:06.205 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
|
||||||
20:40:06.211 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
|
||||||
20:40:06.211 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
|
||||||
20:40:06.389 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of bb9834b2-198f-4e10-a9c8-c6780ed1f0cd
|
|
||||||
20:40:06.392 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->bb9834b2-198f-4e10-a9c8-c6780ed1f0cd
|
|
||||||
20:40:06.392 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
|
||||||
20:40:06.392 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
|
||||||
20:40:06.392 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
|
||||||
20:40:06.393 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
|
||||||
20:40:06.393 [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:40:06.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725280820986_139.224.212.27_62849
|
|
||||||
20:40:06.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
|
||||||
20:40:06.576 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify connected event to listeners.
|
|
||||||
20:40:06.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000025f3b4d2150
|
|
||||||
20:40:06.576 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
|
||||||
20:40:06.578 [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:40:06.599 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
|
|
||||||
20:40:07.794 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 25.629 seconds (process running for 26.594)
|
|
||||||
20:40:07.804 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
|
||||||
20:40:07.804 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
|
||||||
20:40:07.805 [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:40:07.816 [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:40:07.816 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
|
||||||
20:40:07.817 [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:40:07.817 [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:40:07.817 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
|
||||||
20:40:07.819 [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:40:07.819 [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:40:07.819 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
|
||||||
20:40:08.245 [RMI TCP Connection(10)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
|
||||||
20:48:55.694 [http-nio-9703-exec-3] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 432 ms
|
|
||||||
20:50:28.368 [nacos-grpc-client-executor-47.116.184.54-127] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 3885
|
|
||||||
20:50:28.368 [nacos-grpc-client-executor-47.116.184.54-127] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 3885
|
|
||||||
20:50:28.368 [nacos-grpc-client-executor-47.116.184.54-113] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Receive server push request, request = ClientDetectionRequest, requestId = 3886
|
|
||||||
20:50:28.368 [nacos-grpc-client-executor-47.116.184.54-113] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Ack server push request, request = ClientDetectionRequest, requestId = 3886
|
|
||||||
20:50:28.460 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Server healthy check fail, currentConnection = 1725280820986_139.224.212.27_62849
|
|
||||||
20:50:28.460 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Server healthy check fail, currentConnection = 1725280802025_139.224.212.27_62791
|
|
||||||
20:50:28.461 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
|
||||||
20:50:28.461 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
|
||||||
20:50:28.461 [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}
|
|
||||||
20:50:28.461 [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}
|
|
||||||
20:50:28.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Success to connect a server [47.116.184.54:8848], connectionId = 1725281443045_139.224.212.27_62047
|
|
||||||
20:50:28.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281443045_139.224.212.27_62046
|
|
||||||
20:50:28.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725280820986_139.224.212.27_62849
|
|
||||||
20:50:28.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725280802025_139.224.212.27_62791
|
|
||||||
20:50:28.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725280820986_139.224.212.27_62849
|
|
||||||
20:50:28.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725280802025_139.224.212.27_62791
|
|
||||||
20:50:28.520 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
|
||||||
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify disconnected event to listeners
|
|
||||||
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify disconnected event to listeners
|
|
||||||
20:50:28.520 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
|
||||||
20:50:28.520 [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}
|
|
||||||
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] DisConnected,clear listen context...
|
|
||||||
20:50:28.520 [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}
|
|
||||||
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify connected event to listeners.
|
|
||||||
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Connected,notify listen context...
|
|
||||||
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify connected event to listeners.
|
|
||||||
20:50:28.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
|
||||||
20:50:28.619 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281443135_139.224.212.27_62048
|
|
||||||
20:50:28.619 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281443045_139.224.212.27_62046
|
|
||||||
20:50:28.619 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281443045_139.224.212.27_62046
|
|
||||||
20:50:28.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Success to connect a server [47.116.184.54:8848], connectionId = 1725281443135_139.224.212.27_62050
|
|
||||||
20:50:28.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281443045_139.224.212.27_62047
|
|
||||||
20:50:28.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281443045_139.224.212.27_62047
|
|
||||||
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify disconnected event to listeners
|
|
||||||
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify disconnected event to listeners
|
|
||||||
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] DisConnected,clear listen context...
|
|
||||||
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify connected event to listeners.
|
|
||||||
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
|
||||||
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify connected event to listeners.
|
|
||||||
20:50:28.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Connected,notify listen context...
|
|
||||||
20:50:31.376 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-engine
|
|
||||||
20:52:13.596 [nacos-grpc-client-executor-47.116.184.54-157] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 3889
|
|
||||||
20:52:13.595 [nacos-grpc-client-executor-47.116.184.54-141] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Receive server push request, request = ClientDetectionRequest, requestId = 3890
|
|
||||||
20:52:13.596 [nacos-grpc-client-executor-47.116.184.54-157] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 3889
|
|
||||||
20:52:13.596 [nacos-grpc-client-executor-47.116.184.54-141] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Ack server push request, request = ClientDetectionRequest, requestId = 3890
|
|
||||||
20:52:13.678 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Server healthy check fail, currentConnection = 1725281443135_139.224.212.27_62048
|
|
||||||
20:52:13.678 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
|
||||||
20:52:13.679 [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}
|
|
||||||
20:52:13.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281548259_139.224.212.27_62271
|
|
||||||
20:52:13.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281443135_139.224.212.27_62048
|
|
||||||
20:52:13.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281443135_139.224.212.27_62048
|
|
||||||
20:52:13.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
|
||||||
20:52:13.735 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify disconnected event to listeners
|
|
||||||
20:52:13.736 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] DisConnected,clear listen context...
|
|
||||||
20:52:13.736 [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}
|
|
||||||
20:52:13.736 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify connected event to listeners.
|
|
||||||
20:52:13.736 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Connected,notify listen context...
|
|
||||||
20:52:13.771 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
|
||||||
20:52:13.771 [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:52:13.796 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281548316_139.224.212.27_62273
|
|
||||||
20:52:13.796 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281548259_139.224.212.27_62271
|
|
||||||
20:52:13.796 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281548259_139.224.212.27_62271
|
|
||||||
20:52:13.797 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify disconnected event to listeners
|
|
||||||
20:52:13.797 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] DisConnected,clear listen context...
|
|
||||||
20:52:13.797 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Notify connected event to listeners.
|
|
||||||
20:52:13.797 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b42639bc-fc55-417d-ad6d-8dd9e2dd4750_config-0] Connected,notify listen context...
|
|
||||||
20:52:14.151 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Server healthy check fail, currentConnection = 1725281443135_139.224.212.27_62050
|
|
||||||
20:52:14.152 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
|
||||||
20:52:14.152 [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}
|
|
||||||
20:52:14.190 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Success to connect a server [47.116.184.54:8848], connectionId = 1725281548733_139.224.212.27_62276
|
|
||||||
20:52:14.190 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281443135_139.224.212.27_62050
|
|
||||||
20:52:14.190 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281443135_139.224.212.27_62050
|
|
||||||
20:52:14.190 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
|
||||||
20:52:14.190 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify disconnected event to listeners
|
|
||||||
20:52:14.191 [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}
|
|
||||||
20:52:14.191 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bb9834b2-198f-4e10-a9c8-c6780ed1f0cd] Notify connected event to listeners.
|
|
||||||
20:52:14.191 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
|
||||||
20:52:14.194 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
|
||||||
20:52:14.195 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
|
||||||
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
|
||||||
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
|
||||||
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
|
||||||
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
|
||||||
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
|
||||||
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
|
||||||
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
|
||||||
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
|
||||||
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
|
||||||
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
|
||||||
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->bb9834b2-198f-4e10-a9c8-c6780ed1f0cd
|
|
||||||
20:52:14.196 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@5a243271[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 203]
|
|
||||||
20:52:14.197 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
|
||||||
20:52:14.197 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@67a9b155[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
|
||||||
20:52:14.197 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281548733_139.224.212.27_62276
|
|
||||||
20:52:14.197 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@17659ed2[Running, pool size = 11, active threads = 0, queued tasks = 0, completed tasks = 152]
|
|
||||||
20:52:14.197 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->bb9834b2-198f-4e10-a9c8-c6780ed1f0cd
|
|
||||||
20:52:14.197 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
|
||||||
20:52:14.198 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
|
||||||
20:52:14.198 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
|
||||||
20:52:14.200 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281548733_139.224.212.27_62276
|
|
||||||
20:52:14.203 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
|
|
||||||
20:52:14.206 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
|
|
||||||
20:52:14.209 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
|
|
||||||
20:52:14.210 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
|
|
||||||
20:52:14.210 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
|
|
||||||
20:52:24.615 [main] INFO c.m.EngineApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
|
||||||
20:52:27.357 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
|
||||||
20:52:27.358 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
|
||||||
20:52:27.446 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
|
||||||
20:52:29.528 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
|
||||||
20:52:29.529 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
|
||||||
20:52:29.529 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
|
||||||
20:52:30.884 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
|
||||||
20:52:38.468 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
|
||||||
20:52:38.468 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
|
||||||
20:52:38.468 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
|
||||||
20:52:38.475 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
|
||||||
20:52:38.480 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
|
||||||
20:52:38.480 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
|
||||||
20:52:38.573 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of eaa84ec3-a592-4301-8619-5cb3256d7462
|
|
||||||
20:52:38.575 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->eaa84ec3-a592-4301-8619-5cb3256d7462
|
|
||||||
20:52:38.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
|
||||||
20:52:38.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
|
||||||
20:52:38.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
|
||||||
20:52:38.577 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Try to connect to server on start up, server: {serverIp = '47.116.184.54', server main port = 8848}
|
|
||||||
20:52:38.577 [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:52:38.611 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Success to connect to server [47.116.184.54:8848] on start up, connectionId = 1725281573161_139.224.212.27_62353
|
|
||||||
20:52:38.613 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
|
||||||
20:52:38.613 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify connected event to listeners.
|
|
||||||
20:52:38.613 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001681f4e14f8
|
|
||||||
20:52:38.613 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
|
||||||
20:52:38.615 [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:52:38.628 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-engine 192.168.52.1:9703 register finished
|
|
||||||
20:52:39.836 [main] INFO c.m.EngineApplication - [logStarted,56] - Started EngineApplication in 20.413 seconds (process running for 21.354)
|
|
||||||
20:52:39.846 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
|
||||||
20:52:39.847 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
|
||||||
20:52:39.847 [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:52:39.858 [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:52:39.858 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine.yml, group=DEFAULT_GROUP
|
|
||||||
20:52:39.860 [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:52:39.860 [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:52:39.860 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine, group=DEFAULT_GROUP
|
|
||||||
20:52:39.862 [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:52:39.862 [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:52:39.862 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-engine-dev.yml, group=DEFAULT_GROUP
|
|
||||||
20:52:40.385 [RMI TCP Connection(3)-172.16.0.3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
|
||||||
20:53:07.046 [http-nio-9703-exec-3] INFO o.s.a.AbstractOpenApiResource - [getOpenApi,369] - Init duration for springdoc-openapi is: 478 ms
|
|
||||||
20:54:25.329 [nacos-grpc-client-executor-47.116.184.54-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Receive server push request, request = ClientDetectionRequest, requestId = 3893
|
|
||||||
20:54:25.331 [nacos-grpc-client-executor-47.116.184.54-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Ack server push request, request = ClientDetectionRequest, requestId = 3893
|
|
||||||
20:54:49.211 [nacos-grpc-client-executor-47.116.184.54-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 3895
|
|
||||||
20:54:49.211 [nacos-grpc-client-executor-47.116.184.54-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Receive server push request, request = ClientDetectionRequest, requestId = 3894
|
|
||||||
20:54:49.212 [nacos-grpc-client-executor-47.116.184.54-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 3895
|
|
||||||
20:54:49.212 [nacos-grpc-client-executor-47.116.184.54-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Ack server push request, request = ClientDetectionRequest, requestId = 3894
|
|
||||||
20:55:26.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Server healthy check fail, currentConnection = 1725281558693_139.224.212.27_62310
|
|
||||||
20:55:26.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Server healthy check fail, currentConnection = 1725281573161_139.224.212.27_62353
|
|
||||||
20:55:26.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
|
||||||
20:55:26.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
|
||||||
20:55:26.196 [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}
|
|
||||||
20:55:26.196 [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}
|
|
||||||
20:55:26.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281740780_139.224.212.27_62616
|
|
||||||
20:55:26.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Success to connect a server [47.116.184.54:8848], connectionId = 1725281740780_139.224.212.27_62617
|
|
||||||
20:55:26.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281558693_139.224.212.27_62310
|
|
||||||
20:55:26.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281573161_139.224.212.27_62353
|
|
||||||
20:55:26.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281558693_139.224.212.27_62310
|
|
||||||
20:55:26.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281573161_139.224.212.27_62353
|
|
||||||
20:55:26.249 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
|
||||||
20:55:26.249 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify disconnected event to listeners
|
|
||||||
20:55:26.249 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
|
||||||
20:55:26.249 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify disconnected event to listeners
|
|
||||||
20:55:26.250 [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}
|
|
||||||
20:55:26.250 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] DisConnected,clear listen context...
|
|
||||||
20:55:26.250 [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}
|
|
||||||
20:55:26.250 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify connected event to listeners.
|
|
||||||
20:55:26.250 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Connected,notify listen context...
|
|
||||||
20:55:26.251 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify connected event to listeners.
|
|
||||||
20:55:26.251 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
|
||||||
20:55:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Success to connect a server [47.116.184.54:8848], connectionId = 1725281740845_139.224.212.27_62618
|
|
||||||
20:55:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281740845_139.224.212.27_62619
|
|
||||||
20:55:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281740780_139.224.212.27_62617
|
|
||||||
20:55:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281740780_139.224.212.27_62616
|
|
||||||
20:55:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281740780_139.224.212.27_62617
|
|
||||||
20:55:26.299 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281740780_139.224.212.27_62616
|
|
||||||
20:55:26.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify disconnected event to listeners
|
|
||||||
20:55:26.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify disconnected event to listeners
|
|
||||||
20:55:26.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] DisConnected,clear listen context...
|
|
||||||
20:55:26.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify connected event to listeners.
|
|
||||||
20:55:26.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify connected event to listeners.
|
|
||||||
20:55:26.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
|
||||||
20:55:26.302 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Connected,notify listen context...
|
|
||||||
20:55:27.190 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-engine
|
|
||||||
20:59:02.913 [nacos-grpc-client-executor-47.116.184.54-45] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Receive server push request, request = ClientDetectionRequest, requestId = 3898
|
|
||||||
20:59:02.912 [nacos-grpc-client-executor-47.116.184.54-60] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 3899
|
|
||||||
20:59:02.913 [nacos-grpc-client-executor-47.116.184.54-60] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 3899
|
|
||||||
20:59:02.913 [nacos-grpc-client-executor-47.116.184.54-45] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Ack server push request, request = ClientDetectionRequest, requestId = 3898
|
|
||||||
20:59:03.170 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Server healthy check fail, currentConnection = 1725281740845_139.224.212.27_62618
|
|
||||||
20:59:03.170 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
|
||||||
20:59:03.170 [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}
|
|
||||||
20:59:03.216 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Success to connect a server [47.116.184.54:8848], connectionId = 1725281957753_139.224.212.27_62991
|
|
||||||
20:59:03.216 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281740845_139.224.212.27_62618
|
|
||||||
20:59:03.217 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281740845_139.224.212.27_62618
|
|
||||||
20:59:03.217 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify disconnected event to listeners
|
|
||||||
20:59:03.217 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
|
||||||
20:59:03.217 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify connected event to listeners.
|
|
||||||
20:59:03.217 [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}
|
|
||||||
20:59:03.217 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
|
||||||
20:59:03.255 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Success to connect a server [47.116.184.54:8848], connectionId = 1725281957801_139.224.212.27_62992
|
|
||||||
20:59:03.255 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281957753_139.224.212.27_62991
|
|
||||||
20:59:03.256 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281957753_139.224.212.27_62991
|
|
||||||
20:59:03.256 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify disconnected event to listeners
|
|
||||||
20:59:03.256 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eaa84ec3-a592-4301-8619-5cb3256d7462] Notify connected event to listeners.
|
|
||||||
20:59:03.256 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
|
||||||
20:59:03.385 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Server healthy check fail, currentConnection = 1725281740845_139.224.212.27_62619
|
|
||||||
20:59:03.385 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
|
||||||
20:59:03.385 [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}
|
|
||||||
20:59:03.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281957969_139.224.212.27_62993
|
|
||||||
20:59:03.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281740845_139.224.212.27_62619
|
|
||||||
20:59:03.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281740845_139.224.212.27_62619
|
|
||||||
20:59:03.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
|
|
||||||
20:59:03.427 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify disconnected event to listeners
|
|
||||||
20:59:03.427 [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}
|
|
||||||
20:59:03.427 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] DisConnected,clear listen context...
|
|
||||||
20:59:03.427 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify connected event to listeners.
|
|
||||||
20:59:03.427 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Connected,notify listen context...
|
|
||||||
20:59:03.494 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Success to connect a server [47.116.184.54:8848], connectionId = 1725281958016_139.224.212.27_62994
|
|
||||||
20:59:03.495 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Abandon prev connection, server is 47.116.184.54:8848, connectionId is 1725281957969_139.224.212.27_62993
|
|
||||||
20:59:03.495 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1725281957969_139.224.212.27_62993
|
|
||||||
20:59:03.495 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify disconnected event to listeners
|
|
||||||
20:59:03.495 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] DisConnected,clear listen context...
|
|
||||||
20:59:03.495 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Notify connected event to listeners.
|
|
||||||
20:59:03.495 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [355c2de8-9ef3-4ec3-b0f6-793315431671_config-0] Connected,notify listen context...
|
|
||||||
20:59:05.914 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-engine
|
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -21,9 +21,11 @@
|
||||||
<module>cloud-etl-remote</module>
|
<module>cloud-etl-remote</module>
|
||||||
<module>cloud-etl-server</module>
|
<module>cloud-etl-server</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<maven.compiler.source>17</maven.compiler.source>
|
<maven.compiler.source>17</maven.compiler.source>
|
||||||
<maven.compiler.target>17</maven.compiler.target>
|
<maven.compiler.target>17</maven.compiler.target>
|
||||||
<maven.compiler.parameters>true</maven.compiler.parameters>
|
<maven.compiler.parameters>true</maven.compiler.parameters>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in New Issue